/*
Theme Name: Balance Operations Co.
Theme URI: https://balanceoperationsco.com
Author: Balance Operations Co.
Description: Custom theme for Balance Operations Co. bookkeeping website
Version: 1.0
*/

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

:root {
  --sage:        #7f8177;
  --sage-mid:    #6b6f63;
  --sage-deep:   #4a4d45;
  --sage-light:  #bbbfb6;
  --sage-pale:   #dde0da;
  --sage-ghost:  #f0f2ee;
  --brown:       #af7e5e;
  --brown-mid:   #9a6d4f;
  --brown-light: #d4b09a;
  --cream:       #f5f2ee;
  --white:       #ffffff;
  --ink:         #2b2018;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--cream); color: var(--ink); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* NAV */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 22px 60px; transition: background 0.4s, padding 0.4s; }
.site-nav.scrolled { background: rgba(245,242,238,0.96); backdrop-filter: blur(12px); padding: 14px 60px; border-bottom: 1px solid rgba(127,129,119,0.2); }
.nav-logo { font-family: var(--heading); font-size: 20px; font-weight: 500; letter-spacing: 0.04em; color: var(--white); transition: color 0.4s; }
.site-nav.scrolled .nav-logo { color: var(--sage-deep); }
.nav-menu { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-menu a { font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.9); transition: color 0.3s; }
.site-nav.scrolled .nav-menu a { color: var(--sage); }
.nav-menu a:hover { color: var(--brown-light) !important; }
.nav-menu .nav-cta a { background: var(--sage-deep); color: var(--white) !important; padding: 10px 22px; border-radius: 2px; }
.nav-menu .nav-cta a:hover { background: var(--sage-mid); }
.inner-page-nav { background: rgba(245,242,238,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(127,129,119,0.2); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 14px 60px; }
.inner-page-nav .nav-logo { color: var(--sage-deep); }
.inner-page-nav .nav-menu a { color: var(--sage); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(127,129,119,0.82) 0%, rgba(107,111,99,0.72) 55%, rgba(94,97,87,0.80) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 820px; }
.hero-eyebrow { font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(232,235,228,0.85); margin-bottom: 22px; opacity: 0; animation: fadeUp 0.9s 0.3s forwards; }
.hero-title { font-family: var(--heading); font-size: clamp(48px,7vw,88px); font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 26px; opacity: 0; animation: fadeUp 0.9s 0.55s forwards; }
.hero-title em { font-style: italic; color: rgba(232,235,228,0.9); }
.hero-sub { font-family: var(--body); font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(232,235,228,0.85); max-width: 520px; margin: 0 auto 40px; opacity: 0; animation: fadeUp 0.9s 0.78s forwards; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 1s forwards; }
.hero-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp 1s 1.4s forwards; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.scroll-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* BUTTONS */
.btn-primary { background: var(--sage); color: var(--white); padding: 14px 36px; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: background 0.3s, transform 0.2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--sage-mid); transform: translateY(-1px); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); padding: 13px 36px; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.55); border-radius: 2px; transition: border-color 0.3s, background 0.3s; display: inline-block; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-brown { background: var(--brown); color: var(--white); padding: 14px 36px; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: background 0.3s; display: inline-block; border: none; cursor: pointer; }
.btn-brown:hover { background: var(--brown-mid); color: var(--white); }

/* TRUST BAR */
.trust-bar { background: var(--sage-deep); padding: 20px 60px; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-light); }

/* SECTIONS */
.site-section { padding: 110px 60px; }
.section-eyebrow { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.section-title { font-family: var(--heading); font-size: clamp(36px,4vw,56px); font-weight: 400; line-height: 1.15; color: var(--sage-deep); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-family: var(--body); font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--sage-mid); max-width: 520px; }

/* ABOUT SNIPPET */
.about-section { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 110px 60px; }
.about-image-wrap { position: relative; }
.about-image-wrap::before { content: ''; position: absolute; top: 24px; left: 24px; right: -24px; bottom: -24px; border: 1px solid var(--sage-light); border-radius: 2px; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 2px; position: relative; z-index: 1; display: block; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.stat-card { background: var(--sage-ghost); padding: 24px; border-radius: 2px; border-left: 3px solid var(--sage); }
.stat-number { font-family: var(--heading); font-size: 38px; font-weight: 600; color: var(--sage-deep); line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }

/* SERVICES */
.services-section { background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card { background: var(--white); padding: 48px 40px; transition: background 0.35s; border-top: 3px solid transparent; }
.service-card:hover { background: var(--sage-deep); border-top-color: var(--sage-light); }
.service-card:hover .service-title, .service-card:hover .service-body, .service-card:hover .service-number { color: var(--cream) !important; }
.service-card:hover .service-tag { border-color: rgba(187,191,182,0.3); color: var(--sage-light); }
.service-number { font-family: var(--heading); font-size: 64px; font-weight: 300; color: var(--sage-pale); line-height: 1; margin-bottom: 24px; transition: color 0.35s; }
.service-title { font-family: var(--heading); font-size: 26px; font-weight: 500; color: var(--sage-deep); margin-bottom: 16px; line-height: 1.2; transition: color 0.35s; }
.service-body { font-family: var(--body); font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--sage-mid); margin-bottom: 28px; transition: color 0.35s; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); border: 1px solid var(--sage-light); padding: 5px 12px; border-radius: 40px; transition: all 0.35s; }

/* PROCESS */
.process-section { background: var(--sage); padding: 110px 60px; }
.process-section .section-title { color: var(--white); }
.process-section .section-eyebrow { color: rgba(232,235,228,0.75); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin-top: 64px; }
.process-step { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 28px; }
.process-step-num { font-family: var(--heading); font-size: 52px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1; margin-bottom: 20px; }
.process-step-title { font-family: var(--heading); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.process-step-body { font-family: var(--body); font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(232,235,228,0.8); }

/* CTA STRIP */
.cta-strip { background: linear-gradient(120deg, var(--sage-deep) 0%, var(--sage) 100%); padding: 80px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip-text .section-title { color: var(--white); margin-bottom: 10px; font-size: 40px; }
.cta-strip-text .section-title em { color: rgba(232,235,228,0.85); }
.cta-strip-text p { font-family: var(--body); font-size: 15px; font-weight: 300; color: rgba(232,235,228,0.75); }

/* BLOG HOME PREVIEW */
.blog-preview-section { background: var(--sage-pale); }
.blog-preview-section .section-title { color: var(--sage-deep); }
.blog-preview-section .section-eyebrow { color: var(--sage-deep); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.blog-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2px; }
.blog-card { background: var(--white); overflow: hidden; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg,var(--sage-light),var(--sage-pale)); display: flex; align-items: center; justify-content: center; }
.blog-card:first-child .blog-card-img { aspect-ratio: 16/10; background: linear-gradient(135deg,var(--sage) 0%,var(--sage-deep) 100%); }
.blog-card-img-label { font-family: var(--body); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.blog-card-body { padding: 30px 32px; }
.blog-tag { display: inline-block; font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); background: rgba(127,129,119,0.1); padding: 4px 10px; border-radius: 40px; margin-bottom: 14px; }
.blog-card-title { font-family: var(--heading); font-size: 22px; font-weight: 500; color: var(--sage-deep); line-height: 1.25; margin-bottom: 12px; display: block; }
.blog-card:first-child .blog-card-title { font-size: 28px; }
.blog-card-title:hover { color: var(--sage); }
.blog-excerpt { font-family: var(--body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--sage-mid); margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); }

/* PAGE HEADERS */
.page-hero { padding: 140px 60px 80px; text-align: center; background: var(--sage); }
.page-hero .section-eyebrow { color: rgba(232,235,228,0.75); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-title em { color: rgba(232,235,228,0.85); }

/* ABOUT FULL PAGE */
.about-full { background: var(--white); display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; padding: 100px 60px; }
.cert-card { background: var(--sage-ghost); border-left: 3px solid var(--sage); padding: 20px 24px; margin-top: 24px; }
.cert-title { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.cert-item { display: flex; align-items: center; gap: 10px; font-family: var(--body); font-size: 13px; color: var(--sage-deep); margin-bottom: 8px; }
.cert-check { color: var(--sage); font-weight: 600; }
.about-body p { font-family: var(--body); font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--sage-mid); margin-bottom: 20px; }
.values-section { background: var(--sage-pale); padding: 100px 60px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.value-card { background: var(--white); padding: 44px 36px; border-top: 3px solid var(--sage); }
.value-icon { font-size: 32px; margin-bottom: 20px; }
.value-title { font-family: var(--heading); font-size: 22px; font-weight: 500; color: var(--sage-deep); margin-bottom: 12px; }
.value-body { font-family: var(--body); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--sage-mid); }

/* SERVICES FULL PAGE */
.services-full-grid { background: var(--cream); padding: 80px 60px; display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.service-full-card { background: var(--white); padding: 56px 48px; transition: all 0.3s; border-left: 3px solid transparent; }
.service-full-card:hover { border-left-color: var(--sage); }
.service-full-card .service-number { font-family: var(--heading); font-size: 72px; font-weight: 300; color: var(--sage-pale); line-height: 1; margin-bottom: 28px; }
.service-full-card .service-title { font-family: var(--heading); font-size: 30px; font-weight: 500; color: var(--sage-deep); margin-bottom: 16px; }
.service-full-card .service-body { font-family: var(--body); font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--sage-mid); margin-bottom: 24px; }
.service-includes-title { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; margin-top: 20px; }
.service-includes { list-style: none; }
.service-includes li { font-family: var(--body); font-size: 13px; font-weight: 300; color: var(--sage-mid); padding: 6px 0; border-bottom: 1px solid var(--sage-ghost); display: flex; gap: 10px; }
.service-includes li::before { content: '—'; color: var(--sage); flex-shrink: 0; }

/* PRICING */
.pricing-section { background: var(--sage-pale); padding: 100px 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.pricing-card { background: var(--white); padding: 48px 40px; position: relative; }
.pricing-card.featured { background: var(--sage); }
.pricing-card.featured .pricing-name, .pricing-card.featured .pricing-price, .pricing-card.featured .pricing-desc { color: var(--white) !important; }
.pricing-card.featured .pricing-item { color: rgba(232,235,228,0.85) !important; border-color: rgba(232,235,228,0.15) !important; }
.pricing-card.featured .pricing-item::before { color: rgba(232,235,228,0.9) !important; }
.pricing-badge { position: absolute; top: 0; left: 0; right: 0; background: var(--brown); color: var(--white); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 8px; text-align: center; }
.pricing-name { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; margin-top: 16px; }
.pricing-price { font-family: var(--heading); font-size: 44px; font-weight: 600; color: var(--sage-deep); line-height: 1; margin-bottom: 6px; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.pricing-price span { font-family: var(--body); font-size: 13px; font-weight: 300; color: var(--sage); }
.pricing-desc { font-family: var(--body); font-size: 13px; font-weight: 300; color: var(--sage-mid); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--sage-ghost); }
.pricing-items { list-style: none; margin-bottom: 36px; }
.pricing-item { font-family: var(--body); font-size: 13px; font-weight: 300; color: var(--sage-mid); padding: 8px 0; border-bottom: 1px solid var(--sage-ghost); display: flex; gap: 10px; }
.pricing-item::before { content: '✓'; color: var(--sage); font-weight: 600; flex-shrink: 0; }
.hourly-callout { background: var(--sage-ghost); border-left: 3px solid var(--sage); padding: 24px 32px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

/* BLOG ARCHIVE */
.blog-archive { background: var(--cream); padding: 64px 60px; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-filter-bar { background: var(--white); padding: 22px 60px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--sage-ghost); }
.filter-label { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-right: 8px; }
.filter-chip { font-family: var(--body); font-size: 11px; font-weight: 500; padding: 7px 16px; border-radius: 40px; border: 1px solid var(--sage-light); color: var(--sage); cursor: pointer; transition: all 0.2s; background: transparent; }
.filter-chip:hover, .filter-chip.active { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* SINGLE POST */
.single-post { max-width: 760px; margin: 0 auto; padding: 80px 40px; }
.single-post-header { margin-bottom: 48px; }
.single-post-title { font-family: var(--heading); font-size: clamp(32px,4vw,52px); font-weight: 400; color: var(--sage-deep); line-height: 1.2; margin-bottom: 20px; }
.single-post-meta { display: flex; align-items: center; gap: 16px; font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); }
.single-post-content { font-family: var(--body); font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--sage-mid); }
.single-post-content h2 { font-family: var(--heading); font-size: 30px; font-weight: 500; color: var(--sage-deep); margin: 48px 0 16px; }
.single-post-content h3 { font-family: var(--heading); font-size: 24px; font-weight: 500; color: var(--sage-deep); margin: 36px 0 12px; }
.single-post-content p { margin-bottom: 24px; }
.single-post-content ul, .single-post-content ol { margin: 0 0 24px 24px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content strong { font-weight: 600; color: var(--ink); }

/* STORE */
.store-grid { background: var(--cream); padding: 80px 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.product-card { background: var(--white); border-radius: 2px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(74,77,69,0.1); }
.product-img { width: 100%; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; overflow: hidden; }
.product-icon { font-size: 42px; }
.product-img-label { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--brown); color: var(--white); font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 40px; }
.product-body { padding: 28px 28px 32px; }
.product-category { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.product-name { font-family: var(--heading); font-size: 22px; font-weight: 500; color: var(--sage-deep); margin-bottom: 10px; line-height: 1.2; }
.product-desc { font-family: var(--body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--sage-mid); margin-bottom: 22px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--heading); font-size: 28px; font-weight: 600; color: var(--sage-deep); }
.product-price-note { font-family: var(--body); font-size: 10px; color: var(--sage); display: block; margin-top: 2px; }
.btn-buy { background: var(--sage); color: var(--white); padding: 11px 22px; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px; transition: background 0.25s; white-space: nowrap; border: none; cursor: pointer; }
.btn-buy:hover { background: var(--sage-mid); }
.store-bundle { background: var(--sage-deep); margin: 0 60px 60px; border-radius: 4px; padding: 60px; display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.bundle-badge { display: inline-block; background: var(--brown); color: var(--white); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 14px; border-radius: 40px; margin-bottom: 20px; }
.bundle-title { font-family: var(--heading); font-size: 38px; font-weight: 400; color: var(--cream); line-height: 1.15; margin-bottom: 14px; }
.bundle-title em { font-style: italic; color: var(--sage-light); }
.bundle-desc { font-family: var(--body); font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(187,191,182,0.75); }
.bundle-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.bundle-was { font-family: var(--body); font-size: 13px; color: rgba(187,191,182,0.4); text-decoration: line-through; }
.bundle-now { font-family: var(--heading); font-size: 52px; font-weight: 600; color: var(--white); line-height: 1; }
.bundle-save { font-family: var(--body); font-size: 12px; font-weight: 500; color: var(--sage-light); letter-spacing: 0.1em; text-transform: uppercase; }
.store-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--sage-light); padding: 60px; }
.store-trust-item { background: var(--white); padding: 36px 28px; display: flex; align-items: flex-start; gap: 18px; }
.store-trust-icon { font-size: 28px; flex-shrink: 0; }
.store-trust-text { font-family: var(--heading); font-size: 18px; font-weight: 500; color: var(--sage-deep); margin-bottom: 4px; }
.store-trust-sub { font-family: var(--body); font-size: 12px; font-weight: 300; color: var(--sage); }

/* NEWSLETTER */
.newsletter-section { background: var(--sage); padding: 80px 60px; text-align: center; }
.newsletter-section .section-eyebrow { color: rgba(232,235,228,0.75); }
.newsletter-section .section-title { color: var(--white); max-width: 500px; margin: 0 auto 16px; }
.newsletter-section .section-title em { color: rgba(232,235,228,0.85); }
.newsletter-sub { font-family: var(--body); font-size: 15px; font-weight: 300; color: rgba(232,235,228,0.65); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: var(--white); font-family: var(--body); font-size: 14px; border-radius: 2px; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; padding: 100px 60px; background: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.form-input, .form-select, .form-textarea { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--sage-deep); background: var(--sage-ghost); border: 1px solid var(--sage-light); border-radius: 2px; padding: 13px 16px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--sage); color: var(--white); padding: 16px 36px; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.3s; align-self: flex-start; }
.form-submit:hover { background: var(--sage-mid); }
.contact-icon { font-size: 20px; width: 44px; height: 44px; background: var(--sage-ghost); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.contact-detail-label { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.contact-detail-value { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--sage-deep); }
.contact-certifications { background: var(--sage-ghost); padding: 28px; border-left: 3px solid var(--sage); margin-top: 36px; }

/* FOOTER */
.site-footer { background: var(--sage-deep); padding: 72px 60px 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; border-top: 2px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: var(--heading); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-family: var(--body); font-size: 13px; font-weight: 300; color: rgba(187,191,182,0.5); line-height: 1.6; max-width: 240px; }
.footer-col-title { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: var(--body); font-size: 13px; font-weight: 300; color: rgba(187,191,182,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom { background: var(--sage-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 60px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--body); font-size: 11px; font-weight: 300; color: rgba(187,191,182,0.3); letter-spacing: 0.05em; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* MOBILE */
@media(max-width:900px) {
  .site-nav, .inner-page-nav { padding: 16px 24px; }
  .nav-menu { display: none; }
  .site-section, .about-section, .about-full, .contact-wrap { padding: 72px 24px; }
  .about-section, .about-full, .contact-wrap { grid-template-columns: 1fr; }
  .services-grid, .blog-grid, .store-grid, .blog-archive-grid, .values-grid, .services-full-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; padding: 48px 24px; }
  .cta-strip { flex-direction: column; text-align: center; padding: 60px 24px; }
  .trust-bar { padding: 18px 24px; gap: 24px; }
  .store-bundle { margin: 0 24px 40px; padding: 40px 28px; flex-direction: column; }
  .bundle-right { align-items: flex-start; }
  .store-trust { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 2px; }
  .services-header, .blog-header { flex-direction: column; gap: 20px; }
  .page-hero { padding: 120px 24px 60px; }
  .blog-filter-bar { padding: 18px 24px; flex-wrap: wrap; }
  .blog-archive { padding: 40px 24px; }
  .store-grid { padding: 40px 24px; }
  .newsletter-section { padding: 60px 24px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; gap: 8px; }
  .hourly-callout { flex-direction: column; }
  .process-section { padding: 72px 24px; }
  .pricing-section { padding: 72px 24px; }
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.site-nav.scrolled .nav-hamburger span,
.inner-page-nav .nav-hamburger span { background: var(--sage-deep); }
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--sage-deep);
  padding: 80px 40px 40px;
  z-index: 999;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
  margin-top: 24px; background: var(--sage);
  color: var(--white) !important; padding: 16px 24px !important;
  text-align: center; border-bottom: none !important; border-radius: 2px;
}
@media(max-width:900px) {
  .nav-hamburger { display: flex; }
}
/* Hide any stray nav menus outside main nav */
body > ul,
body > div > ul:not(.nav-menu):not(.mobile-menu) {
  display: none !important;
}
/* Hide duplicate unstyled WordPress menu */
.menu {
  display: none !important;
}
.nav-menu {
  display: flex !important;
}
#mobileMenu {
  background: var(--sage-deep) !important;
  padding: 80px 40px 40px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  flex-direction: column !important;
}
#mobileMenu a {
  color: rgba(255,255,255,0.85) !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  font-family: var(--body) !important;
  font-size: 14px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
/* =============================================
   OPT-IN SECTION
   ============================================= */
.boc-optin {
  background: var(--cream);
  padding: 88px 60px;
}
.boc-optin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.boc-optin-headline {
  font-family: var(--heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.boc-optin-desc {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sage-mid);
  margin-bottom: 24px;
}
.boc-optin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.boc-optin-list li {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--sage-mid);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--sage-pale);
  position: relative;
}
.boc-optin-list li:last-child { border-bottom: none; }
.boc-optin-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
}
.boc-optin-form-wrap {
  background: #fff;
  border: 1px solid var(--sage-pale);
  border-radius: 4px;
  padding: 40px 36px;
}
.boc-optin-form-title {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.boc-optin-form-sub {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 28px;
}
.boc-optin-form-wrap label {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.boc-optin-form-wrap input[type="text"],
.boc-optin-form-wrap input[type="email"] {
  width: 100%;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: var(--sage-ghost);
  border: 1px solid var(--sage-pale);
  border-radius: 2px;
  padding: 13px 16px;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.boc-optin-form-wrap input:focus {
  border-color: var(--brown);
  background: #fff;
}
.boc-optin-submit {
  width: 100%;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brown);
  border: none;
  border-radius: 2px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.boc-optin-submit:hover { background: var(--brown-mid); }
.boc-optin-privacy {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 300;
  color: var(--sage-light);
  text-align: center;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .boc-optin { padding: 64px 24px; }
  .boc-optin-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   SOCIAL PROOF STRIP
   ============================================= */
.boc-proof {
  background: var(--sage);
  padding: 64px 60px;
}
.boc-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.boc-proof-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 36px;
  text-align: center;
}
.boc-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.boc-proof-card {
  background: rgba(255,255,255,0.07);
  padding: 32px 28px;
}
.boc-proof-quote {
  font-family: var(--heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 18px;
}
.boc-proof-author {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
}
@media (max-width: 768px) {
  .boc-proof { padding: 56px 24px; }
  .boc-proof-grid { grid-template-columns: 1fr; gap: 2px; }
}
