/* ============================================================
   EVAN & CHAMY CAT CARE — main.css
   Design System: CSS-only, mobile-first, ecct- prefix
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Colors */
  --ecct-primary:    #C2856A;
  --ecct-primary-dk: #a96a52;
  --ecct-accent:     #7DAA92;
  --ecct-accent-dk:  #628a77;
  --ecct-bg:         #FBF7F4;
  --ecct-surface:    #FFFFFF;
  --ecct-surface-2:  #F3EDE8;
  --ecct-text:       #2C2C2C;
  --ecct-text-muted: #6B7280;
  --ecct-border:     #E5DDD6;
  --ecct-shadow:     rgba(44, 44, 44, 0.08);
  --ecct-shadow-lg:  rgba(44, 44, 44, 0.16);

  /* Typography */
  --ecct-font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ecct-font-size:  1rem;
  --ecct-lh:         1.65;

  /* Spacing scale */
  --ecct-space-1:  0.5rem;
  --ecct-space-2:  1rem;
  --ecct-space-3:  1.5rem;
  --ecct-space-4:  2rem;
  --ecct-space-5:  3rem;
  --ecct-space-6:  5rem;
  --ecct-space-7:  7rem;

  /* Layout */
  --ecct-container: 1200px;
  --ecct-gap:       2rem;
  --ecct-radius:    12px;
  --ecct-radius-sm: 6px;
  --ecct-radius-xl: 24px;

  /* Transitions */
  --ecct-transition: 200ms ease;
}

/* ── 2. RESET + BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ecct-font-sans);
  font-size: var(--ecct-font-size);
  line-height: var(--ecct-lh);
  color: var(--ecct-text);
  background-color: var(--ecct-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ecct-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--ecct-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--ecct-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p { margin-bottom: var(--ecct-space-3); }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 4px solid var(--ecct-primary);
  padding: var(--ecct-space-3) var(--ecct-space-4);
  background: var(--ecct-surface-2);
  border-radius: 0 var(--ecct-radius) var(--ecct-radius) 0;
  font-style: italic;
}

/* ── 3. UTILITIES ──────────────────────────────────────────── */
.ecct-container {
  width: 100%;
  max-width: var(--ecct-container);
  margin-inline: auto;
  padding-inline: var(--ecct-space-4);
}
@media (max-width: 480px) {
  .ecct-container {
    padding-inline: var(--ecct-space-2);
  }
}

.ecct-section {
  padding-block: var(--ecct-space-6);
}
.ecct-section--sm {
  padding-block: var(--ecct-space-4);
}
.ecct-section--narrow {
  max-width: 820px;
  margin-inline: auto;
}

.ecct-section__header {
  text-align: center;
  margin-bottom: var(--ecct-space-5);
}
.ecct-section__title {
  margin-bottom: var(--ecct-space-2);
}
.ecct-section__lead {
  color: var(--ecct-text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin-inline: auto;
}

/* Alternating section backgrounds */
.ecct-hero,
.ecct-services,
.ecct-about,
.ecct-process { background-color: var(--ecct-surface); }

.ecct-trust-bar,
.ecct-testimonials,
.ecct-gallery,
.ecct-faq,
.ecct-contact-cta { background-color: var(--ecct-bg); }

/* Screen reader only */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.ecct-skip-link:focus {
  position: static !important;
  width: auto; height: auto;
  padding: var(--ecct-space-2) var(--ecct-space-3);
  clip: auto;
  background: var(--ecct-primary);
  color: #fff;
  font-weight: 700;
  z-index: 999;
}

/* ── 4. BUTTONS ────────────────────────────────────────────── */
.ecct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ecct-space-1);
  padding: 0.75rem 1.5rem;
  border-radius: var(--ecct-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--ecct-font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ecct-transition), color var(--ecct-transition), transform var(--ecct-transition), box-shadow var(--ecct-transition);
  text-decoration: none;
  white-space: nowrap;
}
.ecct-button:hover { text-decoration: none; }
.ecct-button:active { transform: scale(0.98); }
.ecct-button:focus-visible {
  outline: 3px solid var(--ecct-primary);
  outline-offset: 2px;
}
.ecct-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ecct-button--primary {
  background: var(--ecct-primary);
  color: #fff;
  border-color: var(--ecct-primary);
}
.ecct-button--primary:hover {
  background: var(--ecct-primary-dk);
  border-color: var(--ecct-primary-dk);
  box-shadow: 0 4px 14px rgba(194,133,106,0.35);
}

.ecct-button--outline {
  background: transparent;
  color: var(--ecct-primary);
  border-color: var(--ecct-primary);
}
.ecct-button--outline:hover {
  background: var(--ecct-primary);
  color: #fff;
}

.ecct-button--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.ecct-button--lg {
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
}

/* ── 5. SITE HEADER ────────────────────────────────────────── */
.ecct-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ecct-border);
}

.ecct-header-inner {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-3);
  min-height: 72px;
}

.ecct-header-brand { flex-shrink: 0; }
.ecct-logo-link img { max-height: 52px; width: auto; }
.ecct-site-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ecct-text);
  text-decoration: none;
}
.ecct-site-title:hover { color: var(--ecct-primary); text-decoration: none; }

.ecct-nav { flex: 1; }

.ecct-nav-list {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-1);
  list-style: none;
  flex-wrap: wrap;
}
.ecct-nav-list a {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--ecct-text);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--ecct-radius-sm);
  transition: color var(--ecct-transition), background var(--ecct-transition);
}
.ecct-nav-list a:hover,
.ecct-nav-list .current-menu-item > a {
  color: var(--ecct-primary);
  background: var(--ecct-surface-2);
  text-decoration: none;
}

.ecct-header-cta {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-2);
  flex-shrink: 0;
}
.ecct-header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ecct-text);
}
.ecct-header-phone:hover { color: var(--ecct-primary); text-decoration: none; }

/* Mobile toggle */
.ecct-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.ecct-burger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ecct-text);
  position: relative;
  transition: background var(--ecct-transition);
}
.ecct-burger::before,
.ecct-burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ecct-text);
  transition: transform var(--ecct-transition);
}
.ecct-burger::before { top: -7px; }
.ecct-burger::after  { top: 7px; }

/* Mobile nav open state */
.ecct-mobile-toggle[aria-expanded="true"] .ecct-burger { background: transparent; }
.ecct-mobile-toggle[aria-expanded="true"] .ecct-burger::before { transform: translateY(7px) rotate(45deg); }
.ecct-mobile-toggle[aria-expanded="true"] .ecct-burger::after  { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. HERO ───────────────────────────────────────────────── */
.ecct-hero {
  background: linear-gradient(135deg, var(--ecct-surface) 0%, var(--ecct-bg) 100%);
}

.ecct-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-5);
  align-items: center;
}

.ecct-hero__text { max-width: 600px; }

.ecct-badge {
  display: inline-block;
  background: var(--ecct-surface-2);
  color: var(--ecct-primary-dk);
  border: 1px solid var(--ecct-border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--ecct-space-3);
}

.ecct-hero__title {
  margin-bottom: var(--ecct-space-3);
  letter-spacing: -0.02em;
}

.ecct-hero__subtitle {
  color: var(--ecct-text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--ecct-space-4);
}

.ecct-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ecct-space-2);
}

.ecct-hero__image-wrap {
  position: relative;
}
.ecct-hero__image {
  width: 100%;
  border-radius: var(--ecct-radius-xl);
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 24px 60px var(--ecct-shadow-lg);
}

/* ── 7. TRUST BAR ──────────────────────────────────────────── */
.ecct-trust-bar {
  background: var(--ecct-surface-2);
  border-block: 1px solid var(--ecct-border);
  padding-block: var(--ecct-space-3);
}

.ecct-trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ecct-space-3) var(--ecct-space-5);
  list-style: none;
}

.ecct-trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-1);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ecct-text);
}

/* ── 8. SERVICES / CARDS ───────────────────────────────────── */
.ecct-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-4);
}

.ecct-card {
  background: var(--ecct-surface);
  border: 1px solid var(--ecct-border);
  border-radius: var(--ecct-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--ecct-transition), box-shadow var(--ecct-transition);
}
.ecct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--ecct-shadow-lg);
}

.ecct-card__image-wrap { overflow: hidden; flex-shrink: 0; }
.ecct-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 400ms ease;
}
.ecct-card:hover .ecct-card__image { transform: scale(1.04); }

.ecct-card__icon {
  font-size: 2.5rem;
  padding: var(--ecct-space-3) var(--ecct-space-3) 0;
}

.ecct-card__body {
  padding: var(--ecct-space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ecct-card__title { margin-bottom: var(--ecct-space-2); font-size: 1.1rem; }
.ecct-card__excerpt {
  color: var(--ecct-text-muted);
  margin-bottom: var(--ecct-space-3);
  flex: 1;
}
.ecct-card__excerpt p { margin-bottom: 0; }
.ecct-card__body .ecct-button {
  align-self: flex-start;
  margin-top: auto;
}

/* ── 9. ABOUT / BIO ────────────────────────────────────────── */
.ecct-about__inner {
  max-width: 780px;
  margin-inline: auto;
}

.ecct-about__title { margin-bottom: var(--ecct-space-2); }
.ecct-about__lead  {
  color: var(--ecct-text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--ecct-space-4);
}
.ecct-about__quote {
  margin-bottom: var(--ecct-space-4);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Tags */
.ecct-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ecct-space-1);
  list-style: none;
  margin: 0;
}
.ecct-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ecct-surface-2);
  border: 1px solid var(--ecct-border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ecct-text);
}

/* ── 10. PROCESS ───────────────────────────────────────────── */
.ecct-process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-4);
  counter-reset: steps;
  list-style: none;
  margin-bottom: var(--ecct-space-5);
}

.ecct-process__step {
  display: flex;
  gap: var(--ecct-space-3);
  align-items: flex-start;
}

.ecct-process__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ecct-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(194,133,106,0.3);
}

.ecct-process__title { margin-bottom: var(--ecct-space-1); }
.ecct-process__text  { color: var(--ecct-text-muted); }

.ecct-process__cta { text-align: center; }

/* ── 11. TESTIMONIALS ──────────────────────────────────────── */
.ecct-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-4);
}

.ecct-testimonial-card {
  background: var(--ecct-surface);
  border: 1px solid var(--ecct-border);
  border-radius: var(--ecct-radius);
  padding: var(--ecct-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--ecct-space-2);
}

.ecct-testimonial-card__stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.ecct-testimonial-card__text {
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ecct-text);
  flex: 1;
}
.ecct-testimonial-card__text p { margin-bottom: 0; }

.ecct-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: var(--ecct-space-2);
  border-top: 1px solid var(--ecct-border);
}
.ecct-testimonial-card__location {
  font-size: 0.85rem;
  color: var(--ecct-text-muted);
}

/* ── 12. GALLERY ───────────────────────────────────────────── */
.ecct-gallery__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ecct-space-2);
}
.ecct-gallery--cols-3 { grid-template-columns: repeat(2, 1fr); }
.ecct-gallery--cols-4 { grid-template-columns: repeat(2, 1fr); }

.ecct-gallery__item {
  overflow: hidden;
  border-radius: var(--ecct-radius-sm);
  aspect-ratio: 1;
  display: block;
  background: var(--ecct-border);
}
.ecct-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.ecct-gallery__item:hover img { transform: scale(1.06); }

/* Native WP gallery */
.gallery { display: grid; gap: var(--ecct-space-2); }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(2, 1fr); }
.gallery-item { overflow: hidden; border-radius: var(--ecct-radius-sm); }
.gallery-item img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ── 13. FAQ ───────────────────────────────────────────────── */
.ecct-faq__inner { max-width: 780px; }

.ecct-faq__list { display: flex; flex-direction: column; gap: var(--ecct-space-2); }

.ecct-faq__item {
  border: 1px solid var(--ecct-border);
  border-radius: var(--ecct-radius-sm);
  background: var(--ecct-surface);
  overflow: hidden;
}

.ecct-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ecct-space-2);
  padding: var(--ecct-space-3) var(--ecct-space-3);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--ecct-font-sans);
  color: var(--ecct-text);
  text-align: left;
  transition: color var(--ecct-transition), background var(--ecct-transition);
}
.ecct-faq__question:hover { color: var(--ecct-primary); background: var(--ecct-surface-2); }
.ecct-faq__question[aria-expanded="true"] { color: var(--ecct-primary); background: var(--ecct-surface-2); }

.ecct-faq__icon svg {
  flex-shrink: 0;
  transition: transform var(--ecct-transition);
  stroke: currentColor;
}
.ecct-faq__question[aria-expanded="true"] .ecct-faq__icon svg {
  transform: rotate(180deg);
}

.ecct-faq__answer {
  padding: 0 var(--ecct-space-3) var(--ecct-space-3);
  color: var(--ecct-text-muted);
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 250ms ease, padding 300ms ease;
}
.ecct-faq__item:has(.ecct-faq__question[aria-expanded="true"]) .ecct-faq__answer,
.ecct-faq__answer:not([hidden]) {
  max-height: 600px;
  opacity: 1;
  padding: 0 var(--ecct-space-3) var(--ecct-space-3);
}
.ecct-faq__answer p { margin-bottom: 0; }
.ecct-faq__answer[hidden] {
  display: none !important;
  max-height: 0 !important;
  opacity: 0 !important;
}

/* ── 14. CONTACT CTA ───────────────────────────────────────── */
.ecct-contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-5);
  align-items: start;
}

.ecct-contact-cta__title {
  margin-bottom: var(--ecct-space-1);
}
.ecct-contact-cta__subtitle {
  color: var(--ecct-text-muted);
  margin-bottom: var(--ecct-space-4);
}

.ecct-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ecct-space-2);
  margin-bottom: var(--ecct-space-3);
}
.ecct-contact-info-item__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.ecct-contact-info-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ecct-text-muted);
  margin-bottom: 2px;
}
.ecct-contact-info-item__value a {
  color: var(--ecct-text);
  font-weight: 500;
}
.ecct-contact-info-item__value a:hover { color: var(--ecct-primary); }

.ecct-contact-cta__social { display: flex; gap: var(--ecct-space-2); margin-bottom: var(--ecct-space-4); flex-wrap: wrap; }

.ecct-contact-cta__quote {
  font-size: 0.95rem;
  color: var(--ecct-text-muted);
  border-left-color: var(--ecct-accent);
  margin-top: var(--ecct-space-3);
  padding: var(--ecct-space-2) var(--ecct-space-3);
}

/* ── 15. CONTACT FORM ──────────────────────────────────────── */
.ecct-contact-form-wrap {
  background: var(--ecct-surface);
  border: 1px solid var(--ecct-border);
  border-radius: var(--ecct-radius);
  padding: var(--ecct-space-4);
}
.ecct-contact-form__title {
  margin-bottom: var(--ecct-space-3);
}

/* Honeypot — completely hidden */
.ecct-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ecct-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-2);
}
@media (min-width: 600px) {
  .ecct-form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.ecct-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--ecct-space-3);
}
.ecct-form-label {
  font-weight: 600;
  font-size: 0.9rem;
}
.ecct-form-required { color: var(--ecct-primary); margin-left: 2px; }

.ecct-form-input {
  width: 100%;
  padding: 0.65rem var(--ecct-space-2);
  border: 1px solid var(--ecct-border);
  border-radius: var(--ecct-radius-sm);
  font-family: var(--ecct-font-sans);
  font-size: 1rem;
  background: var(--ecct-bg);
  color: var(--ecct-text);
  transition: border-color var(--ecct-transition), box-shadow var(--ecct-transition);
  appearance: none;
}
.ecct-form-input:focus {
  outline: none;
  border-color: var(--ecct-primary);
  box-shadow: 0 0 0 3px rgba(194,133,106,0.18);
}
.ecct-form-textarea { resize: vertical; min-height: 130px; }

.ecct-form-submit-row { margin-top: var(--ecct-space-2); }
.ecct-form-submit { width: 100%; }

.ecct-form-message {
  margin-top: var(--ecct-space-2);
  padding: var(--ecct-space-2) var(--ecct-space-3);
  border-radius: var(--ecct-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.ecct-form-message--success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.ecct-form-message--error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ── 16. SITE FOOTER ───────────────────────────────────────── */
.ecct-site-footer {
  background: var(--ecct-text);
  color: rgba(255,255,255,0.75);
  padding-block: var(--ecct-space-6) var(--ecct-space-4);
}

.ecct-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ecct-space-5);
  margin-bottom: var(--ecct-space-5);
}

.ecct-footer-logo img { max-height: 52px; width: auto; filter: brightness(0) invert(1); }
.ecct-footer-site-name { font-weight: 800; font-size: 1.1rem; color: #fff; }
.ecct-footer-desc { margin-top: var(--ecct-space-2); font-size: 0.9rem; }

.ecct-footer-social { display: flex; gap: var(--ecct-space-2); margin-top: var(--ecct-space-3); }
.ecct-social-link {
  color: rgba(255,255,255,0.6);
  transition: color var(--ecct-transition);
}
.ecct-social-link:hover { color: #fff; }

.ecct-footer-heading {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--ecct-space-3);
}

.ecct-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: var(--ecct-space-1); }
.ecct-footer-nav-list a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--ecct-transition); }
.ecct-footer-nav-list a:hover { color: #fff; text-decoration: none; }

.ecct-footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-1);
  font-size: 0.9rem;
  margin-bottom: var(--ecct-space-2);
}
.ecct-footer-contact-item a { color: rgba(255,255,255,0.75); transition: color var(--ecct-transition); }
.ecct-footer-contact-item a:hover { color: #fff; }

.ecct-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--ecct-space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--ecct-space-2);
}

.ecct-footer-copyright { font-size: 0.85rem; }

.ecct-legal-nav { list-style: none; display: flex; gap: var(--ecct-space-3); flex-wrap: wrap; }
.ecct-legal-nav li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.ecct-legal-nav li a:hover { color: #fff; }

/* ── 17. NOTICE (empty CPT fallback) ──────────────────────── */
.ecct-notice {
  color: var(--ecct-text-muted);
  font-style: italic;
  padding: var(--ecct-space-4);
  text-align: center;
  border: 2px dashed var(--ecct-border);
  border-radius: var(--ecct-radius);
}

/* ── 18. PAGE / POST CONTENT ───────────────────────────────── */
.ecct-page-wrap { padding-block: var(--ecct-space-5); }
.ecct-page-header { background: var(--ecct-surface-2); }
.ecct-page-title { margin-bottom: 0; }
.ecct-page-content { line-height: 1.75; }
.ecct-page-content h2,
.ecct-page-content h3 { margin-block: var(--ecct-space-3) var(--ecct-space-2); }
.ecct-page-content ul,
.ecct-page-content ol { padding-left: 1.5rem; margin-bottom: var(--ecct-space-3); }
.ecct-page-content ul { list-style: disc; }
.ecct-page-content ol { list-style: decimal; }

/* ── 19. SPINNER ───────────────────────────────────────────── */
.ecct-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ecct-spin 0.6s linear infinite;
}
@keyframes ecct-spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≥ 640px)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .ecct-hero__grid { grid-template-columns: 1fr 1fr; }
  .ecct-hero__text { max-width: none; }
  .ecct-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ecct-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .ecct-gallery--cols-3,
  .ecct-gallery--cols-4 { grid-template-columns: repeat(3, 1fr); }
  .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
  .ecct-process__list { grid-template-columns: repeat(3, 1fr); }
  .ecct-process__step { flex-direction: column; text-align: center; align-items: center; }
  .ecct-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop (≥ 1024px)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .ecct-services__grid { grid-template-columns: repeat(3, 1fr); }
  .ecct-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .ecct-contact-cta__grid { grid-template-columns: 3fr 2fr; }
  .ecct-section { padding-block: var(--ecct-space-7); }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV (< 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .ecct-mobile-toggle { display: flex; }
  .ecct-header-cta .ecct-header-cta-btn { display: none; }
  .ecct-header-phone { font-size: 0.8rem; }

  .ecct-nav {
    position: fixed;
    inset: 72px 0 0;
    background: var(--ecct-surface);
    padding: var(--ecct-space-4);
    transform: translateX(-100%);
    transition: transform 250ms ease;
    overflow-y: auto;
    z-index: 99;
    border-right: 1px solid var(--ecct-border);
  }
  .ecct-nav.is-open {
    transform: translateX(0);
  }

  .ecct-nav-list {
    flex-direction: column;
    gap: var(--ecct-space-1);
  }
  .ecct-nav-list a {
    padding: var(--ecct-space-2);
    font-size: 1.05rem;
  }
}

/* ── 20. PRINT ─────────────────────────────────────────────── */
@media print {
  .ecct-site-header,
  .ecct-mobile-toggle,
  .ecct-trust-bar,
  .ecct-hero__cta,
  .ecct-process__cta,
  .ecct-site-footer { display: none; }
}

/* ── Eva Profile in Contact ──────────────────────────────── */
.ecct-contact-cta__profile {
  display: flex;
  align-items: center;
  gap: var(--ecct-space-2);
  margin-bottom: var(--ecct-space-3);
  padding: var(--ecct-space-2) var(--ecct-space-3);
  background: var(--ecct-surface-2);
  border-radius: var(--ecct-radius);
  border: 1px solid var(--ecct-border);
}
.ecct-contact-cta__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--ecct-primary);
}
.ecct-contact-cta__profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ecct-contact-cta__profile-name {
  font-size: 1rem;
  color: var(--ecct-text);
}
.ecct-contact-cta__profile-role {
  font-size: 0.85rem;
  color: var(--ecct-text-muted);
}
