/* ============================================================
   Cleaning House — ch-style.css
   Primary stylesheet
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --ch-cream:        #F7F4EF;
  --ch-warm-white:   #FDFCFA;
  --ch-sage:         #6B8F71;
  --ch-sage-light:   #A8C5AD;
  --ch-sage-pale:    #E8F0E9;
  --ch-slate:        #3D4E4A;
  --ch-slate-mid:    #5A6B67;
  --ch-slate-light:  #8FA09C;
  --ch-sand:         #C9B99A;
  --ch-sand-light:   #E8DDD0;
  --ch-sand-pale:    #F5F0EA;
  --ch-mist:         #D4DDE0;
  --ch-sky:          #7AA7B8;
  --ch-sky-pale:     #EAF3F7;
  --ch-charcoal:     #252D2B;
  --ch-ink:          #1A211F;

  --ch-font-display: 'DM Serif Display', Georgia, serif;
  --ch-font-serif:   'Cormorant Garamond', Georgia, serif;
  --ch-font-body:    'DM Sans', system-ui, sans-serif;

  --ch-radius-sm:    6px;
  --ch-radius-md:    14px;
  --ch-radius-lg:    28px;
  --ch-radius-xl:    48px;
  --ch-radius-pill:  999px;

  --ch-shadow-soft:  0 4px 24px rgba(37,45,43,0.07);
  --ch-shadow-card:  0 8px 40px rgba(37,45,43,0.10);
  --ch-shadow-lift:  0 20px 60px rgba(37,45,43,0.14);

  --ch-transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ch-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --ch-max-width:    1200px;
  --ch-content-width: 780px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ch-font-body);
  background-color: var(--ch-warm-white);
  color: var(--ch-slate);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: var(--ch-font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--ch-font-body);
}

/* ── Typography ────────────────────────────────────────────── */
.ch-display-xl {
  font-family: var(--ch-font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ch-ink);
}

.ch-display-lg {
  font-family: var(--ch-font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ch-ink);
}

.ch-display-md {
  font-family: var(--ch-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ch-ink);
}

.ch-heading-lg {
  font-family: var(--ch-font-body);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ch-charcoal);
}

.ch-heading-md {
  font-family: var(--ch-font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ch-charcoal);
}

.ch-serif-body {
  font-family: var(--ch-font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ch-slate-mid);
}

.ch-body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ch-slate-mid);
}

.ch-label-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch-sage);
}

/* ── Layout Utilities ──────────────────────────────────────── */
.ch-container {
  max-width: var(--ch-max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ch-content-narrow {
  max-width: var(--ch-content-width);
  margin: 0 auto;
}

.ch-section-pad {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.ch-section-pad-sm {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.ch-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ch-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ch-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ch-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-text-center { text-align: center; }
.ch-text-left   { text-align: left; }
.ch-text-right  { text-align: right; }

/* ── Spacers ───────────────────────────────────────────────── */
.ch-spacer-xs  { height: 0.5rem; }
.ch-spacer-sm  { height: 1rem; }
.ch-spacer-md  { height: 2rem; }
.ch-spacer-lg  { height: 3rem; }
.ch-spacer-xl  { height: 4rem; }

/* ── Navigation ────────────────────────────────────────────── */
.ch-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--ch-transition);
}

.ch-nav-wrapper.ch-nav-scrolled {
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(37,45,43,0.08), var(--ch-shadow-soft);
}

.ch-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--ch-max-width);
  margin: 0 auto;
}

.ch-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.ch-nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ch-sage), var(--ch-sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.ch-nav-logo-text {
  font-family: var(--ch-font-display);
  font-size: 1.3rem;
  color: var(--ch-charcoal);
  letter-spacing: -0.01em;
}

.ch-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ch-nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ch-slate-mid);
  border-radius: var(--ch-radius-sm);
  transition: var(--ch-transition);
  position: relative;
}

.ch-nav-link:hover {
  color: var(--ch-charcoal);
  background: var(--ch-sand-pale);
}

.ch-nav-link.ch-nav-active {
  color: var(--ch-sage);
  font-weight: 500;
}

.ch-nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--ch-sage);
  color: white;
  border-radius: var(--ch-radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--ch-transition);
  margin-left: 0.5rem;
}

.ch-nav-cta:hover {
  background: var(--ch-slate);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107,143,113,0.35);
}

.ch-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.ch-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ch-slate);
  border-radius: 2px;
  transition: var(--ch-transition);
}

.ch-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--ch-warm-white);
  border-top: 1px solid var(--ch-sand-light);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: var(--ch-shadow-card);
}

.ch-mobile-menu.ch-menu-open {
  display: block;
}

.ch-mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  color: var(--ch-slate);
  border-bottom: 1px solid var(--ch-sand-pale);
  transition: var(--ch-transition);
}

.ch-mobile-nav-link:hover {
  color: var(--ch-sage);
  padding-left: 0.5rem;
}

.ch-mobile-nav-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.9rem;
  background: var(--ch-sage);
  color: white;
  text-align: center;
  border-radius: var(--ch-radius-md);
  font-weight: 500;
}

/* ── Buttons ───────────────────────────────────────────────── */
.ch-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--ch-sage);
  color: white;
  border-radius: var(--ch-radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ch-transition);
  cursor: pointer;
  border: none;
}

.ch-btn-primary:hover {
  background: var(--ch-slate);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,143,113,0.3);
}

.ch-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ch-sage);
  border: 1.5px solid var(--ch-sage);
  border-radius: var(--ch-radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ch-transition);
  cursor: pointer;
}

.ch-btn-secondary:hover {
  background: var(--ch-sage-pale);
  transform: translateY(-2px);
}

.ch-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  color: var(--ch-slate-mid);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--ch-transition);
  cursor: pointer;
}

.ch-btn-ghost:hover { color: var(--ch-sage); }

.ch-btn-ghost .ch-arrow {
  transition: var(--ch-transition);
}

.ch-btn-ghost:hover .ch-arrow {
  transform: translateX(4px);
}

/* ── Cards ─────────────────────────────────────────────────── */
.ch-card-base {
  background: var(--ch-warm-white);
  border-radius: var(--ch-radius-lg);
  overflow: hidden;
  box-shadow: var(--ch-shadow-card);
  transition: var(--ch-transition);
}

.ch-card-base:hover {
  transform: translateY(-4px);
  box-shadow: var(--ch-shadow-lift);
}

.ch-card-content-pad {
  padding: 2rem;
}

/* ── Section Headers ───────────────────────────────────────── */
.ch-section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ch-section-header .ch-label-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ch-section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--ch-sage), var(--ch-sky));
  border-radius: 2px;
  margin-top: 1.25rem;
}

/* ── Badges / Chips ────────────────────────────────────────── */
.ch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--ch-radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
}

.ch-badge-sage {
  background: var(--ch-sage-pale);
  color: var(--ch-sage);
}

.ch-badge-sky {
  background: var(--ch-sky-pale);
  color: var(--ch-sky);
}

.ch-badge-sand {
  background: var(--ch-sand-light);
  color: var(--ch-slate);
}

/* ── Images ────────────────────────────────────────────────── */
.ch-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ch-img-rounded {
  border-radius: var(--ch-radius-lg);
  overflow: hidden;
}

.ch-img-circle {
  border-radius: 50%;
  overflow: hidden;
}

/* ── Footer ────────────────────────────────────────────────── */
.ch-footer-main {
  background: var(--ch-charcoal);
  color: var(--ch-sand-light);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

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

.ch-footer-brand-text {
  font-family: var(--ch-font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.ch-footer-tagline {
  font-size: 0.9rem;
  color: var(--ch-slate-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.ch-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--ch-slate-light);
  margin-bottom: 0.6rem;
}

.ch-footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--ch-sage-light);
}

.ch-footer-heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-sand);
  margin-bottom: 1.25rem;
}

.ch-footer-link {
  display: block;
  font-size: 0.9rem;
  color: var(--ch-slate-light);
  margin-bottom: 0.6rem;
  transition: var(--ch-transition);
}

.ch-footer-link:hover {
  color: var(--ch-sage-light);
  padding-left: 0.25rem;
}

.ch-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ch-footer-copyright {
  font-size: 0.82rem;
  color: var(--ch-slate-light);
}

.ch-footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ch-footer-legal-link {
  font-size: 0.82rem;
  color: var(--ch-slate-light);
  transition: var(--ch-transition);
}

.ch-footer-legal-link:hover {
  color: var(--ch-sage-light);
}

/* ── Forms ─────────────────────────────────────────────────── */
.ch-form-group {
  margin-bottom: 1.25rem;
}

.ch-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ch-charcoal);
  margin-bottom: 0.5rem;
}

.ch-form-input,
.ch-form-select,
.ch-form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--ch-cream);
  border: 1.5px solid var(--ch-sand-light);
  border-radius: var(--ch-radius-md);
  font-size: 0.95rem;
  color: var(--ch-charcoal);
  transition: var(--ch-transition);
  outline: none;
  appearance: none;
}

.ch-form-input:focus,
.ch-form-select:focus,
.ch-form-textarea:focus {
  border-color: var(--ch-sage);
  background: var(--ch-warm-white);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.12);
}

.ch-form-input.ch-input-error,
.ch-form-select.ch-input-error,
.ch-form-textarea.ch-input-error {
  border-color: #c0392b;
  background: #fff5f5;
}

.ch-form-error-msg {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: none;
}

.ch-form-error-msg.ch-show { display: block; }

.ch-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.ch-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ch-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6B67' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── Accordion / FAQ ───────────────────────────────────────── */
.ch-accordion-item {
  border-bottom: 1px solid var(--ch-sand-light);
}

.ch-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ch-charcoal);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--ch-transition);
  gap: 1rem;
}

.ch-accordion-trigger:hover { color: var(--ch-sage); }

.ch-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ch-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ch-transition);
}

.ch-accordion-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--ch-sage);
  transition: var(--ch-transition);
}

.ch-accordion-item.ch-open .ch-accordion-icon {
  background: var(--ch-sage);
  transform: rotate(180deg);
}

.ch-accordion-item.ch-open .ch-accordion-icon svg {
  stroke: white;
}

.ch-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ch-accordion-body-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ch-slate-mid);
}

/* ── Checklist ─────────────────────────────────────────────── */
.ch-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.ch-checklist-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ch-sand-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ch-transition);
  flex-shrink: 0;
}

.ch-checklist-check.ch-checked {
  background: var(--ch-sage);
  border-color: var(--ch-sage);
}

.ch-checklist-check.ch-checked svg {
  opacity: 1;
}

.ch-checklist-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  opacity: 0;
  transition: var(--ch-transition);
}

.ch-checklist-label {
  font-size: 0.95rem;
  color: var(--ch-slate-mid);
  transition: var(--ch-transition);
  cursor: pointer;
}

.ch-checklist-label.ch-checked-label {
  text-decoration: line-through;
  color: var(--ch-slate-light);
}

/* ── Range Input ───────────────────────────────────────────── */
.ch-range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--ch-sand-light);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.ch-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ch-sage);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(107,143,113,0.35);
  transition: var(--ch-transition);
}

.ch-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ── Tabs ──────────────────────────────────────────────────── */
.ch-tabs-nav {
  display: flex;
  gap: 0.25rem;
  background: var(--ch-cream);
  border-radius: var(--ch-radius-pill);
  padding: 0.3rem;
  margin-bottom: 2rem;
  width: fit-content;
}

.ch-tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--ch-radius-pill);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ch-slate-mid);
  transition: var(--ch-transition);
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}

.ch-tab-btn.ch-tab-active {
  background: white;
  color: var(--ch-charcoal);
  font-weight: 500;
  box-shadow: var(--ch-shadow-soft);
}

.ch-tab-panel { display: none; }
.ch-tab-panel.ch-panel-active { display: block; }

/* ── Progress Bar ──────────────────────────────────────────── */
.ch-progress-bar-track {
  height: 8px;
  background: var(--ch-sand-light);
  border-radius: 4px;
  overflow: hidden;
}

.ch-progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ch-sage), var(--ch-sky));
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Star Rating ───────────────────────────────────────────── */
.ch-stars {
  display: flex;
  gap: 2px;
  color: #E8A838;
  font-size: 0.95rem;
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.ch-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 640px;
  background: var(--ch-charcoal);
  color: var(--ch-sand-light);
  border-radius: var(--ch-radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--ch-shadow-lift);
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ch-cookie-banner.ch-cookie-visible {
  transform: translateY(0);
}

.ch-cookie-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--ch-mist);
}

.ch-cookie-text a {
  color: var(--ch-sage-light);
  text-decoration: underline;
}

.ch-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ch-cookie-accept-btn {
  padding: 0.6rem 1.4rem;
  background: var(--ch-sage);
  color: white;
  border-radius: var(--ch-radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--ch-transition);
}

.ch-cookie-accept-btn:hover { background: var(--ch-sage-light); }

.ch-cookie-decline-btn {
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: var(--ch-slate-light);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ch-radius-pill);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--ch-transition);
}

.ch-cookie-decline-btn:hover { border-color: rgba(255,255,255,0.3); color: white; }

/* ── Back to Top ───────────────────────────────────────────── */
.ch-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--ch-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(107,143,113,0.35);
  transition: var(--ch-transition);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
}

.ch-back-to-top.ch-visible {
  opacity: 1;
  pointer-events: auto;
}

.ch-back-to-top:hover {
  background: var(--ch-slate);
  transform: translateY(-3px);
}

.ch-back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

/* ── Page Hero (Inner pages) ───────────────────────────────── */
.ch-inner-hero {
  background: linear-gradient(135deg, var(--ch-cream) 0%, var(--ch-sage-pale) 100%);
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.ch-inner-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,113,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ch-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ch-slate-light);
  margin-bottom: 1.5rem;
}

.ch-breadcrumb a:hover { color: var(--ch-sage); }

.ch-breadcrumb-sep {
  color: var(--ch-sand);
}

/* ── Prose / Article Content ───────────────────────────────── */
.ch-prose {
  max-width: 720px;
}

.ch-prose h2 {
  font-family: var(--ch-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ch-ink);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.ch-prose h3 {
  font-family: var(--ch-font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ch-charcoal);
  margin: 2rem 0 0.75rem;
}

.ch-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ch-slate-mid);
  margin-bottom: 1.25rem;
}

.ch-prose ul, .ch-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.ch-prose ul { list-style: disc; }
.ch-prose ol { list-style: decimal; }

.ch-prose li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ch-slate-mid);
  margin-bottom: 0.4rem;
}

.ch-prose strong {
  font-weight: 600;
  color: var(--ch-charcoal);
}

.ch-prose blockquote {
  border-left: 3px solid var(--ch-sage);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--ch-font-serif);
  font-size: 1.2rem;
  color: var(--ch-slate);
  font-style: italic;
}

.ch-article-img-wide {
  border-radius: var(--ch-radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
  aspect-ratio: 16 / 7;
}

.ch-article-img-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Utility classes ───────────────────────────────────────── */
.ch-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ch-hidden { display: none !important; }
.ch-relative { position: relative; }
.ch-overflow-hidden { overflow: hidden; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ch-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ch-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ch-nav-links, .ch-nav-cta { display: none; }
  .ch-nav-hamburger { display: flex; }

  .ch-grid-2, .ch-grid-3, .ch-grid-4 {
    grid-template-columns: 1fr;
  }

  .ch-form-row {
    grid-template-columns: 1fr;
  }

  .ch-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ch-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .ch-tabs-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .ch-cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ============================================
   INNER HERO
============================================ */
.ch-inner-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.ch-inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.ch-inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,45,43,0.72) 0%, rgba(61,78,74,0.5) 100%);
}
.ch-inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
}
.ch-inner-hero-eyebrow {
  font-family: var(--ch-font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch-sky);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.ch-inner-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.ch-inner-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* ============================================
   ABOUT US PAGE
============================================ */
.ch-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ch-about-story-images {
  position: relative;
}
.ch-about-story-img-main {
  width: 100%;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ch-about-story-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border-radius: 8px;
  border: 4px solid var(--ch-cream);
  aspect-ratio: 1;
  object-fit: cover;
}
.ch-about-story-text p {
  color: var(--ch-slate);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* TIMELINE */
.ch-timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 720px;
  margin: 2rem auto 0;
}
.ch-timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ch-sage), var(--ch-sky));
  opacity: 0.35;
}
.ch-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.ch-timeline-marker {
  position: absolute;
  left: -2.15rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ch-sage);
  border: 3px solid var(--ch-cream);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.25);
}
.ch-timeline-year {
  font-family: var(--ch-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ch-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.ch-timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ch-slate);
}
.ch-timeline-content p {
  font-size: 0.95rem;
  color: var(--ch-slate);
  opacity: 0.8;
  line-height: 1.65;
}

/* VALUES */
.ch-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.ch-value-card {
  background: #fff;
  border: 1px solid rgba(107,143,113,0.12);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ch-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,45,43,0.08);
}
.ch-value-icon {
  width: 48px;
  height: 48px;
  color: var(--ch-sage);
  margin-bottom: 1rem;
}
.ch-value-icon svg { width: 100%; height: 100%; }
.ch-value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--ch-slate);
}
.ch-value-card p {
  font-size: 0.93rem;
  color: var(--ch-slate);
  opacity: 0.8;
  line-height: 1.68;
}

/* TEAM */
.ch-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.ch-team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  box-shadow: 0 4px 20px rgba(37,45,43,0.07);
  transition: transform 0.25s ease;
}
.ch-team-card:hover { transform: translateY(-4px); }
.ch-team-photo-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.ch-team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-team-info {
  padding: 1.5rem;
}
.ch-team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--ch-slate);
}
.ch-team-role {
  font-family: var(--ch-font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ch-sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.75rem;
}
.ch-team-info p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ch-slate);
  opacity: 0.82;
}
.ch-team-detail {
  font-size: 0.8rem !important;
  opacity: 0.55 !important;
  margin-top: 0.5rem;
  font-style: italic;
}
.ch-about-team-note {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ch-slate);
  opacity: 0.75;
  line-height: 1.7;
}

/* PHILOSOPHY */
.ch-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ch-philosophy-text p {
  color: var(--ch-slate);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.ch-philosophy-quote {
  border-left: 3px solid var(--ch-sage);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--ch-font-serif);
  font-size: 1.15rem;
  color: var(--ch-slate);
  line-height: 1.6;
  font-style: italic;
}
.ch-philosophy-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--ch-font-sans);
  font-size: 0.82rem;
  font-style: normal;
  color: var(--ch-sage);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ch-philosophy-image {
  position: relative;
}
.ch-philosophy-image > img:first-child {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ch-philosophy-img-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 42%;
  border-radius: 8px;
  border: 4px solid var(--ch-cream);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ============================================
   CONTACT PAGE
============================================ */
.ch-contact-section { background: var(--ch-cream); }
.ch-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ch-contact-form-wrap h2 { margin-bottom: 0.75rem; }
.ch-contact-form-wrap > p {
  color: var(--ch-slate);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.ch-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ch-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ch-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ch-form-group label {
  font-family: var(--ch-font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ch-slate);
}
.ch-form-group label span { color: var(--ch-sage); margin-left: 2px; }
.ch-form-group input,
.ch-form-group select,
.ch-form-group textarea {
  font-family: var(--ch-font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(61,78,74,0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ch-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.ch-form-group input:focus,
.ch-form-group select:focus,
.ch-form-group textarea:focus {
  border-color: var(--ch-sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.12);
}
.ch-form-group input.ch-input-error,
.ch-form-group select.ch-input-error,
.ch-form-group textarea.ch-input-error {
  border-color: #c0392b;
}
.ch-field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1rem;
  font-family: var(--ch-font-sans);
}
.ch-captcha-group { margin-top: 0.5rem; }
.ch-captcha-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--ch-font-sans);
  font-size: 0.92rem;
  color: var(--ch-slate);
}
.ch-captcha-label input[type="checkbox"] { display: none; }
.ch-captcha-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(61,78,74,0.3);
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
}
.ch-captcha-label input:checked ~ .ch-captcha-box {
  background: var(--ch-sage);
  border-color: var(--ch-sage);
}
.ch-captcha-label input:checked ~ .ch-captcha-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ch-btn-full { width: 100%; justify-content: center; }
.ch-form-note {
  font-size: 0.8rem;
  color: var(--ch-slate);
  opacity: 0.6;
  line-height: 1.5;
}
.ch-form-note a { color: var(--ch-sage); }

/* Contact Info */
.ch-contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.ch-contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(37,45,43,0.06);
}
.ch-contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--ch-slate);
}
.ch-contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ch-contact-details-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ch-contact-details-list li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--ch-sage);
  margin-top: 2px;
}
.ch-contact-details-list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ch-slate);
  opacity: 0.6;
  margin-bottom: 0.15rem;
}
.ch-contact-details-list span {
  font-size: 0.92rem;
  color: var(--ch-slate);
  line-height: 1.6;
}
.ch-contact-details-list a { color: var(--ch-slate); text-decoration: none; }
.ch-contact-details-list a:hover { color: var(--ch-sage); }
.ch-hours-table { width: 100%; border-collapse: collapse; }
.ch-hours-table td {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--ch-slate);
  border-bottom: 1px solid rgba(61,78,74,0.08);
}
.ch-hours-table td:last-child { text-align: right; font-weight: 500; }
.ch-hours-note { font-size: 0.82rem; color: var(--ch-slate); opacity: 0.6; margin-top: 0.75rem; line-height: 1.5; }
.ch-service-area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin: 0.5rem 0;
}
.ch-service-area-list li {
  font-size: 0.88rem;
  color: var(--ch-sage);
  background: rgba(107,143,113,0.1);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-weight: 500;
}
.ch-contact-map-section { padding: 0 0 4rem; }
.ch-contact-map-section h2 { margin-bottom: 1.5rem; }
.ch-map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(37,45,43,0.1); }

/* ============================================
   THANK YOU PAGE
============================================ */
.ch-thankyou-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--ch-cream);
  padding: 5rem 0;
  margin-top: 72px;
}
.ch-thankyou-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.ch-thankyou-icon {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
}
.ch-thankyou-inner h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--ch-slate);
}
.ch-thankyou-lead {
  font-size: 1.1rem;
  color: var(--ch-slate);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ch-thankyou-details {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px rgba(37,45,43,0.06);
}
.ch-thankyou-details > p:first-child {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ch-slate);
  font-family: var(--ch-font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ch-thankyou-steps {
  margin: 0 0 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ch-thankyou-steps li {
  font-size: 0.95rem;
  color: var(--ch-slate);
  line-height: 1.65;
}
.ch-thankyou-details p {
  font-size: 0.92rem;
  color: var(--ch-slate);
  opacity: 0.8;
  line-height: 1.65;
}
.ch-thankyou-details a { color: var(--ch-sage); }
.ch-thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
============================================ */
.ch-legal-hero {
  background: var(--ch-slate);
  padding: 5rem 0 3rem;
  margin-top: 72px;
  color: #fff;
}
.ch-legal-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ch-legal-date {
  font-family: var(--ch-font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}
.ch-legal-body { padding: 4rem 0 6rem; background: var(--ch-cream); }
.ch-prose {
  max-width: 760px;
  margin: 0 auto;
}
.ch-prose p {
  font-size: 0.97rem;
  color: var(--ch-slate);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.ch-prose h2 {
  font-size: 1.4rem;
  color: var(--ch-slate);
  margin: 2.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61,78,74,0.1);
}
.ch-prose h3 {
  font-size: 1.05rem;
  color: var(--ch-slate);
  margin: 1.5rem 0 0.5rem;
  font-family: var(--ch-font-sans);
  font-weight: 600;
}
.ch-prose ul, .ch-prose ol {
  margin: 0 0 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ch-prose li {
  font-size: 0.97rem;
  color: var(--ch-slate);
  line-height: 1.7;
}
.ch-prose a { color: var(--ch-sage); text-decoration: underline; text-underline-offset: 2px; }
.ch-prose address {
  font-style: normal;
  background: rgba(107,143,113,0.07);
  border-left: 3px solid var(--ch-sage);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--ch-slate);
}
.ch-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.ch-legal-table th {
  background: rgba(107,143,113,0.1);
  color: var(--ch-slate);
  font-family: var(--ch-font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 0.9rem;
  text-align: left;
  border-bottom: 2px solid rgba(107,143,113,0.2);
}
.ch-legal-table td {
  padding: 0.6rem 0.9rem;
  color: var(--ch-slate);
  border-bottom: 1px solid rgba(61,78,74,0.08);
  line-height: 1.5;
}
.ch-disclosure-list { margin: 1rem 0; }
.ch-disclosure-list dt {
  font-family: var(--ch-font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ch-slate);
  opacity: 0.55;
  margin-top: 0.9rem;
}
.ch-disclosure-list dd {
  font-size: 0.97rem;
  color: var(--ch-slate);
  margin-left: 0;
  line-height: 1.6;
}

/* ============================================
   ARTICLE PAGES
============================================ */
.ch-article-page { background: var(--ch-cream); }
.ch-article-header {
  background: var(--ch-slate);
  padding: 5rem 0 3rem;
  margin-top: 72px;
  color: #fff;
}
.ch-article-header-inner { max-width: 760px; }
.ch-article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
}
.ch-article-category {
  font-family: var(--ch-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ch-sky);
  background: rgba(122,167,184,0.18);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}
.ch-article-read-time {
  font-family: var(--ch-font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.ch-article-header h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ch-article-standfirst {
  font-family: var(--ch-font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.ch-article-byline {
  display: flex;
  gap: 1.5rem;
  font-family: var(--ch-font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
}
.ch-article-hero-img {
  height: 460px;
  overflow: hidden;
}
.ch-article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-article-body { padding: 4rem 0 5rem; }
.ch-article-content { max-width: 760px; margin: 0 auto; }
.ch-article-content p {
  font-size: 1rem;
  color: var(--ch-slate);
  line-height: 1.82;
  margin-bottom: 1.4rem;
}
.ch-article-content h2 {
  font-size: 1.55rem;
  color: var(--ch-slate);
  margin: 3rem 0 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(61,78,74,0.1);
}
.ch-article-content h3 {
  font-size: 1.1rem;
  color: var(--ch-slate);
  margin: 1.75rem 0 0.5rem;
  font-family: var(--ch-font-sans);
  font-weight: 600;
}
.ch-article-content ul {
  margin: 0.75rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ch-article-content li {
  font-size: 0.97rem;
  color: var(--ch-slate);
  line-height: 1.72;
}
.ch-article-content a { color: var(--ch-sage); text-decoration: underline; text-underline-offset: 2px; }
.ch-article-figure {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
}
.ch-article-figure img {
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  display: block;
}
.ch-article-figure figcaption {
  font-family: var(--ch-font-sans);
  font-size: 0.82rem;
  color: var(--ch-slate);
  opacity: 0.55;
  padding: 0.6rem 0.2rem;
  font-style: italic;
}
.ch-article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 2rem;
  font-size: 0.9rem;
}
.ch-article-table th {
  background: rgba(107,143,113,0.1);
  color: var(--ch-slate);
  font-family: var(--ch-font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(107,143,113,0.2);
}
.ch-article-table td {
  padding: 0.65rem 1rem;
  color: var(--ch-slate);
  border-bottom: 1px solid rgba(61,78,74,0.08);
  line-height: 1.5;
}
.ch-article-related {
  max-width: 760px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(61,78,74,0.1);
}
.ch-article-related h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.ch-article-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ch-article-related-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(37,45,43,0.06);
  padding: 0.5rem;
}
.ch-article-related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,45,43,0.1); }
.ch-article-related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.ch-article-related-card h4 {
  font-size: 0.9rem;
  color: var(--ch-slate);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  font-family: var(--ch-font-sans);
  font-weight: 600;
}
.ch-article-related-card span {
  font-size: 0.8rem;
  color: var(--ch-sage);
  font-family: var(--ch-font-sans);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE OVERRIDES FOR NEW PAGES
============================================ */
@media (max-width: 900px) {
  .ch-about-story-grid,
  .ch-philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ch-about-story-img-secondary { display: none; }
  .ch-philosophy-img-accent { display: none; }
  .ch-values-grid { grid-template-columns: 1fr 1fr; }
  .ch-team-grid { grid-template-columns: 1fr; }
  .ch-contact-grid { grid-template-columns: 1fr; }
  .ch-article-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ch-values-grid { grid-template-columns: 1fr; }
  .ch-form-row { grid-template-columns: 1fr; }
  .ch-team-card { grid-template-columns: 100px 1fr; }
  .ch-thankyou-actions { flex-direction: column; }
  .ch-inner-hero { height: 280px; }
  .ch-article-hero-img { height: 260px; }
}


.logo{
  max-width: 80px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}