/* EmergeHub — layout inspired by reference templates; colours: burgundy #610536, accent #FFF605, text #1A1A1A */
:root {
  --eh-burgundy: #610536;
  --eh-burgundy-dark: #4a0429;
  --eh-accent: #fff605;
  --eh-accent-dim: #e6dc04;
  --eh-offwhite: #f7f5f0;
  --eh-near-black: #1a1a1a;
  --eh-cream: #f5f0e8;
  --eh-pale: #f3e9ef;
  --eh-pale-2: #efe5ea;
  --eh-muted: #666;
  --eh-line: #e8e8e8;
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--eh-offwhite);
  color: var(--eh-near-black);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

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

a:hover {
  text-decoration: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.page-home .navbar {
  background: transparent;
}

.page-inner .navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.page-home .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--eh-burgundy);
}

.page-home .navbar:not(.scrolled) .logo {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s;
}

.page-inner .nav-links a,
.page-home .navbar.scrolled .nav-links a {
  color: var(--eh-near-black);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--eh-burgundy);
}

.btn-nav {
  background: var(--eh-accent);
  color: var(--eh-near-black);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s;
}

.page-home .navbar:not(.scrolled) .btn-nav:hover {
  background: var(--eh-accent-dim);
}

.btn-nav:hover {
  background: var(--eh-accent-dim);
}

.page-home .navbar:not(.scrolled) #nav-cta {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}

.page-inner .hamburger span,
.page-home .navbar.scrolled .hamburger span {
  background: var(--eh-near-black);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--eh-near-black);
}

.drawer-cta {
  text-align: center;
  border-radius: 2px;
  padding: 10px !important;
  background: var(--eh-accent);
  color: var(--eh-near-black) !important;
  font-weight: 600;
}

/* ── Home hero ── */
.page-home .hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(97, 5, 54, 0.78);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  opacity: 0;
  transform: translateY(30px);
  animation: eh-fade-up 0.8s 0.2s forwards;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #fff;
  line-height: 1.02;
  margin: 0 0 24px;
}

.hero-content .hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  background: var(--eh-accent);
  color: var(--eh-near-black);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 14px 32px;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--eh-accent-dim);
}

.btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 14px 32px;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  animation: eh-bounce 2s infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
}

@keyframes eh-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eh-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Sections ── */
.section {
  padding: 96px 0;
}

.section--white {
  background: #fff;
}

.label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eh-burgundy);
  margin-bottom: 12px;
}

.label--on-dark,
.label.light {
  color: var(--eh-accent);
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--eh-near-black);
  margin: 0 0 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--eh-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 56px;
}

.intro-strip {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid var(--eh-line);
}

.intro-strip .intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}

.intro-strip .learn-more {
  display: inline-flex;
  margin-top: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 32px;
  border: 1px solid #ededed;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  border-left: 4px solid var(--eh-burgundy);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.card-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--eh-burgundy);
  opacity: 0.85;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--eh-near-black);
  margin: 0 0 8px;
}

.card-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0 0 20px;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eh-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card:hover .card-link {
  gap: 12px;
}

.stats-strip {
  background: var(--eh-burgundy);
  padding: 56px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.featured-section {
  background: #fff;
  padding: 96px 0;
}

.featured-pair {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.featured-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-block.reverse {
  direction: rtl;
}

.featured-block.reverse > * {
  direction: ltr;
}

.featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-block:hover .featured-img img {
  transform: scale(1.03);
}

.featured-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--eh-near-black);
  margin: 0 0 20px;
  line-height: 1.2;
}

.featured-text p {
  color: #555;
  line-height: 1.75;
  margin: 0 0 28px;
  font-size: 0.95rem;
}

.learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eh-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.learn-more:hover {
  gap: 12px;
}

.cta-banner {
  background: var(--eh-accent);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--eh-burgundy);
  margin: 0 0 16px;
}

.cta-banner p {
  color: rgba(97, 5, 54, 0.72);
  font-size: 1.05rem;
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.65;
}

.btn-dark {
  background: var(--eh-burgundy);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 16px 40px;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
}

.btn-dark:hover {
  background: var(--eh-burgundy-dark);
}

/* ── Inner page hero ── */
.page-inner #main-content {
  padding-top: 64px;
}

.page-hero {
  background: var(--eh-burgundy);
  padding: 100px 24px 72px;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .breadcrumb {
  justify-content: center;
}

.page-hero--center .page-hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span.current {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.08;
}

.page-hero .page-hero-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.75;
  margin: 0;
}

/* Category tabs (service category) */
.category-tabs {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 64px;
  z-index: 50;
  overflow-x: auto;
}

.tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
}

.tab-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
  padding: 18px 20px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.tab-link:hover {
  color: var(--eh-burgundy);
}

.tab-link.active {
  color: var(--eh-burgundy);
  border-bottom-color: var(--eh-burgundy);
}

.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 130px;
}

.sidebar-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 16px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #777;
  padding: 8px 12px;
  border-radius: 2px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.sidebar-link:hover {
  color: var(--eh-burgundy);
  background: var(--eh-pale);
}

.sidebar-card {
  margin-top: 32px;
  padding: 24px;
  background: var(--eh-pale);
  border-left: 3px solid var(--eh-burgundy);
}

.sidebar-card h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--eh-burgundy);
  font-weight: 600;
  margin: 0 0 8px;
}

.sidebar-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 14px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--eh-line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-detail-card.eh-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-header {
  padding: 32px 36px 28px;
  border-bottom: 1px solid #f0f0f0;
}

.card-header h3 {
  font-size: 1.5rem;
  color: var(--eh-near-black);
  margin: 0 0 10px;
}

.card-header p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
}

.card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card-col {
  padding: 28px 36px;
}

.card-col:first-child {
  background: var(--eh-cream);
  border-right: 1px solid var(--eh-line);
}

.card-col:last-child {
  background: var(--eh-pale-2);
}

.col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 16px;
}

.col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-list li {
  font-size: 0.875rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.col-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eh-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eh-burgundy);
  margin-top: 48px;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 14px;
}

.inner-cta {
  background: var(--eh-accent);
  padding: 56px 24px;
  text-align: center;
}

.inner-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--eh-burgundy);
  margin: 0 0 12px;
}

.inner-cta p {
  color: rgba(97, 5, 54, 0.7);
  margin: 0 auto 28px;
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.65;
}

/* Services index blocks */
.services-index-block {
  padding: 72px 0;
}

.services-index-block:nth-child(even) {
  background: var(--eh-offwhite);
}

.services-index-block:nth-child(odd) {
  background: #fff;
}

.block-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--eh-burgundy);
  margin: 0 0 12px;
}

.block-intro {
  max-width: 720px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 40px;
}

/* Membership / cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tier-card {
  background: #fff;
  border: 1px solid var(--eh-line);
  padding: 28px 28px 32px;
  border-radius: 2px;
}

.tier-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.tier-card .col-title {
  font-family: var(--font-sans);
}

.badge-featured {
  display: inline-block;
  background: var(--eh-accent);
  color: var(--eh-near-black);
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.faq-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.faq-item {
  border-bottom: 1px solid rgba(97, 5, 54, 0.12);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  font-family: var(--font-sans);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--eh-burgundy);
}

.faq-body {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
}

/* About pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--eh-line);
  padding: 28px;
}

.pillar-card h3 {
  color: var(--eh-burgundy);
  margin: 0 0 12px;
}

/* Contact */
.contact-layout {
  display: grid;
  min-height: calc(100vh - 64px);
  grid-template-columns: 1fr 1.1fr;
}

.contact-aside {
  background: var(--eh-burgundy);
  color: #fff;
  padding: 3rem 2rem;
}

.contact-aside h2 {
  font-family: var(--font-serif);
  color: #fff;
  margin-top: 0;
  font-size: 2rem;
}

.contact-aside a {
  color: var(--eh-accent);
}

.contact-main {
  padding: 3rem 2rem;
  background: #fff;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
}

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

.alert {
  padding: 0.85rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.alert--success {
  background: rgba(255, 246, 5, 0.35);
  border: 1px solid var(--eh-accent);
  color: var(--eh-near-black);
}

.alert--err {
  border: 1px solid #c00;
  background: #fee;
  color: #800;
}

/* Footer */
.eh-footer {
  background: var(--eh-near-black);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-brand .logo {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: block;
  color: #fff;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eh-accent);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #999;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #555;
  margin: 0;
}

/* Scroll animation helper */
.eh-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.eh-animate.eh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Not found */
.not-found-wrap {
  padding: 120px 24px 80px;
  text-align: center;
}

.not-found-wrap h1 {
  color: var(--eh-burgundy);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .featured-block {
    grid-template-columns: 1fr;
  }
  .featured-block.reverse {
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .card-body {
    grid-template-columns: 1fr;
  }
  .card-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--eh-line);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
