/*
Theme Name: Go Local Marketing
Theme URI: https://www.golocalmarketing.com
Author: Go Local Marketing
Description: Custom theme for Go Local Marketing — Milwaukee's digital marketing agency for local service businesses.
Version: 1.2.0
Text Domain: go-local-marketing
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --dark: #1f3d2b;
  --mid: #4f6f52;
  --cream: #f2ede4;
  --tan: #d6c7b0;
  --charcoal: #2b2b2b;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-muted: #5a5a5a;
  --radius: 4px;
  --nav-h: 72px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

.skip-link { position: absolute; top: -999px; left: 0; background: var(--dark); color: var(--cream); padding: 10px 20px; font-size: 14px; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream); border-bottom: 1px solid var(--tan);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-h); transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: 0 2px 20px rgba(31,61,43,0.08); }
.nav-logo img { height: 88px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s;
  white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--dark); }
.nav-links .cta-link a { background: var(--dark); color: var(--cream); padding: 10px 22px; border-radius: var(--radius); }
.nav-links .cta-link a:hover { background: var(--mid); }
.nav-phone-item a { color: var(--mid) !important; font-weight: 600 !important; letter-spacing: 0.02em !important; text-transform: none !important; gap: 6px !important; border: 1.5px solid rgba(79,111,82,0.4); padding: 8px 14px !important; border-radius: var(--radius); transition: background 0.2s, color 0.2s, border-color 0.2s !important; }
.nav-phone-item a:hover { background: var(--dark) !important; color: var(--cream) !important; border-color: var(--dark) !important; }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a svg { transition: transform 0.2s; }
.nav-item-dropdown:hover > a svg, .nav-item-dropdown:focus-within > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--tan); border-radius: 6px;
  padding: 8px 0; min-width: 220px;
  box-shadow: 0 8px 32px rgba(31,61,43,0.12);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200; list-style: none;
}
.nav-item-dropdown:hover .dropdown-menu, .nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  text-transform: none; letter-spacing: 0; min-height: 40px;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--cream); color: var(--dark); }
.dropdown-menu li a .dd-icon { width: 28px; height: 28px; background: var(--cream); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.15s; }
.dropdown-menu li a:hover .dd-icon { background: var(--tan); }
.dropdown-menu li a .dd-icon svg { width: 14px; height: 14px; }
.dropdown-divider { height: 1px; background: var(--tan); margin: 6px 0; opacity: 0.5; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   MARQUEE (homepage only)
───────────────────────────────────────── */
.marquee-strip {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--mid); color: var(--cream); padding: 10px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-sep { display: inline-block; width: 6px; height: 6px; background: var(--tan); border-radius: 50%; margin: 0 28px; vertical-align: middle; opacity: 0.7; }

/* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */
section { padding: 90px 8%; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--mid); flex-shrink: 0; }
h2.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 1.25rem; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.75; max-width: 540px; }
.body-text { font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.85; max-width: 640px; }
.body-text + .body-text { margin-top: 1.25rem; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  background: var(--cream); color: var(--dark); padding: 15px 32px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; min-height: 48px;
}
.btn-primary:hover { background: var(--tan); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(242,237,228,0.8); font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(242,237,228,0.25); padding: 13px 24px;
  border-radius: var(--radius); transition: border-color 0.2s, color 0.2s; min-height: 48px;
}
.btn-ghost:hover { border-color: var(--tan); color: var(--tan); }
.btn-ghost svg { transition: transform 0.2s; flex-shrink: 0; }
.btn-ghost:hover svg { transform: translateX(3px); }
.btn-dark { background: var(--dark); color: var(--cream); padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; min-height: 48px; }
.btn-dark:hover { background: var(--mid); transform: translateY(-1px); }
.btn-outline-light { color: rgba(242,237,228,0.8); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(242,237,228,0.25); padding: 13px 24px; border-radius: var(--radius); transition: border-color 0.2s, color 0.2s; min-height: 48px; }
.btn-outline-light:hover { border-color: var(--tan); color: var(--tan); }
.btn-ghost-dark { color: var(--dark); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--tan); padding-bottom: 2px; transition: border-color 0.2s; min-height: 44px; }
.btn-ghost-dark:hover { border-color: var(--dark); }
.btn-ghost-dark svg { transition: transform 0.2s; }
.btn-ghost-dark:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────
   HOMEPAGE — HERO
───────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 52px 8%;
  padding-top: calc(var(--nav-h) + 44px + 52px);
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-orb1 { position: absolute; top: -100px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(79,111,82,0.15); pointer-events: none; }
.hero-orb2 { position: absolute; bottom: -60px; right: 30%; width: 200px; height: 200px; border-radius: 50%; background: rgba(214,199,176,0.05); pointer-events: none; }
.hero-left { display: flex; flex-direction: column; justify-content: center; max-width: 780px; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(79,111,82,0.3); color: var(--tan); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px; border-radius: 2px; border: 1px solid rgba(214,199,176,0.2); width: fit-content; margin-bottom: 2rem; }
.hero-badge span { width: 6px; height: 6px; background: var(--mid); border-radius: 50%; display: inline-block; flex-shrink: 0; }
h1.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem; }
h1.hero-headline em { font-style: italic; color: var(--tan); }
.hero-sub { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(242,237,228,0.7); max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.hero-proof { margin-top: 56px; display: flex; gap: 0; border-top: 1px solid rgba(214,199,176,0.15); padding-top: 40px; flex-wrap: wrap; }
.proof-item { flex: 1; min-width: 140px; padding-right: 2rem; }
.proof-item + .proof-item { padding-left: 2rem; border-left: 1px solid rgba(214,199,176,0.15); }
.proof-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 6px; }
.proof-label { font-size: 13px; color: rgba(242,237,228,0.55); line-height: 1.4; }

/* ─────────────────────────────────────────
   HOMEPAGE — WHO WE HELP
───────────────────────────────────────── */
.who { background: var(--white); }
.who-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trade-card { background: var(--cream); border: 1px solid var(--tan); border-radius: var(--radius); padding: 18px; display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--dark); transition: border-color 0.2s, transform 0.15s; min-height: 56px; }
.trade-card:hover { border-color: var(--mid); transform: translateY(-2px); }
.trade-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }

/* ─────────────────────────────────────────
   HOMEPAGE — HOW IT WORKS
───────────────────────────────────────── */
.how { background: var(--dark); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-label { justify-content: center; color: var(--tan); }
.how-header .section-label::before { display: none; }
.how-header h2.section-heading { color: var(--cream); }
.how-header .section-sub { color: rgba(242,237,228,0.6); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; list-style: none; }
.how-step { background: rgba(255,255,255,0.06); padding: 44px 36px; }
.how-step:first-child { border-radius: 4px 0 0 4px; }
.how-step:last-child  { border-radius: 0 4px 4px 0; }
.step-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--mid); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 18px; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; }
.step-body  { font-size: 15px; font-weight: 300; color: rgba(242,237,228,0.6); line-height: 1.7; }

/* ─────────────────────────────────────────
   HOMEPAGE — SERVICES SECTION
───────────────────────────────────────── */
.services-section { background: var(--cream); color: var(--dark); }
.services-section .section-label { color: var(--mid); }
.services-section .section-label::before { background: var(--mid); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 2rem; flex-wrap: wrap; }
.services-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--tan); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--white); padding: 40px 32px; transition: background 0.25s; position: relative; cursor: pointer; }
.service-card:hover { background: var(--dark); }
.service-card:hover .service-card-icon { background: rgba(214,199,176,0.12); }
.service-card:hover h3 { color: var(--cream); }
.service-card:hover p  { color: rgba(242,237,228,0.6); }
.service-card-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background 0.25s; }
.service-card-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; transition: color 0.25s; }
.service-card p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.25s; }

/* ─────────────────────────────────────────
   HOMEPAGE — COST COMPARISON
───────────────────────────────────────── */
.cost { background: var(--cream); }
.cost-inner { max-width: 1000px; margin: 0 auto; }
.cost-header { text-align: center; margin-bottom: 56px; }
.cost-header .section-label { justify-content: center; }
.cost-header .section-label::before { display: none; }
.cost-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.cost-card { background: var(--white); border: 1.5px solid var(--tan); padding: 44px 32px 36px; position: relative; text-align: center; }
.cost-card:first-child { border-radius: 6px 0 0 6px; }
.cost-card:last-child  { border-radius: 0 6px 6px 0; }
.cost-card+.cost-card  { border-left: none; }
.cost-card.featured { background: var(--dark); border-color: var(--dark); z-index: 2; border-radius: 6px !important; margin: -12px 0; padding-top: 56px; padding-bottom: 48px; box-shadow: 0 12px 40px rgba(31,61,43,0.22); }
.cost-best-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--mid); color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; white-space: nowrap; }
.cost-dollar-display { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--tan); line-height: 1; margin-bottom: 0.5rem; }
.cost-card:not(.featured) .cost-dollar-display { opacity: 0.5; }
.cost-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.cost-card.featured .cost-title { color: var(--cream); }
.cost-divider { height: 1px; background: var(--tan); margin: 0 auto 1.5rem; width: 40px; }
.cost-card.featured .cost-divider { background: rgba(214,199,176,0.3); }
.cost-points { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 2rem; text-align: left; }
.cost-points li { font-size: 14px; font-weight: 300; line-height: 1.5; padding-left: 20px; position: relative; }
.cost-card:not(.featured) .cost-points li { color: var(--text-muted); }
.cost-card.featured .cost-points li { color: rgba(242,237,228,0.75); }
.cost-card:not(.featured) .cost-points li::before { content: '✕'; position: absolute; left: 0; font-size: 11px; color: #b88a8a; top: 1px; }
.cost-card.featured .cost-points li::before { content: '✓'; position: absolute; left: 0; font-size: 12px; color: var(--tan); top: 1px; }
.cost-cta { display: flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s, color 0.2s; min-height: 44px; }
.cost-card:not(.featured) .cost-cta { border: 1.5px solid var(--tan); color: var(--text-muted); font-size: 13px; }
.cost-card:not(.featured) .cost-cta:hover { border-color: var(--mid); color: var(--dark); }
.cost-card.featured .cost-cta { background: var(--cream); color: var(--dark); }
.cost-card.featured .cost-cta:hover { background: var(--tan); }

/* ─────────────────────────────────────────
   HOMEPAGE — TESTIMONIALS
───────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 2rem; flex-wrap: wrap; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--cream); border: 1px solid var(--tan); border-radius: 6px; padding: 32px 28px; }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--tan); line-height: 1; margin-bottom: 1rem; }
.testimonial-text { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--text-muted); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; min-width: 42px; background: var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--cream); }
.author-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.author-biz  { font-size: 13px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   CTA BANNERS
───────────────────────────────────────── */
.cta-banner { background: var(--mid); padding: 80px 8%; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.25; }
.cta-banner p { font-size: 17px; font-weight: 300; color: rgba(242,237,228,0.75); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-banner .btn-primary { background: var(--cream); color: var(--dark); font-size: 16px; padding: 16px 40px; }
.cta-banner .btn-primary:hover { background: var(--tan); }

.bottom-cta { background: var(--mid); padding: 88px 8%; }
.bottom-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.bottom-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.25; }
.bottom-cta p { font-size: 17px; font-weight: 300; color: rgba(242,237,228,0.75); margin-bottom: 2.5rem; line-height: 1.7; }
.bottom-cta .btn-primary { font-size: 16px; padding: 16px 40px; }
.cta-footnote { font-size: 13px; color: rgba(242,237,228,0.45); margin-top: 1rem; }
.cta-band { background: var(--mid); padding: 72px 8%; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.25; }
.cta-band p { font-size: 16px; font-weight: 300; color: rgba(242,237,228,0.75); max-width: 460px; margin: 0 auto 2rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--charcoal); color: var(--cream); padding: 60px 8% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(214,199,176,0.15); }
.footer-brand img { width: 140px; height: auto; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.55); line-height: 1.7; max-width: 260px; }
.footer-col h3 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(242,237,228,0.55); text-decoration: none; font-weight: 300; transition: color 0.2s; min-height: 28px; display: inline-flex; align-items: center; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(242,237,228,0.55); flex-wrap: wrap; gap: 8px; }
.footer-bottom-contact { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: rgba(242,237,228,0.75); }
.footer-bottom-contact a { color: rgba(242,237,228,0.75); text-decoration: none; transition: color 0.2s; }
.footer-bottom-contact a:hover { color: var(--cream); }

/* ─────────────────────────────────────────
   PAGE HERO (interior pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 72px) 8% 80px;
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 780px; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,237,228,0.5); margin-bottom: 1.75rem; list-style: none; }
.breadcrumb a { color: rgba(242,237,228,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--tan); }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--tan); }
.page-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.page-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--tan); }
h1.page-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem; }
h1.page-headline em { font-style: italic; color: var(--tan); }
.page-hero-sub { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(242,237,228,0.7); max-width: 580px; margin-bottom: 3.5rem; }
.service-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(79,111,82,0.3); color: var(--tan); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px; border-radius: 2px; border: 1px solid rgba(214,199,176,0.2); margin-bottom: 1.5rem; width: fit-content; }
.hero-cta-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 56px; border-top: 1px solid rgba(214,199,176,0.15); padding-top: 40px; flex-wrap: wrap; }
.hero-stat { flex: 1; min-width: 160px; padding-right: 2rem; }
.hero-stat + .hero-stat { padding-left: 2rem; border-left: 1px solid rgba(214,199,176,0.15); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; font-weight: 300; color: rgba(242,237,228,0.55); line-height: 1.4; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.origin { background: var(--white); }
.origin-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.origin-quote-block { background: var(--dark); border-radius: 8px; padding: 48px 44px; position: relative; overflow: hidden; }
.oqb-orb { position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(79,111,82,0.2); pointer-events: none; }
.oqb-mark { font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--mid); line-height: 0.8; margin-bottom: 1.5rem; display: block; }
.oqb-quote { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.55; margin-bottom: 2rem; }
.oqb-divider { width: 40px; height: 1.5px; background: var(--tan); margin-bottom: 1.5rem; }
.oqb-context { font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.55); line-height: 1.65; }

.values { background: var(--cream); }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-header { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--tan); border-radius: 6px; overflow: hidden; }
.value-card { background: var(--white); padding: 36px 30px; transition: background 0.25s; }
.value-card:hover { background: var(--dark); }
.value-card:hover .vc-title { color: var(--cream); }
.value-card:hover .vc-body  { color: rgba(242,237,228,0.6); }
.value-card:hover .vc-num   { color: rgba(214,199,176,0.25); }
.vc-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--tan); line-height: 1; margin-bottom: 1rem; transition: color 0.25s; }
.vc-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; transition: color 0.25s; }
.vc-body  { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.25s; }

.team { background: var(--dark); }
.team-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.team .section-label { color: var(--tan); }
.team .section-label::before { background: var(--tan); }
.team h2.section-heading { color: var(--cream); }
.team .body-text { color: rgba(242,237,228,0.65); max-width: 100%; }
.team-stats { display: flex; gap: 0; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(214,199,176,0.15); flex-wrap: wrap; }
.team-stat { flex: 1; min-width: 120px; padding-right: 2rem; }
.team-stat + .team-stat { padding-left: 2rem; border-left: 1px solid rgba(214,199,176,0.15); }
.ts-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 4px; }
.ts-label { font-size: 13px; font-weight: 300; color: rgba(242,237,228,0.5); line-height: 1.4; }
.team-cards { display: flex; flex-direction: column; gap: 16px; }
.team-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 6px; padding: 28px; display: flex; align-items: flex-start; gap: 20px; }
.tc-avatar { width: 56px; height: 56px; min-width: 56px; background: var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.tc-name { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.tc-role { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tan); margin-bottom: 8px; }
.tc-bio  { font-size: 13px; font-weight: 300; color: rgba(242,237,228,0.55); line-height: 1.6; }

.why-local { background: var(--white); }
.why-local-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.milwaukee-block { background: var(--cream); border-radius: 8px; padding: 40px 36px; border: 1.5px solid var(--tan); }
.mb-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem; }
.mb-neighborhoods { display: flex; flex-direction: column; gap: 10px; }
.mb-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--tan); }
.mb-row:last-child { border-bottom: none; }
.mb-icon { font-size: 18px; flex-shrink: 0; }
.mb-place { font-size: 14px; font-weight: 500; color: var(--dark); }
.mb-detail { font-size: 12px; font-weight: 300; color: var(--text-muted); }

.approach { background: var(--cream); }
.approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-header { display: flex; flex-direction: column; gap: 1rem; max-width: 560px; margin-bottom: 52px; }
.approach-steps { display: flex; flex-direction: column; gap: 2px; list-style: none; }
.approach-step { display: grid; grid-template-columns: 72px 1fr; background: var(--white); overflow: hidden; transition: background 0.2s; }
.approach-step:first-child { border-radius: 6px 6px 0 0; }
.approach-step:last-child  { border-radius: 0 0 6px 6px; }
.approach-step:hover { background: var(--dark); }
.approach-step:hover .as-num   { background: rgba(79,111,82,0.4); color: var(--tan); }
.approach-step:hover .as-title { color: var(--cream); }
.approach-step:hover .as-body  { color: rgba(242,237,228,0.6); }
.as-num { background: var(--dark); color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.as-content { padding: 28px 32px; }
.as-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 6px; transition: color 0.2s; }
.as-body  { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.2s; }

/* ─────────────────────────────────────────
   SERVICES OVERVIEW PAGE
───────────────────────────────────────── */
.bundle { background: var(--white); padding: 88px 8%; }
.bundle-inner { max-width: 1200px; margin: 0 auto; }
.core-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-card-large { background: var(--cream); border: 1.5px solid var(--tan); border-radius: 6px; padding: 44px 40px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.service-card-large:hover { border-color: var(--mid); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(31,61,43,0.09); }
.service-card-large:hover .scl-arrow { transform: translateX(4px); }
.service-card-large:hover .scl-icon { background: var(--dark); }
.service-card-large:hover .scl-icon svg { stroke: var(--tan); }
.scl-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.scl-icon { width: 52px; height: 52px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.25s; flex-shrink: 0; }
.scl-icon svg { width: 24px; height: 24px; stroke: var(--mid); transition: stroke 0.25s; }
.scl-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--dark); color: var(--cream); padding: 4px 10px; border-radius: 2px; }
.scl-badge.addon { background: var(--tan); color: var(--charcoal); }
.scl-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.scl-body  { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.scl-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.75rem; }
.scl-includes li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; font-weight: 400; color: var(--text-muted); }
.scl-includes li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: var(--mid); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23f2ede4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 16px; margin-top: 1px; }
.scl-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid var(--tan); margin-top: auto; }
.scl-cta { font-size: 14px; font-weight: 600; color: var(--dark); }
.scl-arrow { width: 32px; height: 32px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.scl-arrow svg { width: 14px; height: 14px; stroke: var(--cream); }
.scl-full { grid-column: 1 / -1; }

.addons { background: var(--cream); padding: 88px 8%; }
.addons-inner { max-width: 1200px; margin: 0 auto; }
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.addon-card { background: var(--white); border: 1.5px solid var(--tan); border-radius: 6px; padding: 32px 28px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.addon-card:hover { border-color: var(--mid); transform: translateY(-3px); }
.addon-card:hover .ac-arrow { transform: translateX(3px); }
.addon-card:hover .ac-icon { background: var(--dark); }
.addon-card:hover .ac-icon svg { stroke: var(--tan); }
.ac-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background 0.25s; }
.ac-icon svg { width: 20px; height: 20px; stroke: var(--mid); transition: stroke 0.25s; }
.ac-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.ac-body  { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.ac-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--tan); margin-top: auto; }
.ac-cta { font-size: 13px; font-weight: 600; color: var(--mid); }
.ac-arrow { width: 28px; height: 28px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; border: 1.5px solid var(--tan); }
.ac-arrow svg { width: 12px; height: 12px; stroke: var(--dark); }

.how-fits { background: var(--dark); padding: 88px 8%; }
.how-fits-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-fits .section-label { color: var(--tan); }
.how-fits .section-label::before { background: var(--tan); }
.how-fits h2.section-heading { color: var(--cream); }
.how-fits .section-sub { color: rgba(242,237,228,0.6); margin-bottom: 0; }
.stack-visual { display: flex; flex-direction: column; gap: 2px; }
.stack-row { background: rgba(255,255,255,0.05); border: 1px solid rgba(214,199,176,0.1); border-radius: 4px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; transition: background 0.2s; }
.stack-row:hover { background: rgba(79,111,82,0.2); }
.stack-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--mid); min-width: 28px; }
.stack-name { font-size: 15px; font-weight: 600; color: var(--cream); flex: 1; }
.stack-role { font-size: 12px; font-weight: 300; color: rgba(242,237,228,0.5); }
.stack-icon { width: 32px; height: 32px; background: rgba(79,111,82,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stack-icon svg { width: 14px; height: 14px; stroke: var(--tan); }

/* ─────────────────────────────────────────
   SERVICE DETAIL PAGES (shared)
───────────────────────────────────────── */
.what { background: var(--white); }
.what-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.what-visual { background: var(--dark); border-radius: 8px; padding: 40px 36px; position: relative; overflow: hidden; }
.what-visual-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); margin-bottom: 1.5rem; }
.what-orb { position: absolute; bottom: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(79,111,82,0.1); pointer-events: none; }

.included { background: var(--cream); }
.included-inner { max-width: 1100px; margin: 0 auto; }
.included-header { display: flex; flex-direction: column; margin-bottom: 56px; gap: 1rem; max-width: 640px; }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--tan); border-radius: 6px; overflow: hidden; }
.included-card { background: var(--white); padding: 36px 30px; transition: background 0.25s; position: relative; }
.included-card:hover { background: var(--dark); }
.included-card:hover .ic-title { color: var(--cream); }
.included-card:hover .ic-body  { color: rgba(242,237,228,0.6); }
.included-card:hover .ic-icon  { background: rgba(214,199,176,0.12); }
.included-card:hover .ic-icon svg { stroke: var(--tan); }
.ic-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background 0.25s; }
.ic-icon svg { width: 22px; height: 22px; stroke: var(--mid); transition: stroke 0.25s; }
.ic-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; transition: color 0.25s; }
.ic-body { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.25s; }

.why { background: var(--dark); }
.why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why .section-label { color: var(--tan); }
.why .section-label::before { background: var(--tan); }
.why h2.section-heading { color: var(--cream); }
.why .section-sub { color: rgba(242,237,228,0.6); }
.why-points { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 2rem; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.wp-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(79,111,82,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.wp-icon svg { width: 18px; height: 18px; stroke: var(--tan); }
.wp-title { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.wp-body  { font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.6); line-height: 1.65; }

.process { background: var(--white); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-steps { display: flex; flex-direction: column; gap: 2px; list-style: none; }
.process-step { display: grid; grid-template-columns: 80px 1fr; background: var(--cream); overflow: hidden; transition: background 0.2s; }
.process-step:first-child { border-radius: 6px 6px 0 0; }
.process-step:last-child  { border-radius: 0 0 6px 6px; }
.process-step:hover { background: var(--dark); }
.process-step:hover .ps-num  { background: rgba(79,111,82,0.4); color: var(--tan); }
.process-step:hover .ps-title { color: var(--cream); }
.process-step:hover .ps-body  { color: rgba(242,237,228,0.6); }
.ps-num { background: var(--dark); color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.ps-content { padding: 28px 32px; }
.ps-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 6px; transition: color 0.2s; }
.ps-body  { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.2s; }

.for-who { background: var(--cream); }
.for-who-inner { max-width: 1100px; margin: 0 auto; }
.for-who-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.trades-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.trade-chip { background: var(--white); border: 1.5px solid var(--tan); border-radius: var(--radius); padding: 16px 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--dark); text-align: center; transition: border-color 0.2s, background 0.2s, transform 0.15s; cursor: default; }
.trade-chip:hover { border-color: var(--mid); background: var(--dark); color: var(--cream); transform: translateY(-2px); }
.trade-chip-icon { font-size: 24px; line-height: 1; }

.faq { background: var(--white); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--tan); border-radius: 6px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--tan); }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 28px; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--dark); background: none; border: none; width: 100%; text-align: left; transition: background 0.15s; min-height: 44px; }
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--dark); color: var(--cream); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; border: 1.5px solid var(--tan); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--mid); border-color: var(--mid); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--dark); }
.faq-question[aria-expanded="true"] .faq-icon svg { stroke: var(--cream); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.75; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 28px 22px; }

.related { background: var(--cream); }
.related-inner { max-width: 1100px; margin: 0 auto; }
.related-header { text-align: center; margin-bottom: 48px; }
.related-header .section-label { justify-content: center; }
.related-header .section-label::before { display: none; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: var(--white); border: 1px solid var(--tan); border-radius: 6px; padding: 28px 24px; text-decoration: none; transition: border-color 0.2s, transform 0.15s; display: block; }
.related-card:hover { border-color: var(--mid); transform: translateY(-3px); }
.related-card-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.related-card-icon svg { width: 20px; height: 20px; stroke: var(--mid); }
.related-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.related-card p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.related-card-arrow { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--mid); margin-top: 1rem; }

/* ─────────────────────────────────────────
   SEO PAGE — SERP MOCKUP
───────────────────────────────────────── */
.serp-mockup { display: flex; flex-direction: column; gap: 3px; }
.serp-item { background: rgba(242,237,228,0.06); border-radius: 4px; padding: 14px 16px; border: 1px solid rgba(214,199,176,0.08); transition: background 0.2s; }
.serp-item.rank-1 { background: rgba(79,111,82,0.25); border-color: rgba(79,111,82,0.4); }
.serp-rank { font-size: 10px; font-weight: 700; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.serp-item.rank-1 .serp-rank { color: var(--tan); }
.serp-title { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.serp-url { font-size: 11px; color: rgba(242,237,228,0.4); margin-bottom: 5px; }
.serp-desc { font-size: 12px; font-weight: 300; color: rgba(242,237,228,0.5); line-height: 1.5; }
.serp-you-badge { position: absolute; top: 12px; right: 12px; background: var(--mid); color: var(--cream); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.why-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.chart-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.chart-bars { display: flex; flex-direction: column; gap: 14px; }
.chart-row { display: flex; align-items: center; gap: 12px; }
.chart-name { font-size: 12px; font-weight: 500; color: rgba(242,237,228,0.6); width: 100px; flex-shrink: 0; }
.chart-bar-wrap { flex: 1; height: 28px; background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; }
.chart-bar { height: 100%; border-radius: 3px; display: flex; align-items: center; padding-left: 10px; font-size: 11px; font-weight: 600; color: var(--cream); }
.bar-you   { background: var(--mid); width: 88%; }
.bar-comp1 { background: rgba(214,199,176,0.2); width: 38%; }
.bar-comp2 { background: rgba(214,199,176,0.2); width: 22%; }
.bar-comp3 { background: rgba(214,199,176,0.2); width: 12%; }
.chart-note { font-size: 11px; color: rgba(242,237,228,0.35); margin-top: 16px; line-height: 1.5; }

/* ─────────────────────────────────────────
   PAID ADS PAGE
───────────────────────────────────────── */
.ad-mockup { display: flex; flex-direction: column; gap: 12px; }
.ad-metric-row { display: flex; justify-content: space-between; align-items: center; background: rgba(242,237,228,0.05); border: 1px solid rgba(214,199,176,0.1); border-radius: 4px; padding: 14px 16px; }
.ad-metric-label { font-size: 12px; color: rgba(242,237,228,0.55); font-weight: 400; }
.ad-metric-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); }
.ad-metric-value.green { color: #6fcf97; }
.ad-metric-delta { font-size: 11px; font-weight: 600; color: #6fcf97; background: rgba(111,207,151,0.12); padding: 3px 8px; border-radius: 2px; }
.ad-platform-row { display: flex; gap: 8px; margin-top: 4px; }
.ad-platform-chip { flex: 1; background: rgba(79,111,82,0.25); border: 1px solid rgba(79,111,82,0.4); border-radius: 4px; padding: 12px; text-align: center; }
.ad-platform-chip .chip-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); margin-bottom: 4px; }
.ad-platform-chip .chip-val { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.ad-spend-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.av-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.spend-comparison { display: flex; flex-direction: column; gap: 20px; }
.spend-row { display: flex; flex-direction: column; gap: 8px; }
.spend-row-header { display: flex; justify-content: space-between; align-items: center; }
.spend-name { font-size: 13px; font-weight: 500; color: rgba(242,237,228,0.65); }
.spend-amount { font-size: 13px; font-weight: 600; color: var(--cream); }
.spend-bar-wrap { height: 10px; background: rgba(255,255,255,0.06); border-radius: 5px; overflow: hidden; }
.spend-bar { height: 100%; border-radius: 5px; }
.bar-managed { background: var(--mid); width: 100%; }
.bar-wasted  { background: rgba(180,100,100,0.5); width: 65%; }
.spend-note { font-size: 11px; color: rgba(242,237,228,0.35); margin-top: 4px; }
.spend-divider { height: 1px; background: rgba(214,199,176,0.1); }
.spend-summary { text-align: center; padding-top: 4px; }
.spend-summary-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.spend-summary-label { font-size: 12px; color: rgba(242,237,228,0.45); }
.platforms { background: var(--cream); }
.platforms-inner { max-width: 1100px; margin: 0 auto; }
.platforms-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.platform-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.platform-card { background: var(--white); border: 1.5px solid var(--tan); border-radius: 6px; padding: 28px 24px; transition: border-color 0.2s, transform 0.15s; }
.platform-card:hover { border-color: var(--mid); transform: translateY(-2px); }
.platform-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 1rem; }
.platform-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.platform-logo.google { background: #fef3f2; }
.platform-logo.meta   { background: #f0f4ff; }
.platform-logo.lsa    { background: #f0faf3; }
.platform-logo.bing   { background: #f0f8ff; }
.platform-name { font-size: 16px; font-weight: 600; color: var(--dark); }
.platform-type { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.platform-desc { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }
.platform-best { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); background: rgba(79,111,82,0.08); padding: 4px 10px; border-radius: 2px; margin-top: 10px; }

/* ─────────────────────────────────────────
   LOCAL SEO PAGE
───────────────────────────────────────── */
.seo-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.sc-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 160px; }
.cb-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.cb-bar { width: 100%; background: rgba(79,111,82,0.35); border-radius: 3px 3px 0 0; }
.cb-bar.highlight { background: var(--mid); }
.cb-month { font-size: 10px; color: rgba(242,237,228,0.45); font-weight: 500; white-space: nowrap; }
.trades-section { background: var(--cream); }
.trades-inner { max-width: 1100px; margin: 0 auto; }
.trade-pill { background: var(--white); border: 1.5px solid var(--tan); border-radius: var(--radius); padding: 12px 18px; font-size: 14px; font-weight: 500; color: var(--dark); text-align: center; transition: border-color 0.2s, background 0.2s, transform 0.15s; cursor: default; }
.trade-pill:hover { border-color: var(--mid); background: var(--dark); color: var(--cream); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   SOCIAL MEDIA PAGE
───────────────────────────────────────── */
.social-feed { display: flex; flex-direction: column; gap: 8px; }
.feed-post { background: rgba(242,237,228,0.06); border: 1px solid rgba(214,199,176,0.1); border-radius: 6px; padding: 14px 16px; }
.feed-post.featured { background: rgba(79,111,82,0.18); border-color: rgba(79,111,82,0.35); }
.feed-post-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feed-avatar { width: 34px; height: 34px; min-width: 34px; background: var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--cream); }
.feed-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.feed-time { font-size: 11px; color: rgba(242,237,228,0.45); }
.feed-img { background: rgba(79,111,82,0.25); border-radius: 4px; padding: 20px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tan); text-align: center; margin-bottom: 10px; }
.feed-body { font-size: 12px; font-weight: 300; color: rgba(242,237,228,0.75); line-height: 1.55; margin-bottom: 10px; }
.feed-actions { display: flex; gap: 14px; }
.feed-action { font-size: 11px; color: rgba(242,237,228,0.45); }
.feed-action.active { color: var(--tan); font-weight: 500; }
.content-calendar { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 28px 24px; }
.cal-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.cal-month { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 4px; }
.cal-day-name { font-size: 10px; font-weight: 600; color: rgba(242,237,228,0.4); text-align: center; padding: 4px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day { background: rgba(242,237,228,0.04); border-radius: 3px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(242,237,228,0.5); }
.cal-day.empty { background: transparent; }
.cal-day.has-post { background: rgba(79,111,82,0.25); color: var(--cream); }
.cal-day.has-post.featured { background: rgba(79,111,82,0.5); color: var(--cream); font-weight: 600; }
.cal-legend { display: flex; gap: 16px; margin-top: 12px; }
.cal-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(242,237,228,0.55); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.dot-post { background: rgba(79,111,82,0.25); }
.dot-featured { background: rgba(79,111,82,0.5); }
.content-types { background: var(--cream); }
.content-types-inner { max-width: 1100px; margin: 0 auto; }
.ct-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--tan); border-radius: 6px; overflow: hidden; margin-top: 52px; }
.ct-card { background: var(--white); padding: 36px 30px; transition: background 0.25s; }
.ct-card:hover { background: var(--dark); }
.ct-card:hover .ct-title { color: var(--cream); }
.ct-card:hover .ct-body  { color: rgba(242,237,228,0.6); }
.ct-emoji { font-size: 28px; line-height: 1; margin-bottom: 1rem; }
.ct-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; transition: color 0.25s; }
.ct-body  { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.25s; }
.platform-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-top: 10px; }
.included-tag { color: var(--mid); background: rgba(79,111,82,0.08); }
.addon-tag { color: var(--text-muted); background: rgba(214,199,176,0.3); }
.platform-logo.fb { background: #e7f0ff; }
.platform-logo.ig { background: #fef0f8; }
.platform-logo.nd { background: #fff3e0; }
.platform-logo.li { background: #e8f4ff; }

/* ─────────────────────────────────────────
   CONTENT MARKETING PAGE
───────────────────────────────────────── */
.blog-mockup { display: flex; flex-direction: column; gap: 8px; }
.blog-post-card { background: rgba(242,237,228,0.06); border: 1px solid rgba(214,199,176,0.1); border-radius: 6px; padding: 14px 16px; }
.blog-post-card.featured { background: rgba(79,111,82,0.2); border-color: rgba(79,111,82,0.4); }
.blog-post-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 6px; }
.blog-post-title { font-size: 13px; font-weight: 500; color: var(--cream); line-height: 1.45; margin-bottom: 8px; }
.blog-post-meta { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(242,237,228,0.45); gap: 8px; flex-wrap: wrap; }
.blog-post-meta .ranking { color: #6fcf97; font-weight: 600; }
.traffic-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.tv-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.traffic-bars { display: flex; align-items: flex-end; gap: 5px; height: 140px; }
.t-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; justify-content: flex-end; }
.t-bar { width: 100%; background: rgba(79,111,82,0.35); border-radius: 3px 3px 0 0; }
.t-bar.highlight { background: var(--mid); }
.t-bar-label { font-size: 9px; color: rgba(242,237,228,0.4); font-weight: 500; white-space: nowrap; }
.traffic-note { font-size: 11px; color: rgba(242,237,228,0.35); margin-top: 16px; line-height: 1.5; }

/* ─────────────────────────────────────────
   EMAIL MARKETING PAGE
───────────────────────────────────────── */
.email-client-bar { display: flex; align-items: center; gap: 10px; background: rgba(242,237,228,0.08); border-radius: 6px 6px 0 0; padding: 10px 14px; border-bottom: 1px solid rgba(214,199,176,0.1); }
.email-client-dots { display: flex; gap: 5px; }
.ec-dot { width: 10px; height: 10px; border-radius: 50%; }
.ec-dot.r { background: rgba(236,100,75,0.6); }
.ec-dot.y { background: rgba(255,189,46,0.6); }
.ec-dot.g { background: rgba(39,201,63,0.5); }
.email-client-label { font-size: 11px; color: rgba(242,237,228,0.5); }
.email-preview { background: rgba(242,237,228,0.04); border: 1px solid rgba(214,199,176,0.1); border-radius: 0 0 6px 6px; overflow: hidden; }
.email-meta { padding: 14px 16px; border-bottom: 1px solid rgba(214,199,176,0.1); display: flex; flex-direction: column; gap: 6px; }
.email-meta-row { display: flex; gap: 12px; }
.em-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,237,228,0.35); min-width: 36px; padding-top: 1px; flex-shrink: 0; }
.em-val { font-size: 12px; color: rgba(242,237,228,0.6); font-weight: 300; line-height: 1.4; }
.em-val.subject { color: var(--cream); font-weight: 500; }
.email-body-mock { background: var(--white); margin: 12px; border-radius: 4px; overflow: hidden; }
.emb-header { background: var(--dark); padding: 16px 20px; }
.emb-logo-mock { width: 80px; height: 10px; background: rgba(214,199,176,0.3); border-radius: 2px; }
.emb-content { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.emb-hero-img { background: var(--tan); border-radius: 4px; padding: 24px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(43,43,43,0.4); }
.emb-heading { height: 14px; background: var(--tan); border-radius: 2px; opacity: 0.5; }
.emb-line { height: 8px; background: rgba(43,43,43,0.1); border-radius: 2px; }
.emb-line.short { width: 65%; }
.emb-btn { height: 32px; background: var(--dark); border-radius: var(--radius); width: 50%; margin-top: 4px; }
.emb-footer { background: var(--cream); padding: 10px 20px; display: flex; justify-content: space-between; }
.emb-footer-text { font-size: 9px; color: var(--text-muted); }
.roi-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.rv-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.roi-channels { display: flex; flex-direction: column; gap: 16px; }
.roi-row { display: flex; flex-direction: column; gap: 7px; }
.roi-row-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.roi-name { font-size: 13px; font-weight: 500; color: rgba(242,237,228,0.65); }
.roi-val { font-size: 12px; font-weight: 600; color: rgba(242,237,228,0.55); white-space: nowrap; }
.roi-val.highlight { color: #6fcf97; }
.roi-bar-wrap { height: 10px; background: rgba(255,255,255,0.06); border-radius: 5px; overflow: hidden; }
.roi-bar { height: 100%; border-radius: 5px; }
.bar-email  { background: var(--mid); width: 100%; }
.bar-seo    { background: rgba(79,111,82,0.5); width: 52%; }
.bar-paid   { background: rgba(214,199,176,0.25); width: 12%; }
.bar-social { background: rgba(214,199,176,0.15); width: 8%; }
.roi-divider { height: 1px; background: rgba(214,199,176,0.1); }
.roi-note { font-size: 10px; color: rgba(242,237,228,0.3); margin-top: 8px; line-height: 1.5; }

/* ─────────────────────────────────────────
   WEBSITE DESIGN PAGE
───────────────────────────────────────── */
.browser-bar { background: rgba(242,237,228,0.08); border-radius: 6px 6px 0 0; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(214,199,176,0.1); }
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: rgba(236,100,75,0.6); }
.dot-yellow { background: rgba(255,189,46,0.6); }
.dot-green  { background: rgba(39,201,63,0.5); }
.browser-url { font-size: 11px; color: rgba(242,237,228,0.4); font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.site-mockup { background: var(--white); border-radius: 0 0 6px 6px; overflow: hidden; }
.site-hero-mock { background: var(--dark); padding: 20px 16px; display: flex; flex-direction: column; gap: 8px; }
.site-hero-mock-badge { height: 8px; width: 80px; background: rgba(79,111,82,0.5); border-radius: 2px; }
.site-hero-mock-h1  { height: 16px; width: 85%; background: rgba(242,237,228,0.7); border-radius: 3px; }
.site-hero-mock-h1b { height: 16px; width: 65%; background: rgba(242,237,228,0.7); border-radius: 3px; }
.site-hero-mock-sub  { height: 8px; width: 95%; background: rgba(242,237,228,0.25); border-radius: 2px; }
.site-hero-mock-sub2 { height: 8px; width: 75%; background: rgba(242,237,228,0.25); border-radius: 2px; }
.site-hero-mock-btn { height: 28px; width: 120px; background: var(--cream); border-radius: var(--radius); margin-top: 4px; }
.site-features-mock { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--tan); }
.site-feature-card { background: var(--white); padding: 14px 12px; display: flex; flex-direction: column; gap: 6px; }
.sfc-icon { width: 24px; height: 24px; background: var(--cream); border-radius: 6px; margin-bottom: 2px; }
.sfc-line { height: 6px; background: rgba(43,43,43,0.12); border-radius: 2px; width: 100%; }
.sfc-line.short { width: 75%; }
.sfc-line.shorter { width: 50%; }
.site-perf-row { display: flex; gap: 2px; background: var(--tan); }
.site-perf-chip { flex: 1; background: var(--white); padding: 10px 8px; text-align: center; }
.site-perf-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--mid); line-height: 1; margin-bottom: 3px; }
.site-perf-label { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.score-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(214,199,176,0.12); border-radius: 8px; padding: 36px 32px; }
.sv-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 24px; }
.score-rows { display: flex; flex-direction: column; gap: 14px; }
.score-row { display: flex; flex-direction: column; gap: 6px; }
.score-row-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.score-name { font-size: 12px; font-weight: 500; color: rgba(242,237,228,0.6); }
.score-val { font-size: 12px; font-weight: 700; white-space: nowrap; }
.score-val.good { color: #6fcf97; }
.score-val.bad  { color: rgba(236,100,75,0.8); }
.score-bar-wrap { height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.score-bar { height: 100%; border-radius: 4px; }
.score-bar.bar-good { background: var(--mid); }
.score-bar.bar-bad  { background: rgba(180,80,80,0.45); }
.score-divider { height: 1px; background: rgba(214,199,176,0.1); margin: 4px 0; }
.score-note { font-size: 10px; color: rgba(242,237,228,0.3); line-height: 1.5; }
.builds { background: var(--white); }
.builds-inner { max-width: 1100px; margin: 0 auto; }
.builds-header { text-align: center; margin-bottom: 52px; }
.builds-header .section-label { justify-content: center; }
.builds-header .section-label::before { display: none; }
.builds-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.build-card { background: var(--cream); border: 1.5px solid var(--tan); border-radius: 6px; padding: 28px 24px; transition: border-color 0.2s, transform 0.15s; }
.build-card:hover { border-color: var(--mid); transform: translateY(-2px); }
.build-icon { width: 44px; height: 44px; background: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.build-icon svg { width: 20px; height: 20px; stroke: var(--mid); }
.build-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; }
.build-body  { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.build-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); background: rgba(79,111,82,0.08); padding: 4px 10px; border-radius: 2px; }

/* ─────────────────────────────────────────
   ANALYTICS PAGE — REPORT DASHBOARD MOCKUP
───────────────────────────────────────── */
.report-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(214,199,176,0.12); border-radius: 6px; overflow: hidden; margin-bottom: 16px; }
.report-metric { background: rgba(242,237,228,0.05); padding: 16px 14px; }
.rm-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 4px; }
.rm-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(214,199,176,0.6); margin-bottom: 6px; }
.rm-trend { font-size: 11px; font-weight: 500; color: #6fcf97; }
.report-sources { background: rgba(242,237,228,0.04); border: 1px solid rgba(214,199,176,0.1); border-radius: 6px; padding: 16px; }
.rs-label { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(214,199,176,0.5); margin-bottom: 12px; }
.rs-rows { display: flex; flex-direction: column; gap: 10px; }
.rs-row { display: flex; align-items: center; gap: 10px; }
.rs-name { font-size: 11px; font-weight: 500; color: rgba(242,237,228,0.6); width: 100px; min-width: 100px; }
.rs-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rs-bar { height: 100%; background: var(--mid); border-radius: 3px; }
.rs-bar-dim { background: rgba(79,111,82,0.45); }
.rs-pct { font-size: 11px; font-weight: 700; color: rgba(242,237,228,0.7); width: 32px; text-align: right; }

/* ─────────────────────────────────────────
   GRAPHIC DESIGN PAGE — DESIGN PROOF MOCKUP
───────────────────────────────────────── */
.proof-cards-row { display: flex; gap: 14px; align-items: center; justify-content: center; padding: 12px 0 20px; }
.proof-card-front { background: var(--cream); border-radius: 6px; padding: 18px 16px; width: 168px; min-width: 168px; height: 98px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.pcf-top { display: flex; align-items: flex-start; gap: 10px; }
.pcf-logo { width: 28px; height: 28px; min-width: 28px; background: linear-gradient(135deg, var(--mid), var(--dark)); border-radius: 5px; }
.pcf-name-lines { display: flex; flex-direction: column; gap: 6px; padding-top: 3px; }
.pcf-name { height: 9px; width: 88px; background: var(--dark); border-radius: 2px; opacity: 0.65; }
.pcf-title { height: 6px; width: 60px; background: var(--mid); border-radius: 2px; opacity: 0.45; }
.pcf-contact { display: flex; flex-direction: column; gap: 4px; }
.pcf-contact-line { height: 5px; background: rgba(31,61,43,0.18); border-radius: 2px; }
.pcf-contact-line.w80 { width: 80%; }
.pcf-contact-line.w60 { width: 58%; }
.proof-card-back { background: var(--mid); border-radius: 6px; width: 88px; min-width: 88px; height: 98px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.proof-card-back-mark { width: 32px; height: 32px; border-radius: 50%; background: rgba(242,237,228,0.2); }
.proof-status-row { display: flex; align-items: center; justify-content: space-between; padding-top: 4px; }
.proof-approved { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: #6fcf97; }
.proof-approved-dot { width: 7px; height: 7px; min-width: 7px; background: #6fcf97; border-radius: 50%; }
.proof-files { display: flex; align-items: center; gap: 7px; }
.proof-files-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(214,199,176,0.5); }
.proof-file-chip { background: rgba(242,237,228,0.1); border: 1px solid rgba(214,199,176,0.28); border-radius: 3px; padding: 3px 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: rgba(242,237,228,0.7); }
.proof-file-chip.is-ai { background: rgba(255,154,0,0.15); border-color: rgba(255,180,60,0.4); color: rgba(255,200,80,0.95); }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-section { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: var(--nav-h); }
.contact-left { background: var(--dark); padding: 72px 8%; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.cl-orb { position: absolute; bottom: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(79,111,82,0.2); pointer-events: none; }
.cl-orb2 { position: absolute; top: -40px; left: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(214,199,176,0.05); pointer-events: none; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.contact-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--tan); }
h1.contact-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--cream); margin-bottom: 1.25rem; }
h1.contact-headline em { font-style: italic; color: var(--tan); }
.contact-sub { font-size: 16px; font-weight: 300; color: rgba(242,237,228,0.65); line-height: 1.75; max-width: 380px; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.cd-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(79,111,82,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cd-icon svg { width: 18px; height: 18px; stroke: var(--tan); }
.cd-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,237,228,0.4); margin-bottom: 3px; }
.cd-value { font-size: 16px; font-weight: 500; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.cd-value:hover { color: var(--tan); }
.expect-block { border-top: 1px solid rgba(214,199,176,0.15); padding-top: 36px; }
.expect-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.expect-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.6); line-height: 1.5; }
.expect-list li::before { content: '✓'; color: var(--mid); font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.contact-right { background: var(--white); padding: 72px 8%; display: flex; flex-direction: column; justify-content: center; }
.form-heading { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.form-sub { font-size: 14px; font-weight: 300; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }
.wpcf7-form, .contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label, .wpcf7-form label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select,
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea, .wpcf7-form select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--tan); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300; color: var(--text);
  background: var(--cream); outline: none; transition: border-color 0.2s, background 0.2s; min-height: 48px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form input[type="tel"]:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { border-color: var(--mid); background: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder, .wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder { color: rgba(43,43,43,0.35); }
.form-group textarea, .wpcf7-form textarea { min-height: 130px; resize: vertical; }
.form-group select, .wpcf7-form select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235a5a5a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit, .wpcf7-form input[type="submit"], .wpcf7-submit { background: var(--dark); color: var(--cream); padding: 15px 32px; border: none; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; min-height: 52px; width: 100%; text-align: center; }
.form-submit:hover, .wpcf7-form input[type="submit"]:hover, .wpcf7-submit:hover { background: var(--mid); transform: translateY(-1px); }
.wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.wpcf7-response-output { font-size: 14px; font-weight: 300; padding: 12px 16px; border-radius: var(--radius); margin-top: 8px; border: none !important; }
.wpcf7-mail-sent-ok { background: rgba(79,111,82,0.1); color: var(--dark); }
.wpcf7-mail-sent-ng, .wpcf7-aborted { background: rgba(192,57,43,0.08); color: #c0392b; }

/* ─────────────────────────────────────────
   BLOG PAGE
───────────────────────────────────────── */
.page-header { background: var(--dark); padding: calc(var(--nav-h) + 60px) 8% 60px; position: relative; overflow: hidden; }
.page-header-inner { max-width: 680px; position: relative; z-index: 2; }
.ph-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.ph-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--tan); }
h1.ph-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
h1.ph-title em { font-style: italic; color: var(--tan); }
.ph-sub { font-size: 16px; font-weight: 300; color: rgba(242,237,228,0.65); line-height: 1.7; max-width: 480px; }
.ph-orb { position: absolute; top: -80px; right: -60px; width: 340px; height: 340px; border-radius: 50%; background: rgba(79,111,82,0.15); pointer-events: none; }
.filter-bar { background: var(--white); border-bottom: 1px solid var(--tan); padding: 0 8%; position: sticky; top: var(--nav-h); z-index: 50; }
.filter-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.filter-bar-inner::-webkit-scrollbar { display: none; }
.cat-btn { padding: 16px 20px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: var(--text-muted); background: none; border: none; border-bottom: 2.5px solid transparent; cursor: pointer; white-space: nowrap; transition: color 0.2s, border-color 0.2s; min-height: 52px; }
.cat-btn:hover { color: var(--dark); }
.cat-btn.active { color: var(--dark); border-bottom-color: var(--dark); font-weight: 600; }
.blog-section { max-width: 1200px; margin: 0 auto; padding: 56px 8%; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.posts-grid .post-card:first-child { grid-column: 1 / -1; flex-direction: row; }
.posts-grid .post-card:first-child .post-img { width: 55%; flex-shrink: 0; height: auto; min-height: 340px; }
.posts-grid .post-card:first-child .post-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.posts-grid .post-card:first-child .post-title { font-size: 1.65rem; }
.posts-grid .post-card:first-child .post-excerpt { font-size: 15px; -webkit-line-clamp: 4; }
.post-card { background: var(--white); border: 1px solid var(--tan); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.post-card:hover { border-color: var(--mid); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(31,61,43,0.08); }
.post-card.hidden { display: none; }
.post-img { height: 200px; width: 100%; background: var(--mid); position: relative; overflow: hidden; flex-shrink: 0; }
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-img-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--mid) 0%, var(--dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.post-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,61,43,0.35) 0%, transparent 50%); }
.post-img-cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--dark); color: var(--cream); padding: 4px 10px; border-radius: 2px; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-date { font-size: 12px; color: var(--text-muted); font-weight: 300; margin-bottom: 10px; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.post-excerpt { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--mid); margin-top: auto; }
.post-read-more svg { width: 13px; height: 13px; transition: transform 0.2s; }
.post-card:hover .post-read-more svg { transform: translateX(3px); }
.no-results { display: none; text-align: center; padding: 80px 0; }
.no-results.visible { display: block; }
.no-results h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.no-results p { font-size: 15px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   SINGLE POST PAGE
───────────────────────────────────────── */
.article-hero { background: var(--dark); padding: calc(var(--nav-h) + 72px) 8% 80px; position: relative; overflow: hidden; }
.article-hero-inner { max-width: 780px; position: relative; z-index: 2; }
.article-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 2rem; }
.am-item { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.6); }
.am-item svg { stroke: rgba(242,237,228,0.45); flex-shrink: 0; }
.am-sep { color: rgba(242,237,228,0.25); font-size: 14px; }

.article-wrap { max-width: 1100px; margin: 0 auto; padding: 0 8% 80px; }
.article-featured-img { margin: 56px 0 0; border-radius: 8px; overflow: hidden; max-height: 520px; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; margin-top: 56px; align-items: start; }

.article-toc { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--cream); border: 1px solid var(--tan); border-radius: 6px; padding: 24px 20px; }
.toc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.toc-label::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--mid); }
#toc-nav { display: flex; flex-direction: column; gap: 2px; }
#toc-nav a { font-size: 13px; font-weight: 400; color: var(--text-muted); text-decoration: none; padding: 5px 8px; border-radius: 3px; line-height: 1.4; transition: background 0.15s, color 0.15s; display: block; }
#toc-nav a:hover { background: var(--white); color: var(--dark); }
#toc-nav a.toc-active { background: var(--dark); color: var(--cream); font-weight: 500; }
#toc-nav a.toc-h3 { padding-left: 20px; font-size: 12px; }

.article-content { min-width: 0; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--dark); margin: 2.5rem 0 1rem; line-height: 1.25; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.15rem; font-weight: 600; color: var(--dark); margin: 2rem 0 0.75rem; line-height: 1.3; }
.article-content h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin: 1.5rem 0 0.5rem; }
.article-content p { font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.85; margin-bottom: 1.5rem; }
.article-content ul, .article-content ol { margin: 0 0 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 8px; }
.article-content li { font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.75; }
.article-content ul li::marker { color: var(--mid); }
.article-content ol li::marker { font-weight: 600; color: var(--mid); }
.article-content strong { font-weight: 600; color: var(--dark); }
.article-content em { font-style: italic; }
.article-content a { color: var(--mid); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.article-content a:hover { color: var(--dark); }
.article-content blockquote { border-left: 3px solid var(--mid); margin: 2rem 0; padding: 1rem 1.5rem; background: var(--cream); border-radius: 0 4px 4px 0; }
.article-content blockquote p { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--dark); margin: 0; line-height: 1.65; }
.article-content img { max-width: 100%; border-radius: 6px; margin: 1.5rem 0; }
.article-content hr { border: none; border-top: 1px solid var(--tan); margin: 2.5rem 0; }
.article-content .wp-block-table table, .article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 15px; }
.article-content table th { background: var(--dark); color: var(--cream); font-weight: 600; padding: 10px 14px; text-align: left; }
.article-content table td { padding: 10px 14px; border-bottom: 1px solid var(--tan); font-weight: 300; }
.article-content table tr:nth-child(even) td { background: var(--cream); }
.article-content code { font-family: monospace; background: var(--cream); border: 1px solid var(--tan); padding: 2px 6px; border-radius: 3px; font-size: 14px; }
.article-content pre { background: var(--dark); color: var(--cream); padding: 20px 24px; border-radius: 6px; overflow-x: auto; margin-bottom: 1.5rem; }
.article-content pre code { background: none; border: none; padding: 0; font-size: 14px; color: inherit; }

.article-author { display: flex; align-items: flex-start; gap: 20px; background: var(--cream); border: 1px solid var(--tan); border-radius: 8px; padding: 28px 32px; margin-top: 56px; }
.aa-avatar { width: 56px; height: 56px; min-width: 56px; background: var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); flex-shrink: 0; }
.aa-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.aa-name { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.aa-bio { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

.article-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--tan); }
.share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-size: 11px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: var(--radius); text-decoration: none; border: 1.5px solid var(--tan); background: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.15s, border-color 0.15s, color 0.15s; color: var(--text-muted); }
.share-btn:hover { border-color: var(--mid); color: var(--dark); background: var(--cream); }
.share-btn.copied { border-color: var(--mid); color: var(--mid); }

.article-related { background: var(--white); padding: 88px 8%; }
.article-related-inner { max-width: 1100px; margin: 0 auto; }
.related-posts-grid { grid-template-columns: repeat(3,1fr); }
.related-posts-grid .post-card:first-child { grid-column: auto; flex-direction: column; }
.related-posts-grid .post-card:first-child .post-img { width: 100%; min-height: 200px; }
.related-posts-grid .post-card:first-child .post-body { padding: 24px; }
.related-posts-grid .post-card:first-child .post-title { font-size: 1.1rem; }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.25rem; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr; gap: 2px; }
  .how-step:first-child { border-radius: 4px 4px 0 0; }
  .how-step:last-child  { border-radius: 0 0 4px 4px; }
  .services-cards { grid-template-columns: repeat(2,1fr); }
  .cost-grid { grid-template-columns: 1fr; gap: 16px; }
  .cost-card, .cost-card:first-child, .cost-card:last-child { border-radius: 6px; }
  .cost-card+.cost-card { border-left: 1.5px solid var(--tan); }
  .cost-card.featured { margin: 0; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .origin-inner, .team-inner, .why-local-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .core-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: repeat(2,1fr); }
  .how-fits-inner { grid-template-columns: 1fr; gap: 48px; }
  .what-inner, .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .included-grid { grid-template-columns: repeat(2,1fr); }
  .for-who-header { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .contact-section { grid-template-columns: 1fr; min-height: auto; }
  .platforms-header { grid-template-columns: 1fr; gap: 32px; }
  .posts-grid { grid-template-columns: repeat(2,1fr); }
  .posts-grid .post-card:first-child { grid-column: 1 / -1; }
  .ct-grid { grid-template-columns: repeat(2,1fr); }
  .builds-grid { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-toc { position: static; }
  .related-posts-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────── */
@media (max-width: 767px) {
  :root { --nav-h: 64px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 2rem 8%; gap: 0; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.3s ease;
    border-top: 1px solid var(--tan);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--tan); }
  .nav-links li:last-child { border-bottom: none; margin-top: 1.5rem; }
  .nav-links a { width: 100%; padding: 14px 0; font-size: 16px; min-height: 52px; color: var(--text-muted); }
  .nav-links a:hover { color: var(--dark); }
  .nav-links .cta-link, .nav-links .cta-link a { width: 100%; }
  .nav-links .cta-link a { justify-content: center; padding: 14px; color: var(--cream); }
  .nav-phone-item a { border: none !important; padding: 14px 0 !important; color: var(--mid) !important; font-size: 16px !important; gap: 8px !important; }
  .nav-phone-item a:hover { background: transparent !important; border: none !important; }
  .dropdown-menu,
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu { position: static !important; transform: none !important; opacity: 1; visibility: visible; box-shadow: none; border: none; border-radius: 0; background: rgba(31,61,43,0.04); padding: 0; display: none; }
  .nav-item-dropdown.open .dropdown-menu { display: block !important; }
  .dropdown-menu li a { padding: 10px 24px; font-size: 15px; }
  .dropdown-menu li a .dd-icon { display: none; }
  .dropdown-divider { display: none; }

  .hero { padding: calc(var(--nav-h) + 44px + 40px) 6% 48px; min-height: auto; }
  .hero-left { width: 100%; }
  .hero-proof { flex-direction: column; gap: 0; }
  .proof-item { padding-right: 0; text-align: center; padding: 20px 0; border-bottom: 1px solid rgba(214,199,176,0.15); }
  .proof-item + .proof-item { padding-left: 0; border-left: none; }
  .proof-item:last-child { border-bottom: none; }

  section { padding: 60px 6%; }
  .who-grid { gap: 10px; }
  .trade-card { font-size: 14px; padding: 14px 12px; }
  .how-step { padding: 32px 24px; }
  .step-num { font-size: 3rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-cards { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 60px 6%; }
  .cta-banner .btn-primary { padding: 16px 28px; font-size: 15px; width: 100%; justify-content: center; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 6% 60px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat { padding-right: 0; text-align: center; padding: 20px 0; border-bottom: 1px solid rgba(214,199,176,0.15); }
  .hero-stat + .hero-stat { padding-left: 0; border-left: none; }
  .hero-stat:last-child { border-bottom: none; }
  .hero-cta-row, .hero-actions { flex-direction: column; align-items: center; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-ghost,
  .hero-actions .btn-primary, .hero-actions .btn-ghost,
  .btn-outline-light { width: 100%; max-width: 340px; justify-content: center; text-align: center; }

  .values-grid { grid-template-columns: 1fr; }
  .team-stats { flex-direction: column; gap: 20px; }
  .team-stat + .team-stat { padding-left: 0; border-left: none; border-top: 1px solid rgba(214,199,176,0.15); padding-top: 20px; }
  .approach-step { grid-template-columns: 56px 1fr; }

  .service-card-large { padding: 32px 24px; }
  .addon-grid { grid-template-columns: 1fr; }

  .included-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .trades-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .builds-grid { grid-template-columns: 1fr; }
  .chart-bars { height: 120px; }
  .traffic-bars { height: 100px; }

  .contact-left, .contact-right { padding: 52px 6%; }
  .form-row { grid-template-columns: 1fr; }

  .page-header { padding: calc(var(--nav-h) + 40px) 6% 40px; }
  .filter-bar { padding: 0 6%; }
  .cat-btn { padding: 14px 14px; font-size: 12px; }
  .blog-section { padding: 40px 6%; }
  .posts-grid { grid-template-columns: 1fr; gap: 20px; }
  .posts-grid .post-card:first-child { flex-direction: column; }
  .posts-grid .post-card:first-child .post-img { width: 100%; min-height: 220px; }
  .posts-grid .post-card:first-child .post-body { padding: 24px; }
  .posts-grid .post-card:first-child .post-title { font-size: 1.25rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { font-size: 12px; }
  .marquee-track { font-size: 12px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SMALL PHONES
───────────────────────────────────────── */
@media (max-width: 400px) {
  .who-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: repeat(2,1fr); }
}
