*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --bg: #ffffff;
  --bg-light: #ecefe9; /* Ash-green/sand light tint from screen */
  --bg-warm: #d5dcd2;
  --text-dark: #1e251b;
  --text-body: #2e352b;
  --text-muted: #5e665b;
  --text-light: #8b9288;

  --accent: #78825f; /* Sage/Olive accent from screen */
  --accent-hover: #5d664a;
  --accent-dark: #4d543c;

  --header-bg: #151a14;
  --footer-bg: #0b0e0a;
  --cta-bar-bg: #ccd5c8;

  --border: #cad1c7;
  --border-light: #dee3dc;

  --container: 1140px;
  --reading: 740px;
  --header-h: 68px;
  --transition: 200ms ease;
  --radius: 30px; /* Rounded pill style buttons for V5 */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 18px; /* Reduced from 20px to 18px */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Buttons - V5 Variant: Clean Outline Growth */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 30px; /* Fully rounded pills for V5 */
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  min-height: 44px;
  min-width: 44px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--text-dark); }
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.logo svg { width: 34px; height: 34px; }
.logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
}
.logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
@media (max-width: 400px) { .logo-text { font-size: 12px; } .logo-sub { display: none; } }

.header-right { display: flex; align-items: center; gap: 4px; }

.nav-desktop { display: none; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 4px; }
}
.nav-desktop a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 16px;
  transition: all 250ms ease;
  border-radius: 20px;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-desktop a:focus-visible { outline: 2px solid var(--accent); }

.nav-desktop .btn-header {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 250ms ease;
  min-height: auto;
  min-width: auto;
  display: inline-flex;
  align-items: center;
}
.nav-desktop .btn-header::after { display: none; }
.nav-desktop .btn-header:hover {
  background: var(--accent);
  color: #fff;
}
.nav-desktop .btn-header:active {
  transform: scale(0.97);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
}
.mobile-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mobile-toggle svg { width: 22px; height: 22px; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; }
.mobile-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===================== PAGES ===================== */
.page {
  display: none;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .page.active { opacity: 1; transform: none; transition: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../image/hero.png') center center / cover no-repeat;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,18,0.7) 0%, rgba(40,40,35,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  max-width: 680px;
}
.hero h1, .about-hero h1, .services-hero h1, .sd-hero h1, .contact-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero-lead {
  font-family: var(--font-heading);
  font-style: italic;
  animation: heroSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .hero { min-height: 480px; }
  .hero-content { padding: 100px 0 88px; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 64px 0; }
.section-lg { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-warm { background: var(--bg-warm); }

.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.section-heading { margin-bottom: 40px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { max-width: var(--reading); color: var(--text-body); }

/* ===================== INTRO ===================== */
.intro-block {
  max-width: var(--reading);
  margin: 0 auto;
  text-align: center;
  padding: 72px 0;
}
.intro-block h2 { margin-bottom: 20px; }
.intro-block p { line-height: 1.8; color: var(--text-body); }

/* ===================== SERVICE SECTIONS (Home) ===================== */
.service-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.service-section:last-of-type { border-bottom: none; }
.service-section h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
  transition: color 250ms ease;
}
.service-section:hover h3 { color: var(--accent); }
.service-section p { max-width: var(--reading); line-height: 1.75; margin-bottom: 12px; }
.service-section .btn { margin-top: 20px; }

/* ===================== WHY / PROCESS ===================== */
.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
}
@media (min-width: 600px) { .points-grid { grid-template-columns: 1fr 1fr; } }
.point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  transition: transform 250ms ease;
}
.point-item:hover { transform: translateX(6px); }
.point-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
}
.point-icon svg { width: 14px; height: 14px; }
.point-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.point-item p { color: var(--text-muted); line-height: 1.6; }

/* Process steps */
.process-list { max-width: 700px; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  transition: transform 250ms ease, background 250ms ease;
  border-radius: var(--radius);
  padding-left: 8px;
  margin-left: -8px;
}
.process-step:hover { transform: translateX(8px); background: var(--bg-light); }
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
}
.process-step h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.process-step p { color: var(--text-muted); }

/* Who We Help */
.who-list { max-width: 680px; list-style: none; }
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}
.who-list li:last-child { border-bottom: none; }
.who-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ===================== CTA BAR ===================== */
.cta-bar {
  background: var(--cta-bar-bg);
  padding: 36px 0;
}
.cta-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 600px) {
  .cta-bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
/* CTA bar text color */
.cta-bar h2 {
  color: var(--text-dark);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-bar .btn-white {
  background: var(--text-dark);
  color: #fff;
}
.cta-bar .btn-white:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.about-hero .hero-bg {
  background-image: url('../image/hero_about.png');
}
.about-hero .hero-content p { color: rgba(255,255,255,0.8); line-height: 1.8; }
.about-hero .eyebrow { color: var(--accent); margin-bottom: 8px; }
.about-body { padding: 56px 0; }
.about-body h2 { margin-bottom: 16px; }
.about-body p { max-width: var(--reading); line-height: 1.8; margin-bottom: 14px; }
.about-body h3 { margin-top: 32px; margin-bottom: 14px; font-size: 1.15rem; }

.about-principles { list-style: none; max-width: var(--reading); margin-top: 20px; }
.about-principles li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-body);
}
.about-principles li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ===================== SERVICES PAGE ===================== */
.services-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.services-hero .hero-bg {
  background-image: url('../image/hero_services.png');
}
.services-hero .hero-content p { color: rgba(255,255,255,0.8); line-height: 1.8; }
.services-hero .eyebrow { color: var(--accent); margin-bottom: 8px; }

.services-page-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.services-page-section:last-of-type { border-bottom: none; }
.services-page-section h2 { margin-bottom: 14px; }
.services-page-section p { max-width: var(--reading); line-height: 1.8; margin-bottom: 12px; }
.services-page-section .btn { margin-top: 16px; }

.fractional-explainer { padding: 56px 0; background: var(--bg-warm); }
.fractional-explainer h2 { margin-bottom: 14px; }
.fractional-explainer p { max-width: var(--reading); line-height: 1.8; margin-bottom: 12px; }

/* ===================== SERVICE DETAIL PAGE ===================== */
.sd-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.sd-hero .hero-bg {
  background-image: url('../image/hero_case_studies.png');
}
.sd-hero .hero-content p { color: rgba(255,255,255,0.8); line-height: 1.8; }
.sd-hero .eyebrow { color: var(--accent); margin-bottom: 8px; }
.sd-hero .back-link {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 12px;
}
.sd-hero .back-link:hover {
  color: #fff;
  opacity: 1;
}

.sd-body { padding: 56px 0; }
.sd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) { .sd-grid { grid-template-columns: 1fr 1fr; } }

.sd-outcomes { list-style: none; }
.sd-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  line-height: 1.6;
}
.sd-outcomes li:last-child { border-bottom: none; }
.sd-outcomes li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.sd-panel {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
}
.sd-panel h3 { margin-bottom: 14px; font-size: 1.15rem; }
.sd-panel p { line-height: 1.75; margin-bottom: 20px; }
.sd-panel .btn { width: 100%; text-align: center; }

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: #2a2a2a;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.contact-hero .hero-bg {
  background-image: url('../image/hero_contact.png');
}
.contact-hero .hero-content p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.8; }
.contact-hero .eyebrow { color: var(--accent); margin-bottom: 8px; }

.contact-body { padding: 56px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-details-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}
.contact-details-box h3 { font-size: 15px; margin-bottom: 16px; }
.contact-details-box .detail-row { margin-bottom: 14px; }
.contact-details-box .detail-row:last-child { margin-bottom: 0; }
.detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-details-box p { color: var(--text-body); line-height: 1.6; }

/* Form */
.contact-form { }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .required { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122,139,79,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; appearance: auto; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }

.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; padding: 15px; font-size: 13px; }
.form-privacy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
}
.form-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
}
.form-error {
  font-size: 12px;
  color: #a94442;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #a94442; }
.form-group.has-error .form-error { display: block; }

/* Flash notice */
.flash { max-width: var(--container); margin: 0 auto; padding: 16px 24px 0; }
.flash .flash-msg { border-radius: 8px; padding: 12px 16px; font-size: 14px; margin-bottom: 8px; }
.flash .flash-success { background: #e6efe0; border: 1px solid var(--accent); color: var(--text-dark); }
.flash .flash-error { background: #f6e3e1; border: 1px solid #c98a86; color: #7a2e2a; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; }
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-col a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===================== ANIMATIONS ===================== */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes staggerIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Staggered children */
  .page.active .stagger-child {
    animation: staggerIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .page.active .stagger-child:nth-child(1) { animation-delay: 0.05s; }
  .page.active .stagger-child:nth-child(2) { animation-delay: 0.1s; }
  .page.active .stagger-child:nth-child(3) { animation-delay: 0.15s; }
  .page.active .stagger-child:nth-child(4) { animation-delay: 0.2s; }
  .page.active .stagger-child:nth-child(5) { animation-delay: 0.25s; }
  .page.active .stagger-child:nth-child(6) { animation-delay: 0.3s; }
}
@media (prefers-reduced-motion: reduce) {
  .stagger-child { animation: none !important; opacity: 1; }
  .hero h1, .hero-lead { animation: none !important; opacity: 1; }
  .page.active { animation: none; opacity: 1; }
}

/* CTA bar shimmer line */
.cta-bar {
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

/* Form group focus animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  animation: focusPulse 0.3s ease;
}
@keyframes focusPulse {
  0% { box-shadow: 0 0 0 0 rgba(122,139,79,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(122,139,79,0.15); }
  100% { box-shadow: 0 0 0 3px rgba(122,139,79,0.12); }
}

/* Contact details box hover */
.contact-details-box {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.contact-details-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Service detail panel hover */
.sd-panel {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.sd-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Process num scale on parent hover */
.process-step:hover .process-num {
  transform: scale(1.1);
}
.process-num {
  transition: transform 250ms ease;
}

/* Who-list item hover */
.who-list li {
  transition: transform 250ms ease, padding-left 250ms ease;
}
.who-list li:hover {
  transform: translateX(6px);
}

/* Footer link underline animation */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width 250ms ease;
}
.footer-col a:hover::after { width: 100%; }

/* ===================== BACK LINK ===================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 20px;
  transition: gap 250ms ease, color 250ms ease;
}
.back-link:hover { gap: 10px; color: var(--accent-hover); }
.back-link svg { width: 16px; height: 16px; transition: transform 250ms ease; }
.back-link:hover svg { transform: translateX(-3px); }
.back-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
