/* ════════════════════════════════════════════════════
   Elaborate HHCS — Main Stylesheet
   Palette: Warm Plum & Champagne
   ════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ─────────────────────────────── */
:root {
  /* Core Palette */
  --plum-deep:      #3D1A5C;   /* deep regal plum */
  --plum-mid:       #5C2D91;   /* vibrant purple */
  --plum-light:     #8A5BBE;   /* soft lavender-purple */
  --plum-pale:      #EDE3F7;   /* near-white tint */

  --champ-gold:     #C9963B;   /* champagne gold */
  --champ-light:    #E8C06A;   /* warm honey */
  --champ-pale:     #FBF3E2;   /* ivory cream */

  --ivory:          #FAF8F4;   /* page background */
  --ivory-dark:     #F0EBE3;   /* section alt bg */
  --ivory-border:   #E5DDD4;   /* dividers */

  --charcoal:       #1E1B2E;   /* near-black text */
  --text-secondary: #6B6480;   /* muted purple-grey */
  --white:          #FFFFFF;

  /* Gradients */
  --grad-hero:      linear-gradient(145deg, #2A0D47 0%, #3D1A5C 40%, #5C2D91 80%, #7A3FB0 100%);
  --grad-plum:      linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-mid) 100%);
  --grad-champ:     linear-gradient(135deg, var(--champ-gold) 0%, var(--champ-light) 100%);
  --grad-card:      linear-gradient(160deg, var(--plum-pale) 0%, var(--ivory) 100%);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Border Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(61,26,92,.07);
  --shadow-md:  0 4px 20px rgba(61,26,92,.10);
  --shadow-lg:  0 12px 48px rgba(61,26,92,.14);
  --shadow-xl:  0 24px 80px rgba(61,26,92,.18);
  --shadow-champ: 0 8px 32px rgba(201,150,59,.30);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease:      cubic-bezier(.4, 0, .2, 1);
  --t-fast:    0.18s var(--ease);
  --t-mid:     0.30s var(--ease);
  --t-slow:    0.50s var(--ease);
}

/* ── 2. 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(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--plum-mid); outline-offset: 3px; }

/* ── 3. Skip Link ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum-deep);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-family: var(--font-sans);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── 4. Layout Utilities ──────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-pad  { padding: var(--space-xl) 0; }
.section-pad-lg { padding: var(--space-2xl) 0; }
.section-alt  { background: var(--ivory-dark); }
.section-plum { background: var(--grad-plum); }
.text-center  { text-align: center; }

/* ── 5. Typography ────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-sm);
}
.eyebrow-plum { background: var(--plum-pale); color: var(--plum-mid); }
.eyebrow-champ { background: rgba(201,150,59,.15); color: #8A6010; }
.eyebrow-white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--charcoal);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}
em.accent { font-style: normal; color: var(--champ-gold); }

/* ── 6. Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .9375rem;
  padding: 14px 30px;
  border-radius: var(--r-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad-plum);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(92,45,145,.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(92,45,145,.45); }

.btn-champagne {
  background: var(--grad-champ);
  color: var(--charcoal);
  box-shadow: var(--shadow-champ);
}
.btn-champagne:hover { box-shadow: 0 12px 40px rgba(201,150,59,.40); }

.btn-outline {
  background: transparent;
  color: var(--plum-mid);
  border: 2px solid var(--plum-mid);
}
.btn-outline:hover { background: var(--plum-mid); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--plum-deep);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--ivory); box-shadow: var(--shadow-lg); }

.btn-lg  { padding: 18px 40px; font-size: 1.0625rem; }
.btn-sm  { padding: 10px 20px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 7. Navigation ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ivory-border);
  transition: box-shadow var(--t-mid), background var(--t-mid);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(61,26,92,.10);
  background: rgba(250,248,244,.99);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-md);
}

.nav-logo img,
.nav-logo .custom-logo { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links li a:hover,
.nav-links li.current-menu-item a,
.nav-links li.current-page-ancestor a {
  color: var(--plum-mid);
  background: var(--plum-pale);
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--plum-pale); }
.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-border);
  padding: var(--space-md);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }

.mobile-nav-links li a,
.mobile-menu > a {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 13px 16px;
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav-links li a:hover { background: var(--plum-pale); color: var(--plum-mid); }
.mobile-cta { margin-top: 12px; text-align: center; display: block; padding: 14px; border-radius: var(--r-md); }

/* ── 8. Hero Section ──────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201,150,59,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(138,91,190,.20) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative circle motif */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--champ-light);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,150,59,.3);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: '◆'; font-size: .5rem; color: var(--champ-gold); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
}
.hero h1 em { font-style: italic; color: var(--champ-light); }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-stat {}
.trust-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--champ-light);
  line-height: 1;
}
.trust-label { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 500; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  position: relative;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 12px; padding: 40px; text-align: center; min-height: 400px;
  color: rgba(255,255,255,.3); font-size: .875rem;
}

/* Floating Badge Cards */
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-1 { bottom: 28px; left: -40px; animation: floatA 4s ease-in-out infinite; }
.hero-badge-2 { top: 36px; right: -36px; animation: floatB 4.8s ease-in-out infinite; }
.badge-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.badge-icon-plum { background: var(--plum-pale); }
.badge-icon-champ { background: rgba(201,150,59,.15); }
.badge-title { font-family: var(--font-sans); font-size: .8125rem; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.badge-sub   { font-size: .725rem; color: var(--text-secondary); margin-top: 2px; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(5px)} }

/* ── 9. Partners Strip ────────────────────────────── */
.partners-strip {
  background: var(--white);
  border-bottom: 1px solid var(--ivory-border);
  padding: 36px 0;
}
.partners-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.partners-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-item {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: .55;
  letter-spacing: .04em;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.partner-item:hover { opacity: 1; color: var(--plum-mid); }

/* ── 10. About Section ────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-plum);
  display: flex; align-items: center; justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  min-height: 400px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  color: rgba(255,255,255,.35); font-size: .875rem;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--grad-champ);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-champ);
  text-align: center;
  color: var(--charcoal);
}
.about-badge-num { font-size: 2.25rem; line-height: 1; display: block; }
.about-badge-txt { font-family: var(--font-sans); font-size: .75rem; font-weight: 600; margin-top: 6px; }

.about-content {}
.about-body { color: var(--text-secondary); font-size: .9375rem; line-height: 1.75; margin: 20px 0 36px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.value-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.value-card:hover { border-color: var(--plum-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 1.375rem; margin-bottom: 10px; }
.value-title { font-family: var(--font-sans); font-weight: 700; font-size: .9375rem; color: var(--charcoal); margin-bottom: 6px; }
.value-desc  { font-size: .8125rem; color: var(--text-secondary); line-height: 1.55; }

/* ── 11. Services ─────────────────────────────────── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-plum);
  opacity: 0;
  transition: opacity var(--t-mid);
  border-radius: var(--r-lg);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,.15); }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-link-icon { transform: translateX(4px); }

.service-card.is-featured {
  background: var(--grad-plum);
  border-color: transparent;
}
.service-card.is-featured::after { display: none; }
.service-card.is-featured h3,
.service-card.is-featured p { color: rgba(255,255,255,.9); }
.service-card.is-featured .service-icon-wrap { background: rgba(255,255,255,.15); }
.service-card.is-featured .service-link { color: var(--champ-light); }

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--plum-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: background var(--t-mid);
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color var(--t-mid);
}
.service-card p {
  font-size: .9125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  transition: color var(--t-mid);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 700; font-size: .875rem;
  color: var(--plum-mid);
  transition: color var(--t-mid), gap var(--t-fast);
}
.service-link:hover { gap: 10px; }
.service-link-icon { transition: transform var(--t-fast); display: inline-flex; }

/* ── 12. Process Section ──────────────────────────── */
.process-wrap { max-width: 900px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--plum-light), var(--champ-gold));
}
.process-step { text-align: center; }
.step-circle {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--plum-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum-mid);
  position: relative;
  z-index: 1;
  transition: background var(--t-mid), color var(--t-mid);
}
.process-step:hover .step-circle {
  background: var(--grad-plum);
  color: var(--white);
  border-color: transparent;
}
.step-title {
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  color: var(--charcoal); margin-bottom: 10px;
}
.step-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }

/* ── 13. Testimonials ─────────────────────────────── */
.testimonials-section {
  background: var(--grad-hero);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 50%;
  left: -150px; top: -150px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background var(--t-mid), transform var(--t-mid);
  position: relative;
  z-index: 1;
}
.testi-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.testi-stars {
  display: flex; gap: 3px; margin-bottom: 18px; color: var(--champ-light);
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700; font-size: .9rem;
  color: var(--white); flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.2);
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-family: var(--font-sans); font-weight: 700; font-size: .9375rem; color: var(--white); }
.testi-role { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── 14. Team Section ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-photo {
  aspect-ratio: 1;
  background: var(--grad-plum);
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 220px; font-size: 3rem; color: rgba(255,255,255,.3);
}
.team-info { padding: 24px; }
.team-name { font-family: var(--font-sans); font-weight: 700; font-size: 1.0625rem; color: var(--charcoal); }
.team-role { font-family: var(--font-sans); font-size: .875rem; font-weight: 600; color: var(--plum-mid); margin-top: 4px; }
.team-bio  { font-size: .875rem; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }

/* ── 15. CTA Banner ───────────────────────────────── */
.cta-banner { background: var(--grad-champ); padding: 72px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--charcoal); margin-bottom: 8px;
}
.cta-text p { font-size: 1.0625rem; color: rgba(30,27,46,.65); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 16. News Section ─────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grad-plum);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-body { padding: 24px; }
.news-cat {
  font-family: var(--font-sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--plum-mid); margin-bottom: 10px;
}
.news-title {
  font-family: var(--font-sans); font-weight: 700; font-size: 1.0625rem;
  color: var(--charcoal); line-height: 1.4; margin-bottom: 10px;
}
.news-excerpt { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }
.news-meta {
  font-size: .8125rem; color: var(--text-secondary);
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--ivory-border);
}

/* ── 17. Newsletter Strip ─────────────────────────── */
.newsletter-strip {
  background: var(--plum-pale);
  padding: 72px 0;
  border-top: 1px solid rgba(92,45,145,.1);
  border-bottom: 1px solid rgba(92,45,145,.1);
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 56px; flex-wrap: wrap;
}
.newsletter-text { max-width: 460px; }
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
}
.newsletter-text p { color: var(--text-secondary); font-size: 1rem; }
.newsletter-form-wrap { flex: 1; min-width: 280px; max-width: 480px; }
.newsletter-form {
  display: flex; gap: 10px;
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-md);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
}
.newsletter-input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body); font-size: .9375rem;
  color: var(--charcoal); background: transparent; min-width: 0;
}
.newsletter-input::placeholder { color: var(--text-secondary); }
.newsletter-fine { font-size: .8rem; color: var(--text-secondary); }

/* ── 18. Footer ───────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-brand {}
.footer-logo,
.footer-brand .custom-logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .88; margin-bottom: 20px; }
.footer-tagline { font-size: .9375rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 340px; margin-bottom: 32px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon { color: var(--champ-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list span,
.footer-contact-list a { font-size: .9125rem; color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--champ-light); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { background: var(--plum-mid); color: var(--white); }

.footer-col {}
.footer-col-title {
  font-family: var(--font-sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col ul li a,
.footer-col a {
  display: block; font-size: .9125rem;
  color: rgba(255,255,255,.6); padding: 7px 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col ul li a:hover,
.footer-col a:hover { color: var(--champ-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: .875rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal li a { font-size: .875rem; color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer-legal li a:hover { color: var(--champ-light); }

/* ── 19. Back to Top ──────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--grad-plum);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-mid), transform var(--t-mid);
  z-index: 500;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(92,45,145,.45); }

/* ── 20. Single Post / Page ───────────────────────── */
.page-hero {
  background: var(--grad-plum);
  padding: 100px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.125rem; }
.breadcrumb { color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--champ-light); }

.entry-content {
  font-size: 1.0625rem; line-height: 1.8;
  color: var(--charcoal);
  max-width: 760px; margin: 0 auto;
  padding: var(--space-xl) 0;
}
.entry-content h2, .entry-content h3 { font-family: var(--font-display); margin: 40px 0 16px; }
.entry-content p { margin-bottom: 20px; color: var(--text-secondary); }
.entry-content ul, .entry-content ol { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; color: var(--text-secondary); }
.entry-content a { color: var(--plum-mid); text-decoration: underline; }
.entry-content img { border-radius: var(--r-md); margin: 32px 0; }

/* ── 21. Contact Page Form ────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
  padding: var(--space-xl) 0;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-sub { font-size: .9375rem; color: var(--text-secondary); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--font-sans); font-size: .8125rem;
  font-weight: 600; color: var(--charcoal); margin-bottom: 8px; letter-spacing: .01em;
}
.form-control {
  width: 100%; padding: 13px 16px;
  background: var(--ivory);
  border: 1.5px solid var(--ivory-border);
  border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .9375rem;
  color: var(--charcoal); outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-control:focus {
  border-color: var(--plum-light);
  box-shadow: 0 0 0 3px var(--plum-pale);
}
.form-control::placeholder { color: var(--text-secondary); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #C0392B; font-size: .8125rem; margin-top: 6px; }
.form-success-msg {
  background: rgba(92,45,145,.07); border: 1px solid var(--plum-pale);
  border-radius: var(--r-md); padding: 16px; text-align: center;
  color: var(--plum-mid); font-size: .9375rem; margin-top: 16px; display: none;
}

/* Contact Info Sidebar */
.contact-info-col {}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px;
}
.contact-info-sub { color: var(--text-secondary); font-size: 1rem; margin-bottom: 40px; line-height: 1.7; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white);
  border: 1px solid var(--ivory-border); border-radius: var(--r-md);
  margin-bottom: 14px; transition: border-color var(--t-mid);
}
.info-item:hover { border-color: var(--plum-light); }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--plum-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum-mid);
}
.info-label { font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.info-val   { font-size: .9375rem; color: var(--charcoal); font-weight: 500; }
.info-val a { color: inherit; }
.info-val a:hover { color: var(--plum-mid); }

/* ── 22. Blog / Archive ───────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.pagination {
  display: flex; justify-content: center; gap: 8px; margin-top: 56px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-family: var(--font-sans); font-weight: 600; font-size: .9375rem;
  border: 1px solid var(--ivory-border);
  color: var(--charcoal);
  transition: all var(--t-fast);
}
.pagination a:hover { background: var(--plum-pale); border-color: var(--plum-light); color: var(--plum-mid); }
.pagination .current { background: var(--grad-plum); color: var(--white); border-color: transparent; }

/* ── 23. Scroll Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── 24. Responsive ───────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .testi-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xl: 56px; --space-2xl: 80px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .team-grid  { grid-template-columns: 1fr; }
  .news-grid  { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .cta-inner  { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .newsletter-inner { flex-direction: column; }
  .footer-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
  .form-row   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust   { flex-wrap: wrap; }
  .back-to-top  { bottom: 20px; right: 20px; }
}

/* ── 25. Reduced Motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── 26. Print ────────────────────────────────────── */
@media print {
  .site-header, .mobile-menu, .back-to-top,
  .newsletter-strip, .hero-badge { display: none; }
  body { color: #000; background: #fff; }
}
