/*
Theme Name: Tortie Queens
Theme URI: https://shop.pawtree.com/tortiequeens
Author: Tortie Queens
Author URI: https://shop.pawtree.com/tortiequeens
Description: A warm, minimal cat care blog theme for the Tortie Queens affiliate brand. Focused on cat nutrition, wellness, and helpful resources for cat owners.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tortie-queens
Tags: blog, cat, affiliate, minimal, warm, responsive
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --beige: #E8E0D3;
  --beige-mid: #D4C9B8;
  --terracotta: #C07B5A;
  --terracotta-dark: #A8623F;
  --dusty-rose: #D4907A;
  --charcoal: #2C2420;
  --brown-mid: #5C4A3A;
  --brown-light: #8C7B6B;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 16px rgba(44, 36, 32, 0.08);
  --shadow-card: 0 4px 24px rgba(44, 36, 32, 0.10);
  --shadow-hover: 0 8px 32px rgba(44, 36, 32, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --transition: 0.25s ease;
  --max-width: 1160px;
  --content-width: 760px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; color: var(--brown-mid); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--brown-mid); }
li { margin-bottom: 0.4rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 123, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--cream);
  color: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(44,36,32,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo:hover { color: var(--terracotta); }
.site-logo .logo-paw { color: var(--terracotta); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  color: var(--brown-mid);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover { color: var(--terracotta); background: var(--cream-dark); }
.main-nav .nav-shop {
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}
.main-nav .nav-shop:hover {
  background: var(--terracotta-dark);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--charcoal);
}

/* Mobile nav */
@media (max-width: 768px) {
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--beige);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.15rem;
    box-shadow: var(--shadow-card);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.65rem 0.75rem; }
  .main-nav .nav-shop { text-align: center; margin-left: 0; margin-top: 0.5rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 60%, #EDE5D8 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,144,122,0.12), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,123,90,0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192,123,90,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero-title em { color: var(--terracotta); font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--brown-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-icon { font-size: 1.75rem; }
.hero-badge-text strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--charcoal); }
.hero-badge-text span { font-size: 0.8rem; color: var(--brown-light); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero { padding: 60px 0; }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro { color: var(--brown-mid); font-size: 1.05rem; max-width: 560px; margin-bottom: 3rem; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin: 0 auto 0; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card-meta .sep { opacity: 0.4; }
.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card-title a { color: var(--charcoal); text-decoration: none; }
.blog-card-title a:hover { color: var(--terracotta); }
.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.6;
}
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.blog-card-link:hover { color: var(--terracotta-dark); gap: 0.65rem; }

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.category-pill {
  background: var(--white);
  border: 1.5px solid var(--beige);
  color: var(--brown-mid);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.category-pill:hover, .category-pill.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ============================================================
   PAWTREE PROMO SECTION
   ============================================================ */
.pawtree-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--dusty-rose) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pawtree-section::before {
  content: '🐾';
  position: absolute;
  font-size: 12rem;
  opacity: 0.07;
  right: -1rem;
  top: -2rem;
  pointer-events: none;
}
.pawtree-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pawtree-inner .section-label { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.15); }
.pawtree-inner h2 { color: var(--white); }
.pawtree-inner p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }
.pawtree-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.pawtree-features li {
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
}
.pawtree-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.pawtree-image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .pawtree-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pawtree-image { display: none; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--cream-dark);
  padding: 80px 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--terracotta); }
.newsletter-form input[type="email"]::placeholder { color: var(--brown-light); }
.newsletter-disclaimer { font-size: 0.8rem; color: var(--brown-light); margin-top: 1rem; }

/* ============================================================
   AFFILIATE DISCLOSURE BAR
   ============================================================ */
.affiliate-bar {
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.84rem;
  color: var(--brown-light);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.affiliate-bar a { color: var(--terracotta); }

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.post-hero {
  background: var(--cream-dark);
  padding: 60px 0 0;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--brown-light);
  flex-wrap: wrap;
}
.post-hero-category {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-hero h1 { max-width: 760px; margin-bottom: 1.5rem; }
.post-featured-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 2.5rem;
}

.post-content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-body {
  padding: 3rem 0;
}
.post-body h2 { margin: 2.5rem 0 1rem; }
.post-body h3 { margin: 2rem 0 0.75rem; }
.post-body p { font-size: 1.04rem; line-height: 1.8; }
.post-body ul, .post-body ol { margin: 1.25rem 0; }

/* Table of Contents */
.toc {
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 2.5rem;
}
.toc h4 { margin-bottom: 0.75rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brown-mid); }
.toc ol { margin: 0; padding-left: 1.25rem; }
.toc li { margin-bottom: 0.35rem; font-size: 0.92rem; }
.toc a { color: var(--brown-mid); }
.toc a:hover { color: var(--terracotta); }

/* Product CTA Box */
.product-cta-box {
  background: linear-gradient(135deg, rgba(192,123,90,0.08), rgba(212,144,122,0.12));
  border: 1.5px solid rgba(192,123,90,0.25);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.product-cta-box h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.product-cta-box p { margin-bottom: 1.5rem; font-size: 0.97rem; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--white);
  padding: 80px 0;
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-preview-image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .about-preview-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview-image { max-width: 380px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.85rem; color: var(--brown-light); margin-top: 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-brand .site-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .site-logo:hover { color: var(--dusty-rose); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--dusty-rose); }

.social-icons { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--dusty-rose); }

.affiliate-disclosure-footer {
  background: rgba(0,0,0,0.2);
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--beige);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--brown-mid); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 0.83rem;
  color: var(--brown-light);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--brown-light); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   VET DISCLAIMER
   ============================================================ */
.vet-note {
  background: #FFF8E7;
  border-left: 3px solid #E8A930;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--brown-mid);
  margin: 1.5rem 0;
}

/* ============================================================
   PRIVACY / TERMS PAGES
   ============================================================ */
.legal-content { padding: 60px 0; }
.legal-content h2 { margin: 2.5rem 0 0.75rem; font-size: 1.4rem; }
.legal-content h3 { margin: 1.75rem 0 0.5rem; font-size: 1.15rem; }
.legal-content p, .legal-content li { font-size: 0.97rem; }
.legal-content .last-updated { font-size: 0.85rem; color: var(--brown-light); margin-bottom: 2rem; }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption { margin: 0 0 1.25rem; }
.wp-caption-text { font-size: 0.85rem; color: var(--brown-light); text-align: center; margin-top: 0.35rem; }
.aligncenter { display: block; margin: 0 auto 1.25rem; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 600px) {
  .section-pad { padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 100%; }
}
