/* ═══════════════════════════════════════════════════════════
   CASCADE WEB STRATEGIES — main.css
   Mobile-first, no framework, no page builder dependency.
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Brand tokens ──────────────────────────────────────── */
:root {
  --green:        #1d6b43;
  --green-mid:    #40916c;
  --green-pale:   #eaf2ec;
  --green-glow:   rgba(29,107,67,0.18);
  --dark:         #1a1814;
  --dark-2:       #252320;
  --body:         #5a5650;
  --muted:        #8a8680;
  --bg:           #f7f5f0;
  --bg-subtle:    #f0ede6;
  --white:        #ffffff;
  --border:       #e0dcd4;
  --border-dark:  rgba(255,255,255,0.1);

  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', Arial, system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(26,24,20,0.08);
  --shadow-lg: 0 8px 32px rgba(26,24,20,0.12);
  --shadow-green: 0 8px 32px rgba(29,107,67,0.22);

  --max-w: 1200px;
  --pad-x: clamp(20px, 5vw, 72px);
  --section-v: clamp(64px, 9vw, 112px);
  --header-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #155230; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── 3. Skip link ─────────────────────────────────────────── */
.cws-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
}
.cws-skip-link:focus { top: 0; }

/* ── 4. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(32px, 5vw, 56px); font-style: italic; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-style: italic; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; font-family: var(--font-sans); font-weight: 600; }
p { max-width: 68ch; }
p + p { margin-top: .85em; }
strong { font-weight: 600; color: var(--dark); }

.cws-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}

/* ── 5. Layout helpers ────────────────────────────────────── */
.cws-container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.cws-section {
  padding-top: var(--section-v);
  padding-bottom: var(--section-v);
}
.cws-section--cream  { background: var(--bg); }
.cws-section--subtle { background: var(--bg-subtle); }
.cws-section--dark   { background: var(--dark); }
.cws-section--dark h1,
.cws-section--dark h2,
.cws-section--dark h3,
.cws-section--dark h4 { color: var(--white); }
.cws-section--dark p  { color: #d4d0c8; }
.cws-section--dark .cws-eyebrow { color: var(--green-mid); }

.cws-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cws-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cws-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cws-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── 6. Buttons ───────────────────────────────────────────── */
.cws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.cws-btn:hover, .cws-btn:focus-visible {
  background: #155230;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.cws-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.cws-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  box-shadow: none;
}
.cws-btn--sm { padding: 10px 20px; font-size: .875rem; }
.cws-btn--lg { padding: 18px 36px; font-size: 1rem; }

/* ── 7. Header ────────────────────────────────────────────── */
.cws-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--dark);
  z-index: 500;
  transition: box-shadow .25s var(--ease);
}
.cws-header.is-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.25); }
.cws-header__inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.cws-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.cws-header-logo { height: 34px; width: auto; display: block; }
.cws-logo-svg    { height: 34px; width: auto; display: block; }

.cws-nav { margin-left: auto; }
.cws-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cws-nav__list a {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.cws-nav__list a:hover,
.cws-nav__list a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.cws-nav__phone-link {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}
.cws-nav__phone-link:hover { color: var(--white); }

.cws-nav__cta a {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.cws-nav__cta a:hover {
  background: #155230 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29,107,67,.35);
}

.cws-nav-toggle { display: none; }

/* ── 8. Hero sections ─────────────────────────────────────── */
.cws-hero {
  background: var(--dark);
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 100px));
  padding-bottom: clamp(56px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}
.cws-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,107,67,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle grain — breaks the flat corporate look */
.cws-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
.cws-hero .cws-container { position: relative; z-index: 1; }
.cws-hero__eyebrow { color: var(--green-mid); }
.cws-hero h1 { color: var(--white); max-width: 14ch; margin-bottom: 20px; }
.cws-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  margin-bottom: 36px;
}
.cws-hero__sub p { max-width: 52ch; }
.cws-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Inner page hero (smaller) */
.cws-hero--inner h1 { font-size: clamp(26px, 3.5vw, 44px); max-width: 20ch; }
.cws-hero--inner .cws-hero__sub { font-size: 1.0625rem; }

/* ── 9. Section headers ───────────────────────────────────── */
.cws-section-header { margin-bottom: 48px; }
.cws-section-header--center { text-align: center; }
.cws-section-header--center p { margin-left: auto; margin-right: auto; }
.cws-section-header h2 { margin-bottom: 12px; }
.cws-section-header p {
  font-size: 1.0625rem;
  color: var(--body);
  max-width: 58ch;
}

/* ── 10. Cards ────────────────────────────────────────────── */
.cws-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.cws-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.cws-card--green {
  background: var(--green-pale);
  border-color: rgba(29,107,67,.2);
}
.cws-card--dark {
  background: var(--dark-2);
  border-color: rgba(255,255,255,.08);
}
.cws-card--dark h3, .cws-card--dark h4 { color: var(--white); }
.cws-card--dark p { color: #d4d0c8; max-width: none; }
.cws-card--featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow-green);
  transform: translateY(-4px) scale(1.01);
}
.cws-card--featured:hover { transform: translateY(-7px) scale(1.01); }

.cws-card__icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.cws-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.cws-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cws-card p  { font-size: .9375rem; color: var(--body); max-width: none; }

/* ── 11. Check lists ──────────────────────────────────────── */
.cws-check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.cws-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--body);
  line-height: 1.55;
}
.cws-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  background: var(--green-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%231d6b43' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 10 8.5 14.5 16 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.cws-check-list--white li { color: rgba(255,255,255,.82); }
.cws-check-list--white li::before {
  background-color: rgba(29,107,67,.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2340916c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 10 8.5 14.5 16 7'/%3E%3C/svg%3E");
}

/* ── 12. Pricing cards ────────────────────────────────────── */
.cws-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.cws-plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cws-plan:hover { box-shadow: var(--shadow-green); transform: translateY(-5px); }
.cws-plan--featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-6px);
}
.cws-plan--featured:hover { transform: translateY(-10px); }
.cws-plan__head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.cws-plan--featured .cws-plan__head {
  background: var(--green);
  border-bottom-color: rgba(255,255,255,.15);
}
.cws-plan__badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(29,107,67,.12);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.cws-plan--featured .cws-plan__badge {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.cws-plan__name { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 4px; }
.cws-plan--featured .cws-plan__name { color: var(--white); }
.cws-plan__price {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -.02em;
}
.cws-plan--featured .cws-plan__price { color: var(--white); }
.cws-plan__period { font-size: .875rem; color: var(--muted); margin-top: 2px; }
.cws-plan--featured .cws-plan__period { color: rgba(255,255,255,.65); }
.cws-plan__desc { font-size: .875rem; color: var(--body); margin-top: 8px; }
.cws-plan--featured .cws-plan__desc { color: rgba(255,255,255,.72); }
.cws-plan__body { padding: 24px 28px; flex: 1; }
.cws-plan__body ul { display: flex; flex-direction: column; gap: 10px; }
.cws-plan__body li {
  font-size: .9rem;
  color: var(--body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cws-plan--featured .cws-plan__body li { border-bottom-color: var(--border); }
.cws-plan__body li:last-child { border-bottom: none; }
.cws-plan__body li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cws-plan__foot { padding: 20px 28px 28px; }
.cws-plan__foot .cws-btn { width: 100%; justify-content: center; }

/* ── 13. Stats stripe ─────────────────────────────────────── */
.cws-stats-stripe {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cws-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.cws-stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cws-stat:last-child { border-right: none; }
.cws-stat__val {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-style: italic;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.cws-stat__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--body);
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── 14. Process steps ────────────────────────────────────── */
.cws-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.cws-step:last-child { border-bottom: none; }
.cws-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  text-align: center;
}
.cws-step__content h3 { margin-bottom: 10px; }
.cws-step__note {
  margin-top: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
  font-style: italic;
  font-size: .9rem;
  color: var(--green);
}

/* ── 15. FAQ ──────────────────────────────────────────────── */
.cws-faq { display: flex; flex-direction: column; gap: 0; }
.cws-faq__item {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.cws-faq__item:first-child { padding-top: 0; }
.cws-faq__q {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cws-faq__a { font-size: .9375rem; color: rgba(255,255,255,.7); max-width: 66ch; }

/* ── 16. CTA bar ──────────────────────────────────────────── */
.cws-cta-bar {
  background: var(--dark);
  border-top: 3px solid var(--green);
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  text-align: center;
}
.cws-cta-bar h2 { color: var(--white); margin-bottom: 12px; }
.cws-cta-bar p { color: rgba(255,255,255,.72); margin: 0 auto 32px; max-width: 52ch; font-size: 1.0625rem; }
.cws-cta-bar__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── 17. Testimonials / quote ─────────────────────────────── */
.cws-quote-block {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(56px,8vw,100px) var(--pad-x);
}
.cws-quote-block::before {
  content: '\201C';
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--green);
  opacity: .5;
  margin-bottom: 8px;
}
.cws-quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cws-quote-block cite {
  font-style: normal;
  font-size: .875rem;
  color: var(--green-mid);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── 18. Two-col content blocks ───────────────────────────── */
.cws-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cws-split--reversed { direction: rtl; }
.cws-split--reversed > * { direction: ltr; }
.cws-split__text h2 { margin-bottom: 16px; }
.cws-split__text p { font-size: 1.0625rem; }
.cws-split__text p + p { margin-top: 12px; }
.cws-split__text .cws-btn { margin-top: 28px; }

/* ── 19. Credential cards ─────────────────────────────────── */
.cws-cred-card {
  padding: 16px 20px;
  border-left: 3px solid var(--green);
  background: var(--white);
  margin-bottom: 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.cws-cred-card:last-child { margin-bottom: 0; }
.cws-cred-card__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.cws-cred-card__val {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
}

/* ── Headshot (About page) ────────────────────────────────── */
.cws-split--about { grid-template-columns: 380px 1fr; align-items: start; gap: 72px; }
.cws-about-photo-col { position: sticky; top: 100px; }

.cws-headshot-wrap { position: relative; }
.cws-headshot {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.cws-headshot-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 14px;
  padding-left: 4px;
}
.cws-headshot-caption strong { font-size: .9375rem; color: var(--dark); font-family: var(--font-sans); }
.cws-headshot-caption span  { font-size: .8125rem; color: var(--muted); }

.cws-headshot-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: var(--bg-subtle);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cws-headshot-placeholder__inner {
  text-align: center;
  color: var(--muted);
}
.cws-headshot-placeholder__inner p { font-size: .875rem; margin-top: 10px; }

.cws-about-creds { margin-top: 36px; }

@media (max-width: 860px) {
  .cws-split--about { grid-template-columns: 1fr; }
  .cws-about-photo-col { position: static; max-width: 320px; }
}

/* ── 20. Services table rows ──────────────────────────────── */
.cws-add-on-table { width: 100%; border-collapse: collapse; }
.cws-add-on-table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.cws-add-on-table td {
  padding: 14px 16px;
  font-size: .9375rem;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cws-add-on-table tr:last-child td { border-bottom: none; }
.cws-add-on-table tr:hover td { background: var(--bg-subtle); }
.cws-add-on-table .price { font-weight: 700; color: var(--dark); white-space: nowrap; }

/* ── 21. Contact form ─────────────────────────────────────── */
.cws-form { display: flex; flex-direction: column; gap: 20px; }
.cws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cws-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}
.cws-form input,
.cws-form textarea,
.cws-form select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-size: .9375rem;
  transition: border-color .2s;
  width: 100%;
}
.cws-form input:focus,
.cws-form textarea:focus,
.cws-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,107,67,.12);
}
.cws-form textarea { resize: vertical; min-height: 120px; }
.cws-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  align-self: flex-start;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.cws-form button[type="submit"]:hover {
  background: #155230;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.cws-form-notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: .9375rem;
  border-left: 3px solid transparent;
}
.cws-form-notice--success {
  background: var(--green-pale);
  border-left-color: var(--green);
  color: var(--dark);
}
.cws-form-notice--error {
  background: #fdf2f2;
  border-left-color: #c0392b;
  color: var(--dark);
}
.cws-form-notice a { color: inherit; text-decoration: underline; }

/* ── 22. Contact info block ───────────────────────────────── */
.cws-contact-item { margin-bottom: 24px; }
.cws-contact-item:last-child { margin-bottom: 0; }
.cws-contact-item__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.cws-contact-item__val {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

/* ── 22b. Testimonials ────────────────────────────────────── */
.cws-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.cws-testimonial__quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
  font-style: italic;
  margin-bottom: 20px;
  max-width: none;
}
.cws-testimonial__quote::before { content: '\201C'; }
.cws-testimonial__quote::after  { content: '\201D'; }
.cws-testimonial__attr strong { display: block; font-weight: 600; color: var(--dark); font-size: .9375rem; }
.cws-testimonial__attr span   { font-size: .85rem; color: var(--muted); }
@media (max-width: 640px) { .cws-testimonial-row { grid-template-columns: 1fr !important; } }

/* ── 22c. Why-list ────────────────────────────────────────── */
.cws-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.cws-why-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.cws-why-item:nth-last-child(-n+2) { border-bottom: none; }
.cws-why-item__num {
  display: block;
  font-family: var(--font-serif);
  font-size: .875rem;
  font-style: italic;
  color: var(--green);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.cws-why-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-sans);
  margin-bottom: 8px;
}
.cws-why-item__desc {
  font-size: .9375rem;
  color: var(--body);
  max-width: none;
  line-height: 1.65;
}

/* ── 23. Trades grid ──────────────────────────────────────── */
.cws-trades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.cws-trade-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 9px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: background .18s, border-color .18s;
  cursor: default;
}
.cws-trade-item:hover {
  background: var(--green-pale);
  border-color: rgba(29,107,67,.3);
}

/* ── 24. Back-to-top button ───────────────────────────────── */
#cws-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: var(--shadow-lg);
  z-index: 400;
}
#cws-back-top svg { width: 18px; height: 18px; stroke: var(--white); }
#cws-back-top.is-visible { opacity: 1; pointer-events: auto; }
#cws-back-top:hover { background: var(--green); transform: translateY(-3px); }

/* ── 25. Footer ───────────────────────────────────────────── */
.cws-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
}
.cws-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--pad-x) 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.cws-footer-logo { height: 38px; width: auto; }
.cws-footer__tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  line-height: 1.7;
  max-width: none;
}
.cws-footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.cws-footer__col-head {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.cws-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.cws-footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.cws-footer__col a:hover { color: var(--green-mid); }
.cws-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.cws-footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.cws-footer__social { display: flex; align-items: center; }
.cws-footer__social-link { color: rgba(255,255,255,.35); transition: color .2s; display: flex; align-items: center; }
.cws-footer__social-link:hover { color: rgba(255,255,255,.75); }

/* ── 26. Scroll reveal ────────────────────────────────────── */
.cws-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.cws-reveal.is-visible { opacity: 1; transform: none; }

/* ── 27. Landing page (google-review) ────────────────────── */
.cws-lp body { padding-top: 0; }
.cws-lp-topbar {
  background: var(--dark);
  padding: 16px var(--pad-x);
  text-align: center;
}
.cws-lp-topbar a { display: inline-block; }
.cws-lp-topbar .cws-footer-logo { height: 34px; margin: 0 auto; }
.cws-lp-hero {
  background: var(--dark);
  padding: 64px var(--pad-x) 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cws-lp-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(29,107,67,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cws-lp-hero h1 { color: var(--white); max-width: 18ch; margin: 12px auto 16px; }
.cws-lp-hero .cws-hero__sub { margin: 0 auto 36px; }
.cws-lp-booking {
  background: var(--bg);
  padding: 64px var(--pad-x);
}
.cws-lp-booking-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── 28. Blog / single post ───────────────────────────────── */
.cws-post { padding-top: calc(var(--header-h) + 56px); padding-bottom: var(--section-v); }
.cws-post__header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.cws-post__header h1 { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 16px; }
.cws-post__meta { font-size: .875rem; color: var(--muted); }
.cws-post__content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
}
.cws-post__content h2 { margin: 40px 0 14px; }
.cws-post__content h3 { margin: 28px 0 10px; }
.cws-post__content p  { margin-bottom: 16px; max-width: none; }
.cws-post__content ul, .cws-post__content ol { padding-left: 24px; margin-bottom: 16px; }
.cws-post__content li { margin-bottom: 6px; }
.cws-post__content a  { text-decoration: underline; text-underline-offset: 3px; }

/* ── 29. 404 ──────────────────────────────────────────────── */
.cws-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-v) var(--pad-x);
}
.cws-404 h1 { font-size: clamp(4rem, 12vw, 10rem); color: var(--green); margin-bottom: 12px; }
.cws-404 h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 16px; }

/* ── 30. Focus styles (accessibility) ────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--green); color: var(--white); }

/* ── 31. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cws-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cws-plan--featured { transform: none; }
  .cws-plan--featured:hover { transform: translateY(-5px); }
  .cws-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .cws-footer__nav { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; --section-v: 56px; }

  /* Nav: hamburger */
  .cws-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
  }
  .cws-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  .cws-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .cws-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .cws-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .cws-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark-2);
    padding: 24px 20px 32px;
    display: none;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .cws-nav.is-open { display: block; }
  .cws-nav__list { flex-direction: column; gap: 4px; }
  .cws-nav__list a { display: block; padding: 12px 16px; font-size: .9375rem; border-radius: var(--radius); }
  .cws-nav__phone { display: none; }
  .cws-nav__cta { margin-top: 12px; }
  .cws-nav__cta a { display: block; text-align: center; }

  /* Grids */
  .cws-grid-2, .cws-grid-3, .cws-grid-4 { grid-template-columns: 1fr; }
  .cws-split { grid-template-columns: 1fr; gap: 36px; }
  .cws-stats { grid-template-columns: 1fr 1fr; }
  .cws-stat { border-bottom: 1px solid var(--border); }
  .cws-stat:nth-child(odd)  { border-right: 1px solid var(--border); }
  .cws-stat:nth-child(even) { border-right: none; }
  .cws-stat:nth-last-child(-n+2) { border-bottom: none; }
  .cws-why-list { grid-template-columns: 1fr; }
  .cws-why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cws-why-item:last-child { border-bottom: none; }
  .cws-form-row { grid-template-columns: 1fr; }
  .cws-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .cws-lp-booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .cws-footer__nav { grid-template-columns: 1fr; gap: 28px; }
  .cws-footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .cws-stats { grid-template-columns: 1fr; }
  .cws-hero__actions { flex-direction: column; }
  .cws-hero__actions .cws-btn { width: 100%; justify-content: center; }
  .cws-cta-bar__actions { flex-direction: column; align-items: center; }
}

/* ─── Decorative section divider ────────────────────── */
.cws-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 160px;
}
.cws-divider::before,
.cws-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green);
  opacity: .45;
}
.cws-divider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ─── Pull quote / philosophy block ─────────────────── */
.cws-pull-quote {
  border-left: 3px solid var(--green);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
}
.cws-pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

/* ─── Icon feature row (visual service highlights) ──── */
.cws-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}
.cws-icon-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 200px;
}
.cws-icon-feature__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.cws-icon-feature__text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.cws-icon-feature__text span {
  font-size: .875rem;
  color: var(--body);
  line-height: 1.55;
}

/* ─── Decorative number (large background numeral) ───── */
.cws-deco-num {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--green);
  opacity: .08;
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: -16px;
  right: -8px;
}

/* ─── Stat callout (SA pages) ───────────────────────── */
.cws-stat-callout {
  background: var(--green);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.cws-stat-callout__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--white);
  line-height: 1.5;
  margin: 0;
  border: none;
  padding: 0;
}

/* ─── Body large (SA/trade intro paragraphs) ────────── */
.cws-body-lg {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--body);
}
