/* ==========================================================================
   PALMETTO RECOVERY OF CHARLESTON — Global Stylesheet
   Palette 1: Navy + Moss + Gold
   ========================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1e3a5f;
  --navy-dark: #12263e;
  --navy-deep: #0a1929;
  --moss: #4a6741;
  --moss-light: #6b8f62;
  --moss-bg: rgba(74, 103, 65, 0.08);
  --gold: #c5a254;
  --gold-light: #d9bc7a;
  --gold-bg: rgba(197, 162, 84, 0.08);
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --warm-white: #fefcf9;
  --charcoal: #1a1a1a;
  --text: #2e2a26;
  --text-light: #665e55;
  --text-muted: #9e958a;
  --border: #ddd6ca;
  --border-light: #ece7de;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1240px;
  --side-pad: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--warm-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: var(--navy); transition: color 0.2s var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITY ===== */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--side-pad); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 9px 0; font-size: 0.78rem; }
.top-bar .wrap { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--gold-light); font-weight: 600; }
.top-bar a:hover { color: var(--gold); }

/* ===== HEADER / NAV ===== */
.site-header { background: var(--warm-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-area img { height: 52px; width: auto; }
.logo-area .logo-text { font-family: var(--font-heading); font-size: 0.85rem; color: var(--navy-dark); line-height: 1.3; }
.logo-area .logo-text span { display: block; font-size: 0.65rem; color: var(--text-muted); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.88rem; font-weight: 500; color: var(--text-light); position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); border-radius: 2px; }
.nav-donate { background: var(--gold) !important; color: var(--navy-dark) !important; padding: 8px 18px; border-radius: 6px; font-weight: 600 !important; font-size: 0.84rem !important; transition: background 0.25s var(--ease), transform 0.2s var(--ease) !important; }
.nav-donate:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta { background: var(--navy) !important; color: white !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; font-size: 0.84rem !important; transition: background 0.25s var(--ease), transform 0.2s var(--ease) !important; }
.nav-cta:hover { background: var(--navy-dark) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 200; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--warm-white); z-index: 150; padding: 100px var(--side-pad) 40px; flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.2rem; font-weight: 500; color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.mobile-nav a:last-child { margin-top: 16px; background: var(--navy); color: white; text-align: center; padding: 16px; border-radius: 8px; border-bottom: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .top-bar { display: none; }
  .logo-area .logo-text span { display: none; }
  .site-header .wrap { height: 64px; }
  .logo-area img { height: 44px; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer; transition: all 0.25s var(--ease); border-radius: 6px; text-align: center; line-height: 1.4; }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,162,84,0.3); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,0.2); }
.btn-moss { background: var(--moss); color: white; }
.btn-moss:hover { background: var(--moss-light); color: white; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(30,58,95,0.04); color: var(--navy); }
.btn-ghost-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,25,41,0.88) 0%, rgba(10,25,41,0.6) 50%, rgba(10,25,41,0.3) 100%); z-index: 1; }
.hero .wrap { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold-light); }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 20px; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.ht-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.ht-item svg { width: 16px; height: 16px; opacity: 0.7; }
@media (max-width: 900px) { .hero { min-height: 75vh; } }

/* ===== PHOTO STRIP ===== */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; background: var(--charcoal); }
.photo-strip-item { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-item .label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); padding: 20px 16px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; padding: 16px; line-height: 1.4; }
.ph-green { background: linear-gradient(135deg, #3a5a3a, #5a7a5a); }
.ph-blue { background: linear-gradient(135deg, #5a7a9a, #7a9aba); }
.ph-warm { background: linear-gradient(135deg, #8a7a5a, #aa9a7a); }
.ph-teal { background: linear-gradient(135deg, #4a6a7a, #6a8a9a); }
.ph-navy { background: linear-gradient(135deg, #1e3a5f, #2a5080); }
.ph-moss { background: linear-gradient(135deg, #4a6741, #6b8f62); }
@media (max-width: 700px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ===== TAGLINE SECTION ===== */
.tagline-section { padding: 72px 0; text-align: center; background: var(--warm-white); }
.tagline-section .wrap { max-width: 800px; }
.tagline { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy-dark); line-height: 1.4; margin-bottom: 16px; }
.tagline em { font-style: italic; color: var(--moss); }
.tagline-sub { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy-deep); color: white; }
.section-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--moss); margin-bottom: 14px; }
.section-label-gold { color: var(--gold); }
.section-label-white { color: rgba(255,255,255,0.6); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--navy-dark); margin-bottom: 12px; }
.section-header p { color: var(--text-light); }

/* ===== TWO-COLUMN ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.col-text h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy-dark); margin-bottom: 16px; line-height: 1.25; }
.col-text p { color: var(--text-light); font-size: 0.96rem; margin-bottom: 12px; }
.col-text p:last-of-type { margin-bottom: 0; }
.feature-list { margin-top: 20px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: 0.9rem; color: var(--text-light); }
.feature-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--moss); }
.photo-frame { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 16px 48px rgba(30,58,95,0.1); position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PROGRAMS GRID ===== */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 700px) { .program-grid { grid-template-columns: 1fr; } }
.program-item { display: flex; gap: 16px; align-items: flex-start; background: var(--sand-light); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.program-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,95,0.07); }
.program-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--moss-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--moss); }
.program-item h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy-dark); margin-bottom: 6px; }
.program-item p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } }
.review { background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.review blockquote { font-family: var(--font-heading); font-style: italic; font-size: 0.95rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
.review-source { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--sand-light); border: 1px solid var(--border); border-radius: 14px; padding: 32px 24px; text-align: center; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,95,0.08); }
.price-card.featured { border-color: var(--gold); background: var(--warm-white); box-shadow: 0 8px 24px rgba(197,162,84,0.12); }
.price-duration { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 8px; }
.price-amount { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--moss); margin-bottom: 4px; }
.price-note { font-size: 0.8rem; color: var(--text-muted); }
.price-tag { display: inline-block; background: var(--gold); color: var(--navy-deep); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FULL-BLEED CTA ===== */
.community-banner { position: relative; padding: 100px 0; text-align: center; color: white; overflow: hidden; }
.community-banner .bg { position: absolute; inset: 0; }
.community-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.community-banner .bg-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(10,25,41,0.65), rgba(10,25,41,0.75)); }
.community-banner .wrap { position: relative; z-index: 2; max-width: 700px; }
.community-banner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.community-banner p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 28px; }
.banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--navy-dark); text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; }
.faq-question:hover { color: var(--moss); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: white; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero { background: var(--navy-deep); padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(74,103,65,0.15), transparent 70%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 12px 0; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { margin: 0 8px; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .card-grid { grid-template-columns: 1fr; } }
.card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,95,0.08); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--moss); margin-bottom: 8px; }
.card-body h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.35; }
.card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item { padding: 24px 16px; }
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.section-navy .stat-number { color: var(--gold); }
.section-navy .stat-label { color: rgba(255,255,255,0.6); }

/* ===== TIMELINE ===== */
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 20px; margin-bottom: 32px; position: relative; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--moss-bg); border: 2px solid var(--moss); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--moss); font-weight: 700; font-size: 0.85rem; z-index: 1; }
.timeline-content h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== CONTACT MAP ===== */
.map-container { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== BLOG ===== */
.blog-featured { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.blog-meta { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--moss); margin-bottom: 10px; }
.blog-read-more { font-size: 0.88rem; font-weight: 600; color: var(--moss); display: inline-block; margin-top: 12px; transition: color 0.2s var(--ease); }
.blog-read-more:hover { color: var(--moss-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,95,0.08); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0; }

/* ===== PRICE CARD EXTRAS ===== */
.price-badge { display: inline-block; background: var(--gold); color: var(--navy-deep); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-description { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.price-features { margin-bottom: 20px; }
.price-features li { font-size: 0.84rem; color: var(--text-light); padding: 4px 0; }
.btn-primary { background: var(--moss); color: white; }
.btn-primary:hover { background: var(--moss-light); color: white; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--navy); background: rgba(30,58,95,0.04); color: var(--navy); }

/* ===== MOBILE: DOG GRID & PROPERTY GRID ===== */
@media (max-width: 600px) {
  .dog-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .dog-grid img { height: 300px !important; }
}
