/* ════════════════════════════════════════════════════════════
   TerraPaws — user.css
   Extracted from the original design mockup (remixed-9429af80.html).
   Announcement bar, marquee ticker, and Trending Topics band were
   intentionally removed (decorative, not data-backed).
════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FBF7F0;
  color: #2C2C2C;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── VARIABLES ─── */
:root {
  --terra:    #C1603A;
  --terra-d:  #A04D2B;
  --terra-l:  #E8845F;
  --forest:   #2C4A3E;
  --forest-l: #3D6B5A;
  --forest-xl:#EEF4F1;
  --yellow:   #F5D97E;
  --yellow-d: #E8C655;
  --pink:     #E8B4A0;
  --cream:    #FBF7F0;
  --cream-d:  #F2EBE0;
  --stone:    #EDE0CF;
  --charcoal: #2C2C2C;
  --mid:      #6B6B6B;
  --light:    #A8A8A8;
  --white:    #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(44,74,62,0.08);
  --shadow-md: 0 8px 32px rgba(44,74,62,0.12);
  --shadow-lg: 0 20px 60px rgba(44,74,62,0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { transform:translateX(-20px); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes pulse    { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }

.fade-up { animation: fadeUp 0.6s var(--ease) both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-d); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 3px; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#navbar {
  background: var(--cream);
  border-bottom: 2px solid var(--forest);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 900;
  color: var(--forest);
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.logo sup { font-size: 10px; color: var(--terra); font-family: 'DM Sans'; letter-spacing: 1px; font-weight: 600; vertical-align: super; margin-left: 2px; }
.logo-mark { width: 28px; height: 28px; border-radius: 50%; margin-right: 8px; flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--forest);
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover { background: var(--forest-xl); color: var(--terra); }
.nav-links .has-drop:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid rgba(44,74,62,0.12);
  border-radius: 10px; padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 6px;
  font-size: 13px; color: var(--charcoal);
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--forest-xl); color: var(--terra); }
.dropdown a .d-icon { font-size: 16px; width: 28px; text-align: center; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-search {
  background: none; border: none; cursor: pointer;
  color: var(--forest); padding: 8px; border-radius: 8px;
  font-size: 16px; transition: all 0.2s;
  display: flex; align-items: center;
}
.btn-search:hover { background: var(--forest-xl); color: var(--terra); }
.btn-subscribe {
  background: var(--terra); color: var(--white);
  padding: 9px 22px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--terra);
}
.btn-subscribe:hover { background: var(--terra-d); border-color: var(--terra-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(193,96,58,0.3); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--forest); font-size: 22px; }

/* ════════════════════════════════════════
   SEARCH OVERLAY
════════════════════════════════════════ */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(44,74,62,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  background: var(--white); border-radius: 16px;
  padding: 28px 32px; width: 100%; max-width: 640px;
  box-shadow: var(--shadow-lg);
}
.search-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--forest); margin-bottom: 16px; }
.search-input-wrap { display: flex; gap: 10px; }
.search-input-wrap input {
  flex: 1; border: 2px solid var(--stone); border-radius: 8px;
  padding: 12px 16px; font-family: 'DM Sans'; font-size: 15px;
  color: var(--charcoal); outline: none;
  transition: border-color 0.2s;
}
.search-input-wrap input:focus { border-color: var(--terra); }
.search-input-wrap button {
  background: var(--terra); color: white; border: none;
  border-radius: 8px; padding: 12px 20px;
  font-family: 'DM Sans'; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.search-input-wrap button:hover { background: var(--terra-d); }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.search-tag {
  background: var(--forest-xl); color: var(--forest);
  font-size: 12px; font-weight: 500; padding: 5px 12px;
  border-radius: 20px; cursor: pointer; transition: all 0.2s;
  border: none;
}
.search-tag:hover { background: var(--forest); color: white; }
.search-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.2); border: none; color: white; border-radius: 50%; width: 40px; height: 40px; font-size: 20px; cursor: pointer; transition: background 0.2s; }
.search-close:hover { background: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 2px solid var(--forest);
}
.hero-left {
  background: var(--forest);
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,96,58,0.2) 0%, transparent 70%);
}
.hero-left::after {
  content: '';
  position: absolute; top: -40px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,217,126,0.15) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,217,126,0.15);
  border: 1px solid rgba(245,217,126,0.35);
  color: var(--yellow);
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 3px; margin-bottom: 24px;
  width: fit-content; position: relative; z-index: 1;
  animation: fadeUp 0.5s var(--ease) 0.1s both;
}
.hero-badge::before { content: '✦'; font-size: 8px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px; line-height: 1.08;
  color: var(--cream); font-weight: 900;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}
.hero h1 em {
  font-style: italic; color: var(--yellow);
  display: block;
}
.hero-desc {
  color: rgba(251,247,240,0.65);
  font-size: 16px; line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s var(--ease) 0.3s both;
  font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s var(--ease) 0.4s both;
}
.btn-hero-primary {
  background: var(--terra); color: var(--white);
  padding: 15px 32px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s var(--ease-spring);
  border: 2px solid var(--terra);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--terra-l); border-color: var(--terra-l); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(193,96,58,0.4); }
.btn-hero-ghost {
  background: transparent;
  border: 2px solid rgba(251,247,240,0.25);
  color: rgba(251,247,240,0.8);
  padding: 15px 28px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-ghost:hover { background: rgba(251,247,240,0.08); border-color: rgba(251,247,240,0.5); color: white; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(251,247,240,0.1);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s var(--ease) 0.5s both;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900; color: var(--yellow);
  line-height: 1;
}
.hero-stat .lbl { font-size: 11px; color: rgba(251,247,240,0.45); margin-top: 4px; letter-spacing: 0.5px; }

/* Hero Right — Feature Panel */
.hero-right {
  background: var(--yellow);
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '🐾';
  position: absolute; bottom: 24px; right: 24px;
  font-size: 100px; opacity: 0.08;
  transform: rotate(-20deg);
  pointer-events: none;
}
.panel-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--forest);
  opacity: 0.6; margin-bottom: 6px;
  animation: fadeUp 0.5s var(--ease) 0.2s both;
}
.article-preview {
  background: var(--white); border-radius: 10px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 16px rgba(44,74,62,0.1);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  animation: fadeUp 0.5s var(--ease) both;
  border: 1.5px solid transparent;
}
.article-preview:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(44,74,62,0.18); border-color: var(--terra); }
.article-preview:nth-child(2) { animation-delay: 0.25s; }
.article-preview:nth-child(3) { animation-delay: 0.35s; }
.article-preview:nth-child(4) { animation-delay: 0.45s; }
.article-preview:nth-child(5) { animation-delay: 0.55s; }
.ap-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ap-icon.terra { background: rgba(193,96,58,0.12); }
.ap-icon.forest { background: rgba(44,74,62,0.1); }
.ap-icon.yellow { background: rgba(245,217,126,0.5); }
.ap-info {}
.ap-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.ap-cat.cat-c { color: var(--forest); }
.ap-title { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.ap-meta { font-size: 11px; color: var(--light); margin-top: 3px; }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.section { padding: 80px 32px; max-width: 1240px; margin: 0 auto; }
.section-sm { padding: 60px 32px; max-width: 1240px; margin: 0 auto; }
.section-full { padding: 80px 0; }

.section-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terra);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--terra); display: block; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--forest);
  line-height: 1.15; margin-bottom: 8px;
}
.section-sub { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.section-header { margin-bottom: 44px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 16px; flex-wrap: wrap; }
.btn-see-all {
  font-size: 12px; font-weight: 700; color: var(--terra);
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid var(--terra);
  padding-bottom: 2px; transition: all 0.2s;
  white-space: nowrap;
}
.btn-see-all:hover { color: var(--terra-d); gap: 10px; }

/* ════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════ */
.cats-section { background: var(--cream-d); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.cats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-tile {
  border-radius: 12px; overflow: hidden;
  cursor: pointer; position: relative;
  aspect-ratio: 3/4;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}
.cat-tile:hover { transform: translateY(-6px); border-color: var(--terra); box-shadow: var(--shadow-lg); }
.cat-tile-inner {
  width: 100%; height: 100%;
  padding: 20px 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
}
.cat-tile-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  border-radius: 10px;
}
.cat-tile.bg1 .cat-tile-inner { background: linear-gradient(145deg, #2C4A3E, #3D6B5A); }
.cat-tile.bg2 .cat-tile-inner { background: linear-gradient(145deg, #C1603A, #E8845F); }
.cat-tile.bg3 .cat-tile-inner { background: linear-gradient(145deg, #8B4513, #C1603A); }
.cat-tile.bg4 .cat-tile-inner { background: linear-gradient(145deg, #4A7A60, #2C4A3E); }
.cat-tile.bg5 .cat-tile-inner { background: linear-gradient(145deg, #D4853A, #F5B066); }
.cat-tile.bg6 .cat-tile-inner { background: linear-gradient(145deg, #5C3D2E, #8B6040); }
.cat-icon { font-size: 28px; margin-bottom: 8px; position: relative; z-index: 1; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: white; position: relative; z-index: 1; line-height: 1.3; margin-bottom: 4px; }
.cat-count { font-size: 10px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; font-weight: 500; letter-spacing: 0.5px; }

/* ════════════════════════════════════════
   FEATURED ARTICLES
════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.feat-hero {
  grid-row: 1 / 3;
  background: var(--forest);
  border-radius: 16px; overflow: hidden;
  cursor: pointer; position: relative;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  transition: all 0.3s var(--ease);
}
.feat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,74,62,0.95) 0%, rgba(44,74,62,0.3) 60%, transparent 100%);
}
.feat-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C4A3E 0%, #1a3028 50%, #3D6B5A 100%);
}
.feat-hero-bg.has-image { background-size: cover; background-position: center; }
.feat-hero-emoji {
  position: absolute; top: 30px; right: 30px;
  font-size: 80px; opacity: 0.12;
  transform: rotate(12deg);
  transition: all 0.4s; z-index: 1;
}
.feat-hero:hover .feat-hero-emoji { opacity: 0.2; transform: rotate(6deg) scale(1.1); }
.feat-hero:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feat-label { display: inline-block; background: var(--terra); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 14px; position: relative; z-index: 2; width: fit-content; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: white; line-height: 1.3; margin-bottom: 14px; position: relative; z-index: 2; }
.feat-excerpt { font-size: 13px; color: rgba(251,247,240,0.6); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 2; }
.feat-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: rgba(251,247,240,0.45); position: relative; z-index: 2; flex-wrap: wrap; }
.feat-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(251,247,240,0.3); }

.feat-small {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  border: 1.5px solid var(--stone);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex; align-items: stretch;
}
.feat-small:hover { border-color: var(--terra); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.feat-small-color {
  width: 5px; flex-shrink: 0;
}
.feat-small-color.terra { background: var(--terra); }
.feat-small-color.forest { background: var(--forest); }
.feat-small-body { padding: 20px; flex: 1; }
.feat-small-cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.feat-small-cat.fc { color: var(--forest); }
.feat-small-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--charcoal); line-height: 1.4; margin-bottom: 10px; }
.feat-small-meta { font-size: 11px; color: var(--light); }

/* ════════════════════════════════════════
   TOPIC SPLIT — CATS & DOGS
════════════════════════════════════════ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
}
.split-panel { padding: 64px; }
.split-panel.dogs { background: var(--cream); border-right: 1px solid var(--stone); }
.split-panel.cats { background: var(--forest-xl); }
.split-icon { font-size: 40px; margin-bottom: 16px; }
.split-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.split-title { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--forest); margin-bottom: 28px; }
.topic-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.topic-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: 8px;
  padding: 13px 18px; cursor: pointer;
  border: 1.5px solid var(--stone);
  transition: all 0.2s var(--ease);
}
.topic-item:hover { border-color: var(--terra); transform: translateX(5px); background: var(--cream); }
.split-panel.cats .topic-item { background: var(--white); }
.split-panel.cats .topic-item:hover { background: var(--cream); }
.ti-left { display: flex; align-items: center; gap: 12px; }
.ti-icon { font-size: 18px; }
.ti-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.ti-count { font-size: 11px; color: var(--terra); font-weight: 700; background: rgba(193,96,58,0.1); padding: 3px 9px; border-radius: 20px; }
.btn-split {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--white);
  padding: 12px 24px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  transition: all 0.25s var(--ease);
}
.btn-split:hover { background: var(--forest-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,74,62,0.3); }

/* ════════════════════════════════════════
   ARTICLE / CATEGORY GRID (used site-wide)
════════════════════════════════════════ */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  border: 1.5px solid var(--stone);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--terra); }
.card-thumb {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.card-thumb.t1 { background-color: #F2E8D8; background-image: linear-gradient(135deg, #F2E8D8, #E8D0B0); }
.card-thumb.t2 { background-color: #EEF4F1; background-image: linear-gradient(135deg, #EEF4F1, #D4E8DB); }
.card-thumb.t3 { background-color: #FDE8D8; background-image: linear-gradient(135deg, #FDE8D8, #F5C8A8); }
.card-thumb.t4 { background-color: #EEF4F1; background-image: linear-gradient(135deg, #EEF4F1, #B8D8C0); }
.card-thumb.t5 { background-color: #FBF0E8; background-image: linear-gradient(135deg, #FBF0E8, #F5D4B8); }
.card-thumb.t6 { background-color: #E8EEF4; background-image: linear-gradient(135deg, #E8EEF4, #C8D8E8); }
.card-thumb.has-image { font-size: 0; }
.card-thumb-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--terra);
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card-thumb-tag.cat-t { color: var(--forest); }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.card-cat.cc { color: var(--forest); }
.card-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--charcoal); line-height: 1.4; margin-bottom: 12px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--stone); }
.card-author { font-size: 11px; color: var(--mid); }
.card-read { font-size: 10px; color: var(--light); }

/* ════════════════════════════════════════
   PRODUCT RECOMMENDATIONS / SHOP GRID
════════════════════════════════════════ */
.products-bg { background: var(--stone); padding: 80px 0; border-top: 2px solid rgba(193,96,58,0.2); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; cursor: pointer;
  border: 1.5px solid rgba(193,96,58,0.1);
  transition: all 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--terra); }
.product-thumb {
  height: 150px; display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative;
  background-size: cover; background-position: center;
}
.product-thumb.p1 { background-color: #FEF3E8; background-image: linear-gradient(135deg, #FEF3E8, #FDE0C0); }
.product-thumb.p2 { background-color: #EEF6EE; background-image: linear-gradient(135deg, #EEF6EE, #CCE8CC); }
.product-thumb.p3 { background-color: #FEF0E8; background-image: linear-gradient(135deg, #FEF0E8, #FBCFAA); }
.product-thumb.p4 { background-color: #EEF4F6; background-image: linear-gradient(135deg, #EEF4F6, #C8DCE8); }
.product-thumb.has-image { font-size: 0; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--terra); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
}
.product-badge.new { background: var(--forest); }
.product-body { padding: 18px; }
.product-cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.product-title { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--charcoal); line-height: 1.4; margin-bottom: 10px; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.stars { color: var(--yellow-d); font-size: 12px; }
.rating-num { font-size: 11px; color: var(--mid); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--forest); }
.btn-view {
  background: var(--terra); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 7px 14px; border-radius: 5px;
  transition: all 0.2s var(--ease);
}
.btn-view:hover { background: var(--terra-d); }

/* ════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════ */
.newsletter-section {
  background: var(--terra);
  padding: 80px 32px;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '🐾';
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  font-size: 200px; opacity: 0.06; pointer-events: none;
}
.newsletter-section::after {
  content: '🐾';
  position: absolute; left: -20px; bottom: -40px;
  font-size: 160px; opacity: 0.04; pointer-events: none;
  transform: rotate(30deg);
}
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.nl-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(251,247,240,0.6); margin-bottom: 14px; }
.nl-title { font-family: 'Playfair Display', serif; font-size: 44px; color: var(--cream); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.nl-title em { font-style: italic; color: var(--yellow); }
.nl-sub { font-size: 15px; color: rgba(251,247,240,0.65); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.nl-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.nl-input {
  flex: 1; background: rgba(251,247,240,0.15);
  border: 2px solid rgba(251,247,240,0.3);
  border-radius: 8px; padding: 14px 18px;
  color: var(--cream); font-family: 'DM Sans'; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(251,247,240,0.45); }
.nl-input:focus { border-color: rgba(251,247,240,0.7); background: rgba(251,247,240,0.2); }
.nl-btn {
  background: var(--forest); color: var(--yellow);
  border: none; border-radius: 8px;
  padding: 14px 28px; font-family: 'DM Sans'; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap;
}
.nl-btn:hover { background: var(--forest-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.nl-privacy { font-size: 11px; color: rgba(251,247,240,0.35); margin-top: 14px; }
.nl-perks { display: flex; gap: 28px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.nl-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(251,247,240,0.7); }
.nl-perk::before { content: '✓'; color: var(--yellow); font-weight: 700; }
.nl-alert {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(251,247,240,0.15); border: 1px solid rgba(251,247,240,0.3);
  color: var(--cream); font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 8px; margin-bottom: 24px;
}
.nl-alert-success i { color: var(--yellow); }
.nl-alert-error { background: rgba(44,74,62,0.35); border-color: rgba(44,74,62,0.5); }
.nl-alert-error i { color: var(--cream); }

/* ════════════════════════════════════════
   ABOUT STRIP
════════════════════════════════════════ */
.about-strip {
  background: var(--cream-d); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone);
  padding: 56px 32px;
}
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.about-title { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--forest); margin-bottom: 16px; }
.about-body { font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { width: 36px; height: 36px; background: var(--terra); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.pillar-text .pt { font-size: 13px; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.pillar-text .pd { font-size: 12px; color: var(--mid); line-height: 1.5; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-card { background: var(--white); border-radius: 10px; padding: 22px; border: 1.5px solid var(--stone); text-align: center; transition: all 0.2s; }
.trust-card:hover { border-color: var(--terra); transform: translateY(-3px); }
.trust-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--terra); line-height: 1; margin-bottom: 6px; }
.trust-lbl { font-size: 11px; color: var(--mid); line-height: 1.4; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 32px 32px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--yellow); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(251,247,240,0.45); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(251,247,240,0.08); border: 1px solid rgba(251,247,240,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: all 0.2s;
  color: rgba(251,247,240,0.5);
}
.social-btn:hover { background: var(--terra); border-color: var(--terra); color: white; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--cream); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(251,247,240,0.45); transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-divider { border: none; border-top: 1px solid rgba(251,247,240,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(251,247,240,0.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(251,247,240,0.25); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-badge { background: rgba(193,96,58,0.3); border: 1px solid rgba(193,96,58,0.4); color: var(--terra-l); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; }

/* ════════════════════════════════════════
   MOBILE NAV DRAWER
════════════════════════════════════════ */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 150;
  transform: translateX(-100%); transition: transform 0.35s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(44,74,62,0.7); backdrop-filter: blur(4px); }
.drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream); padding: 28px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.drawer-close { background: none; border: none; color: var(--forest); font-size: 24px; cursor: pointer; margin-bottom: 16px; align-self: flex-end; }
.drawer-logo { font-family: 'Fraunces', serif; font-size: 22px; color: var(--forest); margin-bottom: 20px; display: flex; align-items: center; }
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--forest);
  transition: all 0.2s;
}
.drawer-link:hover { background: var(--forest-xl); color: var(--terra); }
.drawer-link .dl-icon { font-size: 20px; }
.drawer-sub { padding-left: 30px; display: flex; flex-direction: column; gap: 2px; margin-bottom: 6px; }
.drawer-sub a { font-size: 13px; padding: 8px 14px; border-radius: 6px; color: var(--mid); }
.drawer-sub a:hover { background: var(--forest-xl); color: var(--terra); }
.drawer-cta { background: var(--terra); color: white; border-radius: 8px; padding: 14px; text-align: center; font-weight: 700; font-size: 14px; margin-top: 12px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-subscribe { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 32px; }
  .hero h1 { font-size: 40px; }
  .hero-right { padding: 36px 28px; }
  .hero-stats { gap: 20px; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 44px 28px; }
  .split-panel.dogs { border-right: none; border-bottom: 2px solid var(--stone); }
  .featured-grid { grid-template-columns: 1fr; }
  .feat-hero { grid-row: auto; min-height: 360px; }
  .articles-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .nl-form { flex-direction: column; }
  .nl-perks { flex-direction: column; gap: 10px; align-items: center; }
  .section { padding: 56px 20px; }
  .section-heading { font-size: 30px; }
}
