/* ============================================================
   NEW OUTLOOK BOOKKEEPING — Static Preview
   Matches wenonahbookkeeping.com layout exactly
   ============================================================ */

/* ── Color Scheme A: Navy + Gold (default) ───────────────── */
:root {
  --navy:         #0d1f3c;
  --navy-mid:     #162d58;
  --gold:         #c9a84c;
  --gold-light:   #e8cf8a;
  --gold-pale:    #faf4e6;
  --white:        #ffffff;
  --off-white:    #f8f7f4;
  --light-gray:   #f2f1ee;
  --border:       #e4e0d8;
  --text:         #1a1a2e;
  --text-muted:   #5a6478;
  --text-light:   #9aa3b4;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --radius:       10px;
  --transition:   0.22s ease;
}

/* ── Color Scheme B: Green (swap to activate) ────────────────
:root {
  --navy:         #1a5c46;
  --navy-mid:     #237a5c;
  --gold:         #2d8c6a;
  --gold-light:   #6abfa3;
  --gold-pale:    #edf7f3;
  --white:        #ffffff;
  --off-white:    #f4faf7;
  --light-gray:   #edf7f3;
  --border:       #d4e9e1;
  --text:         #0f2d20;
  --text-muted:   #4a6b5e;
  --text-light:   #8aada2;
  --shadow-sm:    0 2px 8px rgba(26,92,70,0.08);
  --shadow-md:    0 4px 20px rgba(26,92,70,0.12);
  --radius:       10px;
  --transition:   0.22s ease;
}
── */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.38);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 6px 11px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.09);
}

/* Dashboard-managed menu (wp_nav_menu output: <ul class="nav-menu">) */
.nav-links .nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--gold);
  background: rgba(201,168,76,0.09);
}

.nav-phone {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 30px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-phone-mobile {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  padding: 12px 0 0;
  border-bottom: none;
}
/* Dashboard-managed menu (wp_nav_menu output: <ul class="mobile-menu">) */
.mobile-nav .mobile-menu { display: flex; flex-direction: column; width: 100%; }
.mobile-nav .current-menu-item > a,
.mobile-nav .current_page_item > a { color: var(--gold); }

/* ============================================================
   SECTION 1 — HERO (2-column: text left, visual right)
   ============================================================ */
.hero {
  background: var(--off-white);
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 396px;
  gap: 60px;
  align-items: center;
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow-bar { width: 32px; height: 2px; background: var(--gold); border-radius: 2px; }

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 48ch;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right column — image/graphic */
.hero-visual {
  position: relative;
}

.hero-photo {
  width: 75%;
  max-width: 374px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  user-select: none;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}
.hero-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.hero-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}

/* ============================================================
   SECTION 2 — SERVICES
   ============================================================ */
.services-section {
  background: var(--white);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-header {
  background: var(--navy);
  padding: 28px 28px 22px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.service-card-tagline {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.service-card-body {
  padding: 24px 28px 28px;
}
.service-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.feature-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-dot svg { width: 10px; height: 10px; stroke: var(--navy); stroke-width: 3; }

.service-card-footer {
  padding: 0 28px 28px;
}

/* ============================================================
   SECTION 3 — PRICING
   ============================================================ */
.pricing-section {
  background: var(--light-gray);
  padding: 80px 0;
  scroll-margin-top: 80px; /* offset so the sticky header doesn't cover the title when anchored */
}

.pricing-intro {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 22px;
}
.pricing-guarantee-badge svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13,31,60,0.18);
}
.price-card.featured:hover { transform: translateY(-12px); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card.featured .price-name { color: var(--white); }

.price-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.price-card.featured .price-tagline { color: rgba(255,255,255,0.6); }

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.price-card.featured .price-amount-row { border-bottom-color: rgba(255,255,255,0.12); }
.price-currency { font-size: 22px; font-weight: 600; color: var(--gold); margin-top: 4px; }
.price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
}
.price-card.featured .price-amount { color: var(--white); }
.price-to { font-size: 26px; font-weight: 300; color: var(--text-muted); align-self: center; line-height: 1; }
.price-card.featured .price-to { color: rgba(255,255,255,0.5); }
.price-period { font-size: 14px; color: var(--text-muted); align-self: flex-end; padding-bottom: 8px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.5); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 0;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.price-card.featured .price-feature { color: rgba(255,255,255,0.85); }
.check-circle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-circle svg { width: 10px; height: 10px; stroke: var(--navy); stroke-width: 3; }

.price-cta { width: 100%; text-align: center; justify-content: center; }

.pricing-footer {
  text-align: center;
  margin-top: 40px;
}
.quarterly-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.quarterly-note strong { color: var(--navy); }

/* ============================================================
   SECTION 4 — SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.proof-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.proof-stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.proof-stat span { color: var(--gold); }

.proof-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 48px;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-stars svg { width: 15px; height: 15px; fill: var(--gold); color: var(--gold); }

.testi-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   SECTION 5 — ABOUT TEASER
   ============================================================ */
.about-teaser {
  background: var(--light-gray);
  padding: 80px 0;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo {
  width: 75%;
  max-width: 220px;
  aspect-ratio: 4/5;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  user-select: none;
}
.about-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-photo-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-photo-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.about-value-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.cert-tag svg { width: 15px; height: 15px; stroke: var(--gold); }
.cert-tag--cpa {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cert-tag--cpa svg { stroke: var(--gold); }

/* ============================================================
   SECTION 6 — CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 0;
}

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

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 28ch;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.55); }
.footer-social a:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.footer-social a:hover svg { stroke: var(--gold); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-full {
  padding: 80px 0;
  background: var(--white);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-full-img {
  position: sticky;
  top: 90px;
}
.about-full-photo {
  width: 75%;
  max-width: 340px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-full-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-full-photo .about-photo-initials { font-size: 96px; }
.about-full-content > h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
  line-height: 1.2;
}
.about-full-content > h2:first-child { margin-top: 0; }
.about-full-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.value-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.value-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.disclaimer-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 80px 0; background: var(--white); }
.services-full-list { display: flex; flex-direction: column; gap: 60px; }
.service-full-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.service-full-item:last-child { border-bottom: none; padding-bottom: 0; }
.service-full-icon-col { position: sticky; top: 90px; }
.service-full-icon-box {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-full-icon-box svg { width: 44px; height: 44px; stroke: var(--gold); opacity: 0.8; }
.service-full-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.service-full-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-full-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-full-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.service-full-list li .feature-dot { margin-top: 2px; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-full { padding: 80px 0; background: var(--white); }
.faq-section { padding: 80px 0; background: var(--light-gray); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  width: 26px;
  height: 26px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--text-muted); transition: transform var(--transition); }
.faq-item.open .faq-icon { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-icon svg { stroke: var(--navy); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.areas-section { padding: 80px 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.area-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.area-card svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.area-card-name { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testi-full { padding: 80px 0; }
.testi-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb svg { width: 36px; height: 36px; stroke: rgba(201,168,76,0.3); }
.blog-body { padding: 22px 24px 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.blog-date { font-size: 12px; color: var(--text-light); }
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ============================================================
   RICH TEXT CONTENT (blog posts & generic pages)
   Styles whatever is typed into the WordPress editor, and
   restores list bullets that the global reset removes.
   ============================================================ */
.post-content { font-size: 17px; color: var(--text-muted); line-height: 1.85; }
.post-content > *:first-child { margin-top: 0; }
.post-content p { margin-bottom: 1.2em; }
.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 1.6em 0 0.5em;
}
.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  margin: 1.4em 0 0.4em;
}
.post-content h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 1.2em 0 0.4em; }
.post-content a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.post-content a:hover { color: var(--navy); }
.post-content strong { color: var(--navy); font-weight: 700; }
.post-content ul,
.post-content ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5em; }
.post-content li::marker { color: var(--gold); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 22px;
  margin: 1.4em 0;
  font-style: italic;
  color: var(--text);
}
.post-content img { border-radius: var(--radius); margin: 1.4em 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.form-group { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-sidebar { position: sticky; top: 90px; }
.contact-info-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--navy); overflow-wrap: anywhere; }
.contact-info-value a:hover { color: var(--gold); }

/* ── Contact Form 7 — themed to match the site ───────────── */
.wpcf7-form p { margin-bottom: 12px; }
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--gold); }
.wpcf7-form textarea { min-height: 130px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  width: 100%;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.38);
}
.wpcf7-form .wpcf7-spinner { margin: 0 0 0 8px; }
.wpcf7-form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}
.wpcf7-form .wpcf7-not-valid-tip { font-size: 13px; color: #b00020; margin-top: 4px; }
.wpcf7-form .wpcf7-not-valid { border-color: #b00020 !important; }

/* Admin-only setup reminder on the contact page */
.form-setup-notice {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  text-align: center;
}
.error-404 .error-num {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.error-404 h1 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--navy); margin-bottom: 12px; }
.error-404 p { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .about-teaser-inner,
  .about-full-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-full-img,
  .contact-info-sidebar { position: static; }
  .about-full-photo { aspect-ratio: 3/4; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .service-full-item { grid-template-columns: 1fr; gap: 24px; }
  .service-full-icon-col { position: static; }
  .service-full-icon-box { max-width: 84px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { bottom: -16px; left: 0; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .testi-full-grid { grid-template-columns: 1fr; }
}
