/*
Theme Name: The Living Workshop
Theme URI: https://thelivingworkshop.org
Author: TO
Author URI: https://thelivingworkshop.org
Description: A clean, earthy theme for The Living Workshop — a closed-loop woodshop, mushroom farm, and compost facility. Creating Solutions to Our Consumptive Problems.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: living-workshop
*/

/* ─── CSS VARIABLES ─── */
:root {
  --bark: #3B2F2F;
  --soil: #5C4033;
  --clay: #8B6F4E;
  --moss: #6B7F5E;
  --moss-light: #8A9E78;
  --lichen: #A8B89A;
  --cream: #F5F0E8;
  --parchment: #EDE6D8;
  --warm-white: #FAF8F4;
  --stone: #9B9384;
  --charcoal: #2C2825;
  --fern: #4A6741;
  --reishi-red: #8B3A3A;
  --mycelium: #D4C9B8;
  --amber: #B8860B;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --reading-width: 720px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

::selection { background: var(--lichen); color: var(--bark); }

a { color: var(--fern); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--bark);
  font-weight: 400;
  line-height: 1.3;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 500; }
h4 { font-size: 0.95rem; font-weight: 500; }

p { margin-bottom: 1rem; }

img { max-width: 100%; height: auto; }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--mycelium);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: 0 1px 12px rgba(59,47,47,0.06); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--bark); }

.nav-menu {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.84rem;
  color: var(--soil);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a { color: var(--fern); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--fern);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after { width: 100%; }

/* Support Us button in nav */
.nav-menu .menu-item-support a,
.nav-menu a[href*="support"] {
  background: var(--fern);
  color: var(--cream) !important;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.nav-menu .menu-item-support a:hover,
.nav-menu a[href*="support"]:hover { background: var(--bark); }
.nav-menu .menu-item-support a::after,
.nav-menu a[href*="support"]::after { display: none; }

.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  color: var(--bark);
}

/* ─── HERO (front page) ─── */
.hero {
  padding: 10rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-brand {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bark);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.hero-brand-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fern);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

.hero h1 {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  max-width: 820px;
}
.hero h1 em { font-style: italic; color: var(--fern); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--soil);
  max-width: 600px;
  margin-top: 2rem;
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--fern);
  color: var(--cream);
  border: 1.5px solid var(--fern);
}
.btn-primary:hover { background: var(--bark); border-color: var(--bark); color: var(--cream); }
.btn-secondary {
  background: transparent;
  color: var(--soil);
  border: 1.5px solid var(--mycelium);
}
.btn-secondary:hover { border-color: var(--soil); color: var(--bark); }
.btn-support {
  background: var(--amber);
  color: var(--warm-white);
  border: 1.5px solid var(--amber);
}
.btn-support:hover { background: var(--soil); border-color: var(--soil); color: var(--warm-white); }

/* ─── SECTIONS & LAYOUT ─── */
.site-content {
  padding-top: 64px; /* account for fixed nav */
}

.content-section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-full {
  max-width: none;
  background: var(--cream);
}
.section-full .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-dark {
  max-width: none;
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 2rem;
}
.section-dark .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: var(--stone); }
.section-dark .section-label { color: var(--lichen); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--soil);
  max-width: var(--reading-width);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.02rem;
}

.divider {
  width: 48px;
  height: 1.5px;
  background: var(--lichen);
  margin: 4rem 0;
}
.divider-center {
  width: 48px;
  height: 1.5px;
  background: var(--lichen);
  margin: 4rem auto;
}

/* ─── CLOSED LOOP FLOW ─── */
.loop-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 2.5rem 0 2rem;
  flex-wrap: wrap;
}

.loop-node {
  flex: 1;
  min-width: 200px;
  padding: 2rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--mycelium);
  border-radius: 6px;
  transition: border-color 0.3s;
}
.loop-node:hover { border-color: var(--lichen); }
.loop-node h3 { margin-bottom: 0.5rem; }
.loop-node p { font-size: 0.85rem; color: var(--soil); line-height: 1.65; font-weight: 300; margin: 0; }

.loop-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: var(--lichen);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ─── OUTPUT GRID ─── */
.output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.output-card {
  padding: 1.25rem;
  background: var(--parchment);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.output-card:hover { border-color: var(--lichen); }
.output-card h4 { margin-bottom: 0.3rem; }
.output-card p { font-size: 0.8rem; color: var(--stone); line-height: 1.55; margin: 0; }

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.blog-card {
  border-bottom: 1px solid var(--mycelium);
  padding-bottom: 2.5rem;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}
.blog-card:hover { opacity: 0.8; }
.blog-meta {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--soil);
  line-height: 1.7;
  font-weight: 300;
}

/* WordPress default blog styles */
.post-list article {
  border-bottom: 1px solid var(--mycelium);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.post-list article:last-child { border-bottom: none; }
.post-list .entry-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.post-list .entry-title a { color: var(--bark); }
.post-list .entry-title a:hover { color: var(--fern); }
.post-list .entry-meta {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.post-list .entry-summary {
  font-size: 0.9rem;
  color: var(--soil);
  line-height: 1.7;
  font-weight: 300;
}

/* Single post */
.single-post-content {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}
.single-post-content .entry-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.single-post-content .entry-meta {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}
.single-post-content .entry-content p {
  color: var(--soil);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

/* ─── SHOP / PRODUCTS ─── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-img {
  aspect-ratio: 1;
  background: var(--parchment);
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid var(--mycelium);
}
.product-card h3 { margin-bottom: 0.25rem; }
.product-card .price { font-size: 0.9rem; color: var(--moss); font-weight: 500; }
.product-card .product-desc { font-size: 0.82rem; color: var(--stone); margin-top: 0.35rem; line-height: 1.5; }

/* WooCommerce overrides */
.woocommerce ul.products li.product {
  transition: transform 0.2s;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
}
.woocommerce ul.products li.product .price {
  color: var(--moss) !important;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--parchment);
  border-radius: 6px;
  border: 1px solid var(--mycelium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.2s;
  padding: 1.5rem;
  text-align: center;
}
.gallery-item:hover { border-color: var(--lichen); transform: translateY(-2px); }
.gallery-item h3 { margin: 0; }
.gallery-item p { font-size: 0.8rem; color: var(--stone); margin: 0; }

/* ─── WRITINGS ─── */
.writings-list { margin-top: 3rem; max-width: var(--reading-width); }
.writing-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--mycelium);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.writing-item:hover { opacity: 0.7; }
.writing-item h3 { margin: 0; font-size: 1.15rem; }
.writing-type {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

/* ─── VIDEOS ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.video-card { text-decoration: none; display: block; transition: transform 0.2s; }
.video-card:hover { transform: translateY(-2px); }
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--parchment);
  border-radius: 6px;
  border: 1px solid var(--mycelium);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 48px; height: 48px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--fern);
  margin-left: 3px;
}
.video-platform {
  font-size: 0.7rem; color: var(--stone);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 500; margin-bottom: 0.35rem;
}
.video-card h3 { font-size: 1.02rem; line-height: 1.4; }

/* ─── CLASSES ─── */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.class-card {
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--mycelium);
  border-radius: 6px;
  transition: border-color 0.3s;
}
.class-card:hover { border-color: var(--lichen); }
.class-tag {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--moss);
  font-weight: 500; margin-bottom: 0.75rem;
}
.class-card h3 { margin-bottom: 0.5rem; }
.class-card p { font-size: 0.85rem; color: var(--soil); line-height: 1.6; font-weight: 300; margin: 0; }

/* ─── SUPPORT TIERS ─── */
.support-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tier-card {
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--mycelium);
  border-radius: 6px;
  background: var(--warm-white);
  transition: border-color 0.3s, transform 0.2s;
  text-align: center;
}
.tier-card:hover { border-color: var(--fern); transform: translateY(-3px); }
.tier-card.featured { border-color: var(--fern); background: var(--cream); }
.tier-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--bark); margin-bottom: 0.5rem; }
.tier-price { font-size: 1.8rem; font-weight: 600; color: var(--fern); margin-bottom: 0.25rem; }
.tier-freq { font-size: 0.8rem; color: var(--stone); margin-bottom: 1.5rem; }
.tier-desc { font-size: 0.88rem; color: var(--soil); line-height: 1.65; margin-bottom: 1.5rem; font-weight: 300; }
.tier-features { list-style: none; text-align: left; margin-bottom: 2rem; padding: 0; }
.tier-features li {
  font-size: 0.85rem; color: var(--soil);
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.tier-features li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--fern); font-weight: 700; font-size: 1.2rem; line-height: 1.4;
}

/* ─── LYRA ─── */
.lyra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.lyra-cap {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 1rem;
}
.lyra-cap h4 { color: var(--cream); margin-bottom: 0.35rem; }
.lyra-cap p { font-size: 0.82rem; color: var(--stone); line-height: 1.6; margin: 0; }

.lyra-icon {
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  width: 220px; height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto;
}
.lyra-icon .symbol { font-size: 3rem; margin-bottom: 0.5rem; }
.lyra-icon .name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); font-weight: 500; }
.lyra-icon .sub { font-size: 0.75rem; color: var(--stone); margin-top: 0.25rem; }

/* ─── POSSE / CONNECT ─── */
.posse-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.posse-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--mycelium);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s;
  background: var(--warm-white);
}
.posse-link:hover { border-color: var(--lichen); transform: translateY(-2px); }
.posse-name { font-size: 0.9rem; font-weight: 500; color: var(--bark); }
.posse-type { font-size: 0.75rem; color: var(--stone); }
.posse-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ─── CALLOUT BOX ─── */
.callout-box {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1.5px solid var(--lichen);
  border-radius: 8px;
  background: var(--cream);
  max-width: var(--reading-width);
}
.callout-box h3 { margin-bottom: 0.75rem; }
.callout-box p { font-size: 0.95rem; color: var(--soil); line-height: 1.8; font-weight: 300; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--mycelium);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--stone); max-width: 320px; }
.footer-col h4 {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--cream);
  margin-bottom: 1rem; font-weight: 500;
}
.footer-col a { display: block; font-size: 0.85rem; color: var(--stone); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--stone); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }

/* ─── WORDPRESS BLOCK EDITOR COMPATIBILITY ─── */
.wp-block-group { margin-bottom: 1rem; }
.wp-block-columns { margin-bottom: 2rem; }
.wp-block-separator {
  border-color: var(--lichen) !important;
  width: 48px !important;
  margin: 3rem 0 !important;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--mycelium);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .mobile-toggle { display: block; }
  .loop-flow { flex-direction: column; }
  .loop-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
  .blog-grid, .lyra-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .video-grid, .classes-grid, .support-tiers { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; padding-top: 8rem; }
}
@media (max-width: 600px) {
  .shop-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .writing-item { flex-direction: column; gap: 0.35rem; }
  .hero h1 { font-size: 2.1rem; }
  .posse-grid { flex-direction: column; }
}
