/* ── Aroids Anonymous — Global Design System ── */
/* Botanical Noir theme */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Syne:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #060c06;
  --bg-s: #0c180c;
  --bg-c: #111e11;
  --bg-h: #162516;
  --border: #1d301d;
  --border-l: #2a402a;
  --accent: #7eff3a;
  --accent-d: #55cc1a;
  --accent-g: rgba(126, 255, 58, 0.08);
  --gold: #c9a84c;
  --gold-g: rgba(201, 168, 76, 0.1);
  --text: #dff0df;
  --text-m: #6b8b6b;
  --text-d: #3b5a3b;
  --display: 'Cormorant Garamond', Georgia, serif;
  --ui: 'Syne', system-ui, sans-serif;
  --nav-h: 64px;
  --r: 12px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(6, 12, 6, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--display);
  font-size: 22px; font-weight: 300; letter-spacing: .05em;
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-m); padding: 7px 14px; border-radius: 6px;
  transition: color .2s, background .2s; text-decoration: none; display: block;
}
.nav-links a:hover, .nav-links a[data-current] { color: var(--text); background: var(--bg-h); }
.nav-cta {
  background: var(--accent); color: #061506;
  font-family: var(--ui); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 6px; border: none; cursor: pointer;
  transition: opacity .2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { opacity: .85; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: #061506;
  font-family: var(--ui); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s; display: inline-block; text-decoration: none;
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  font-family: var(--ui); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 8px; border: 1px solid var(--border-l);
  cursor: pointer; transition: border-color .2s, background .2s;
  display: inline-block; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--text-m); background: var(--bg-h); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 520px;
  align-items: center; gap: 60px;
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(126,255,58,.05), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.04), transparent 60%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
  color: var(--text); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-quote {
  font-family: var(--display); font-size: 18px; font-style: italic;
  color: var(--text-m); line-height: 1.6; max-width: 520px; margin-bottom: 32px;
  border-left: 2px solid var(--border-l); padding-left: 20px;
}
.hero-sub {
  font-size: 15px; line-height: 1.7; color: var(--text-m);
  max-width: 480px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 12px; color: var(--text-d); margin-top: 16px; }

/* ── HERO GALLERY ── */
.hero-gallery {
  position: relative; z-index: 1;
  border-radius: 16px; overflow: hidden;
  height: 520px; background: var(--bg-h);
  border: 1px solid var(--border);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,12,6,.9));
  padding: 28px 20px 16px;
  font-family: var(--display); font-size: 16px; font-style: italic; color: var(--text);
}
.slide-dots {
  position: absolute; bottom: 12px; right: 14px;
  display: flex; gap: 5px; z-index: 2;
}
.slide-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-d); cursor: pointer; transition: background .2s; border: none;
}
.slide-dot.active { background: var(--accent); }

/* ── STATS STRIP ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-s);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 28px 0; text-align: center; border-right: 1px solid var(--border); }
.stat-item:first-child { border-left: 1px solid var(--border); }
.stat-num { font-family: var(--display); font-size: 38px; font-weight: 300; color: var(--accent); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-m); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; }
.section-title {
  font-family: var(--display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; color: var(--text); line-height: 1.1; margin-bottom: 14px;
}
.section-sub { font-size: 15px; color: var(--text-m); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 14px; overflow: hidden;
}
.feature-card { background: var(--bg-s); padding: 36px 28px; transition: background .2s; }
.feature-card:hover { background: var(--bg-h); }
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-g); border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.feature-card p { font-size: 14px; color: var(--text-m); line-height: 1.6; }
.feature-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); transition: gap .2s; text-decoration: none;
}
.feature-link:hover { gap: 10px; }
.feature-link::after { content: '→'; }

/* ── HOME GALLERY ── */
.home-gallery { padding: 0 48px 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.home-gallery-item { border-radius: 10px; overflow: hidden; height: 280px; position: relative; border: 1px solid var(--border); }
.home-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.home-gallery-item:hover img { transform: scale(1.04); }
.home-gallery-item .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,12,6,.8));
  padding: 20px 12px 10px;
  font-family: var(--display); font-size: 13px; font-style: italic; color: var(--text);
}

/* ── CARE ── */
.care-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - var(--nav-h)); }
.care-sidebar {
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto; border-right: 1px solid var(--border);
  padding: 36px 0; background: var(--bg-s);
}
.care-sidebar-title {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-d); padding: 0 20px; margin-bottom: 10px;
}
.care-nav { list-style: none; }
.care-nav a {
  display: block; padding: 8px 20px; font-size: 13px; color: var(--text-m);
  cursor: pointer; border-left: 2px solid transparent;
  transition: color .2s, border-color .2s, background .2s; text-decoration: none;
}
.care-nav a:hover, .care-nav a.active {
  color: var(--text); border-left-color: var(--accent); background: var(--accent-g);
}
.care-content { padding: 56px; }
.care-content h2 { font-family: var(--display); font-size: 48px; font-weight: 300; color: var(--text); margin-bottom: 8px; }
.care-intro { font-size: 15px; color: var(--text-m); margin-bottom: 56px; line-height: 1.7; max-width: 600px; }
.care-block { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.care-block:last-child { border-bottom: none; }
.care-block h3 { font-family: var(--display); font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.care-body p { font-size: 15px; color: var(--text-m); line-height: 1.75; margin-bottom: 16px; }
.care-body strong { color: var(--text); font-weight: 600; }
.care-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.care-body h4 { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--text); margin: 28px 0 12px; }

.mix-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.mix-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; transition: border-color .2s; }
.mix-card:hover { border-color: var(--border-l); }
.mix-num { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.mix-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.mix-list { list-style: none; padding: 0; }
.mix-list li { font-size: 13px; color: var(--text-m); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.mix-list li:last-child { border-bottom: none; }
.mix-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.care-tip { background: var(--accent-g); border: 1px solid rgba(126,255,58,.2); border-radius: 10px; padding: 16px 20px; font-size: 14px; color: var(--text-m); line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; }
.care-img { border-radius: 10px; overflow: hidden; margin: 20px 0; border: 1px solid var(--border); }
.care-img img { width: 100%; object-fit: cover; max-height: 380px; }

.pest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.pest-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; }
.pest-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.pest-card h4::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pest-list { list-style: none; }
.pest-list li { font-size: 13px; color: var(--text-m); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.pest-list li:last-child { border-bottom: none; }
.pest-list li::before { content: '→'; color: var(--accent-d); flex-shrink: 0; font-size: 11px; margin-top: 2px; }

.light-levels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
.light-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; }
.light-card h5 { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.light-card .range { font-family: var(--display); font-size: 22px; font-weight: 300; color: var(--accent); display: block; margin-bottom: 4px; }
.light-card p { font-size: 12px; color: var(--text-m); }

blockquote { border-left: 2px solid var(--accent); padding: 12px 20px; margin: 20px 0; font-family: var(--display); font-size: 18px; font-style: italic; color: var(--text-m); }

/* ── COLLECTION ── */
.collection-header { padding: 72px 48px 48px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; border-bottom: 1px solid var(--border); }
.collection-desc { font-size: 15px; color: var(--text-m); line-height: 1.7; max-width: 600px; margin-top: 12px; }
.collection-grid { padding: 32px 48px 80px; columns: 4 180px; column-gap: 12px; }
.col-item { break-inside: avoid; margin-bottom: 12px; border-radius: 10px; overflow: hidden; position: relative; border: 1px solid var(--border); cursor: pointer; transition: transform .25s, border-color .25s; }
.col-item:hover { transform: scale(1.015); border-color: var(--border-l); }
.col-item img { width: 100%; display: block; }
.col-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(6,12,6,.92)); opacity: 0; transition: opacity .3s; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; }
.col-item:hover .col-overlay { opacity: 1; }
.col-overlay h4 { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--text); line-height: 1.2; }
.col-overlay p { font-size: 11px; color: var(--text-m); margin-top: 2px; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 28px; color: var(--text-m); cursor: pointer; line-height: 1; transition: color .2s; background: none; border: none; }
.lightbox-close:hover { color: var(--text); }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 15px; font-style: italic; color: var(--text-m); background: rgba(6,12,6,.7); padding: 6px 16px; border-radius: 6px; white-space: nowrap; }

/* ── BLOG ── */
.blog-list-grid { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.blog-post-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 20px; cursor: pointer; transition: border-color .25s, transform .2s; display: grid; grid-template-columns: 180px 1fr; text-decoration: none; color: inherit; }
.blog-post-card:hover { border-color: var(--border-l); transform: translateY(-2px); }
.blog-card-img { background: var(--bg-h); display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 150px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-date { font-size: 11px; color: var(--text-d); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.blog-card-body h3 { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 8px; line-height: 1.25; }
.blog-card-body p { font-size: 13px; color: var(--text-m); line-height: 1.6; }
.blog-tags { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; background: var(--accent-g); border: 1px solid rgba(126,255,58,.2); color: var(--accent); }
.blog-tag.mental { background: var(--gold-g); border-color: rgba(201,168,76,.2); color: var(--gold); }

.blog-sidebar-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.blog-sidebar-card h4 { font-family: var(--display); font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 16px; }
.tag-pill { display: inline-block; margin: 3px; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 6px; border: 1px solid var(--border); color: var(--text-m); transition: all .2s; text-decoration: none; }
.tag-pill:hover { border-color: var(--accent); color: var(--accent); }
.social-link { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-m); padding: 9px 12px; border: 1px solid var(--border); border-radius: 8px; transition: border-color .2s, color .2s; margin-bottom: 8px; text-decoration: none; }
.social-link:hover { border-color: var(--border-l); color: var(--text); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ── BLOG POST ── */
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-m); margin-bottom: 40px; transition: color .2s; text-decoration: none; }
.post-back:hover { color: var(--text); }
.post-back::before { content: '←'; }
.post-header { margin-bottom: 48px; }
.post-header h1 { font-family: var(--display); font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-author { font-size: 13px; color: var(--text-m); }
.post-date { font-size: 12px; color: var(--text-d); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.post-body { max-width: 720px; }
.post-body p { font-size: 15px; color: var(--text-m); line-height: 1.8; margin-bottom: 20px; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body h4 { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--text); margin: 36px 0 12px; }
.post-body ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.post-body ul li { font-size: 15px; color: var(--text-m); line-height: 1.7; padding: 6px 0 6px 18px; position: relative; border-bottom: 1px solid var(--border); }
.post-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }
.post-body ul li:last-child { border-bottom: none; }
.post-body img { border-radius: 10px; overflow: hidden; margin: 28px 0; border: 1px solid var(--border); width: 100%; }
.post-body blockquote { border-left: 2px solid var(--accent); padding: 14px 20px; margin: 28px 0; font-family: var(--display); font-size: 20px; font-style: italic; color: var(--text-m); }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-refs { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-refs h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-d); margin-bottom: 12px; }
.post-refs a { display: block; font-size: 12px; color: var(--text-d); word-break: break-all; margin-bottom: 4px; }

/* ── PROJECTS ── */
.projects-grid { padding: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vimeo-card { background: var(--bg-s); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .25s; }
.vimeo-card:hover { border-color: var(--border-l); }
.vimeo-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--bg-h); }
.vimeo-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── RESOURCES ── */
.resources-wrap { min-height: calc(100vh - var(--nav-h)); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 48px; position: relative; overflow: hidden; }
.resources-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(126,255,58,.04), transparent 70%); }
.resources-bg-text { position: absolute; font-family: var(--display); font-size: min(240px, 25vw); font-weight: 300; color: var(--bg-h); user-select: none; pointer-events: none; line-height: 1; z-index: 0; white-space: nowrap; }

/* ── SHOP PLACEHOLDER ── */
.shop-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-g); border: 1px solid rgba(201,168,76,.25); border-radius: 6px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.shop-inner { max-width: 480px; margin: 0 auto; padding: 80px 48px; text-align: center; min-height: calc(100vh - var(--nav-h)); display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--bg-s); border-top: 1px solid var(--border); padding: 60px 48px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--text-m); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-brand small { display: block; font-size: 12px; color: var(--text-d); margin-top: 6px; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-d); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-m); margin-bottom: 9px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-d); }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 32px; height: 32px; border-radius: 7px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-m); text-decoration: none; transition: all .2s; }
.social-btn:hover { border-color: var(--border-l); color: var(--text); }
.social-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ── PAGE TRANSITIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-gallery { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .section, .blog-list-view, .blog-post-view { padding: 48px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .home-gallery { padding: 0 20px 60px; grid-template-columns: repeat(2, 1fr); }
  .care-layout { grid-template-columns: 1fr; }
  .care-sidebar { display: none; }
  .care-content { padding: 40px 20px; }
  .mix-cards { grid-template-columns: 1fr; }
  .pest-grid { grid-template-columns: 1fr; }
  .light-levels { grid-template-columns: repeat(2, 1fr); }
  .collection-header { padding: 40px 20px 32px; grid-template-columns: 1fr; }
  .collection-grid { padding: 20px 20px 60px; columns: 2; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-card-img { display: none; }
  .projects-grid { grid-template-columns: 1fr; padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resources-wrap, .shop-inner { padding: 48px 20px; }
}
