/* ===========================
   WOODSHIELD HOME INSPECTIONS
   =========================== */

:root {
  --forest: #1a2e1a;
  --forest-mid: #2d4a2d;
  --forest-light: #3d6b3d;
  --gold: #c8922a;
  --gold-light: #e0aa45;
  --cream: #f8f4ed;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text: #1c2b1c;
  --text-mid: #4a5c4a;
  --text-light: #7a8f7a;
  --shadow: 0 4px 24px rgba(26,46,26,0.12);
  --shadow-lg: 0 12px 48px rgba(26,46,26,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,46,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-icon { font-size: 1.4rem; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.logo-text em {
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(61,107,61,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,146,42,0.1) 0%, transparent 50%),
    var(--forest);
  z-index: -1;
}

/* Texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,146,42,0.2);
  border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.trust-icon { color: var(--gold-light); font-weight: 700; }

/* Hero Card */
.hero-visual {
  flex-shrink: 0;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  width: 300px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hcard-header {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hcard-body { padding: 20px; }

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.check-row:last-child { border-bottom: none; }

.chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.chk.pass { background: rgba(61,107,61,0.6); color: #7dda7d; }
.chk.warn { background: rgba(200,146,42,0.4); color: var(--gold-light); }

.hcard-footer {
  background: rgba(0,0,0,0.2);
  padding: 12px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ===== COUNTIES STRIP ===== */
.counties-strip {
  background: var(--forest-mid);
  padding: 24px 0;
  border-top: 1px solid rgba(200,146,42,0.2);
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.strip-label {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.counties {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.county {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.county-div { color: var(--gold); opacity: 0.5; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== SERVICES ===== */
.services-preview { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,46,26,0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.3);
}

.service-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.svc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.svc-icon { font-size: 2.2rem; margin-bottom: 16px; }

.service-card h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.svc-link:hover { color: var(--forest); }

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 40px;
}

.why-list { display: flex; flex-direction: column; gap: 28px; }

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  width: 36px;
}

.why-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.65;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-block {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}

.stat-block:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.stat-block:hover .stat { color: var(--gold-light); }
.stat-block:hover p { color: rgba(255,255,255,0.7); }

.stat {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.stat span { font-size: 1.6rem; color: var(--gold); }

.stat-block p {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.3);
}

.blog-tag {
  display: inline-block;
  background: rgba(200,146,42,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-read {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--forest);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,146,42,0.12) 0%, transparent 70%);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest-mid);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--forest);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(61,107,61,0.3) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ===== SERVICES PAGE ===== */
.services-full { background: var(--cream); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,46,26,0.07);
  transition: all 0.3s;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-full-card .svc-icon { font-size: 2.4rem; margin-bottom: 20px; }

.service-full-card h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.service-full-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  margin-bottom: 24px;
}

.service-includes li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-includes li::before {
  content: '✓';
  color: var(--forest-light);
  font-weight: 700;
  flex-shrink: 0;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

/* ===== ABOUT PAGE ===== */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  border: 1px solid var(--cream-dark);
}

.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  border: 4px solid var(--gold);
}

.about-visual h3 {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.about-visual .title {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.about-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  text-align: left;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.value-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.83rem;
  margin-bottom: 0;
}

/* ===== SERVICE AREA PAGE ===== */
.area-section { background: var(--cream); }

.area-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.county-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.county-card h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.county-card .county-state {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.city-tag {
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  border: 1px solid var(--cream-dark);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== FAQ PAGE ===== */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  transition: background 0.2s;
  gap: 16px;
}

.faq-question:hover { background: rgba(26,46,26,0.04); }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== BLOG PAGE ===== */
.blog-section { background: var(--cream); }

.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
}

.blog-card-img.c1 { background: linear-gradient(135deg, #1a2e1a, #3d6b3d); }
.blog-card-img.c2 { background: linear-gradient(135deg, #2a1f0e, #8b6914); }
.blog-card-img.c3 { background: linear-gradient(135deg, #0e1f2a, #1a5a7a); }
.blog-card-img.c4 { background: linear-gradient(135deg, #1a0e2a, #5a1a7a); }
.blog-card-img.c5 { background: linear-gradient(135deg, #2a0e0e, #8b1a1a); }
.blog-card-img.c6 { background: linear-gradient(135deg, #0e2a1a, #1a8b5a); }

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body .blog-tag { margin-bottom: 12px; }
.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== BLOG POST ===== */
.post-content {
  background: var(--white);
  padding: 80px 0;
}

.post-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.post-inner h2 {
  font-size: 1.6rem;
  color: var(--forest);
  margin: 40px 0 16px;
}

.post-inner h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin: 28px 0 12px;
}

.post-inner p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-inner ul li {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.post-callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-detail-text p {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.5;
}

.hours-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  border: 1px solid var(--cream-dark);
}

.hours-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span { font-weight: 600; color: var(--forest); }

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,46,26,0.07);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.contact-form-wrap .form-sub {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.3);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.success-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #a3d9a5;
  color: #1a4a1e;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--forest); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
}
