/* ══════════════════════════════════════════════════════════════
   EANH.Web — site.css
   Bootstrap 5.3 overrides & brand-specific styles only.
   Bootstrap handles: reset, grid, utilities, forms, navbar.
══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --eanh-navy: #131c30;
    --eanh-navy-mid: #263561;
    --eanh-navy-light: #3b4f82;
    --eanh-gold: #b8973a;
    --eanh-gold-light: #d4b55a;
    --eanh-cream: #f7f5f0;
    --eanh-cream-dark: #ede9e0;
    --eanh-text-muted: #6b6760;
    --eanh-text-main: #1e1c17;
}

/* ── Global ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--eanh-cream);
    color: var(--eanh-text-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'EB Garamond', serif;
    font-weight: 500;
}

/* ── Section spacing helper ─────────────────────────────────── */
.py-6 { padding-top: 50px !important; padding-bottom: 50px !important; }
.pt-navbar { padding-top: 144px !important; } /* hero top = navbar height + breathing room */

/* ── Background helpers ─────────────────────────────────────── */
.bg-eanh-cream      { background-color: var(--eanh-cream) !important; }
.bg-eanh-cream-dark { background-color: var(--eanh-cream-dark) !important; }
.bg-eanh-navy       { background-color: var(--eanh-navy) !important; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.eanh-navbar {
    background-color: rgba(19, 28, 48, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184, 151, 58, 0.25);
    min-height: 72px;
    transition: border-color 0.3s;
    z-index: 1030;          /* Bootstrap navbar default — explicit */
    position: fixed;        /* ensure fixed stacking context is correct */
}

/* Dropdown must escape the navbar stacking context.
   Bootstrap handles .show — we just need the right z-index and colours. */
.eanh-navbar .dropdown-menu {
    z-index: 1031 !important;
    margin-top: 0 !important;   /* flush under the navbar border */
}

.eanh-logo {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.eanh-logo .logo {
        max-width: 70px;
        height: auto;
        padding-right: 5px;
    }

.eanh-logo span { color: var(--eanh-gold); }

.eanh-nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.eanh-nav-link:hover { color: var(--eanh-gold-light) !important; }

.eanh-btn-nav {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--eanh-gold);
    color: var(--eanh-navy) !important;
    border: none;
    border-radius: 2px;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.2s;
    text-decoration: none;
}

.eanh-btn-nav:hover { background-color: var(--eanh-gold-light); }

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.eanh-btn-primary {
    background-color: var(--eanh-gold);
    color: var(--eanh-navy) !important;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: background-color 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}

.eanh-btn-primary:hover {
    background-color: var(--eanh-gold-light);
    transform: translateY(-1px);
}

.eanh-btn-ghost {
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 14px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.eanh-btn-ghost:hover {
    color: #fff !important;
    border-color: var(--eanh-gold);
}

/* ── SHARED TYPOGRAPHY ──────────────────────────────────────── */
.eanh-eyebrow {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eanh-gold);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eanh-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--eanh-gold);
    flex-shrink: 0;
}

.eanh-section-title {
    font-size: clamp(28px, 3.2vw, 44px);
    color: var(--eanh-navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

.eanh-section-sub {
    font-size: 17px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.75;
    max-width: 560px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.eanh-hero {
    /* min-height: 100vh; */
    background-color: var(--eanh-navy);
    padding-top: 72px; /* navbar offset */
    position: relative;
    overflow: hidden;
}

/* Subtle grid overlay */
.eanh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,  rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg,   rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
}

.eanh-hero-accent {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(184,151,58,0.07) 100%);
    pointer-events: none;
}

.eanh-hero-left { position: relative; z-index: 2; }

.eanh-hero-headline {
    font-size: clamp(38px, 4.8vw, 52px);
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 28px;
}

.eanh-hero-headline em { font-style: italic; color: var(--eanh-gold-light); }

.eanh-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 300;
    line-height: 1.78;
    margin-bottom: 36px;
}
.w-90 {
    width: 90% !important;
}

/* Stats */
.eanh-stat-item { padding-right: 24px; }
.eanh-stat-item + .eanh-stat-item { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.10); }

.eanh-stat-number {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    color: var(--eanh-gold-light);
    line-height: 1;
    font-weight: 500;
    margin-bottom: 4px;
}

.eanh-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero right placeholder */
.eanh-hero-right {
    position: relative;
    z-index: 2;
    border-left: 1px solid rgba(184, 151, 58, 0.2);
    min-height: 100%;
}

.eanh-img-placeholder {
    aspect-ratio: 4/3;
    border: 1px solid rgba(184, 151, 58, 0.28);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.22);
    font-size: 14px;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.eanh-img-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}

.eanh-img-icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(184, 151, 58, 0.38);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}

.eanh-placeholder-sub { font-size: 11px; opacity: 0.5; }

/* ── SERVICES ───────────────────────────────────────────────── */
/* Hairline grid effect between cards */
.eanh-services-grid {
    background-color: var(--eanh-cream-dark);
    gap: 0smallpx !important; /* Bootstrap row gap override */
    --bs-gutter-x: 0;
    --bs-gutter-y: 2px;
}

.eanh-service-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s;
}

.eanh-service-card:hover { background-color: #fdfcf9; }

.eanh-service-number {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--eanh-gold);
    letter-spacing: 0.15em;
}

.eanh-service-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(26, 39, 68, 0.12);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    background-color: var(--eanh-cream);
}

.eanh-service-icon svg {
    width: 22px; height: 22px;
    stroke: var(--eanh-navy-mid);
}

.eanh-service-title {
    font-size: 22px;
    color: var(--eanh-navy);
    margin-bottom: 12px;
}

.eanh-service-desc {
    font-size: 15px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.75;
    flex: 1;
}

.eanh-service-list li { font-size: 14px; color: var(--eanh-text-muted); font-weight: 300; }

.eanh-bullet-dot {
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--eanh-gold);
    margin-top: 9px;
}

.eanh-service-arrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--eanh-navy-light);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s;
}

.eanh-service-card:hover .eanh-service-arrow { gap: 14px !important; }

/* Sub-cards inside wide/full-row services */
.eanh-sub-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--eanh-gold);
    font-weight: 500;
}

.eanh-sub-card {
    background-color: var(--eanh-cream);
    border: 1px solid rgba(26, 39, 68, 0.06);
    border-radius: 3px;
}

.eanh-sub-title {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--eanh-navy);
}

.eanh-sub-desc {
    font-size: 14px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.65;
}

/* Helper: right border on lg+ only */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(26, 39, 68, 0.08) !important;
    }
}

/* ── APPROACH ───────────────────────────────────────────────── */
.eanh-approach-image {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 151, 58, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.eanh-approach-image::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255,255,255,0.015) 24px, rgba(255,255,255,0.015) 25px);
}

.eanh-approach-img-icon {
    width: 56px; height: 56px;
    border: 1px solid rgba(184, 151, 58, 0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}

.eanh-step { transition: opacity 0.2s; }
.eanh-step:first-child { padding-top: 0 !important; }

.eanh-step-num {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--eanh-gold);
    letter-spacing: 0.10em;
    min-width: 36px;
    padding-top: 3px;
}

.eanh-step-title {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.eanh-step-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
    line-height: 1.75;
}

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.eanh-industry-card {
    background-color: #fff;
    border: 1px solid rgba(26, 39, 68, 0.07);
    border-radius: 3px;
    transition: border-color 0.2s, transform 0.2s;
}

.eanh-industry-card:hover {
    border-color: var(--eanh-gold);
    transform: translateY(-3px);
}

.eanh-industry-icon {
    width: 44px; height: 44px;
    background-color: var(--eanh-cream);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
}

.eanh-industry-icon svg {
    width: 20px; height: 20px;
    stroke: var(--eanh-navy-mid);
}

.eanh-industry-name {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--eanh-navy);
    margin-bottom: 6px;
}

.eanh-industry-desc {
    font-size: 14px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.65;
}

/* ── WHY EANH ───────────────────────────────────────────────── */
.eanh-why-num {
    font-family: 'EB Garamond', serif;
    font-size: 34px;
    color: var(--eanh-cream-dark);
    line-height: 1;
    font-weight: 500;
    min-width: 48px;
    text-align: right;
}

.eanh-why-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--eanh-navy);
}

.eanh-why-desc {
    font-size: 14px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Metric boxes */
.eanh-metric-box { border-radius: 3px; }

.eanh-metric-dark  { background-color: var(--eanh-navy); }
.eanh-metric-gold  { background-color: var(--eanh-gold); }
.eanh-metric-light { background-color: var(--eanh-cream-dark); }

.eanh-metric-value {
    font-family: 'EB Garamond', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.eanh-metric-dark  .eanh-metric-value { color: #fff; }
.eanh-metric-gold  .eanh-metric-value { color: var(--eanh-navy); }
.eanh-metric-light .eanh-metric-value { color: var(--eanh-navy); }

.eanh-metric-label { font-size: 14px; font-weight: 300; line-height: 1.4; }

.eanh-metric-dark  .eanh-metric-label { color: rgba(255,255,255,0.48); }
.eanh-metric-gold  .eanh-metric-label { color: rgba(26,39,68,0.60); }
.eanh-metric-light .eanh-metric-label { color: var(--eanh-text-muted); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.eanh-cta-section {
    background-color: var(--eanh-navy);
    border-top: 2px solid var(--eanh-gold);
}

.eanh-cta-title {
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    margin-bottom: 12px;
}

.eanh-cta-title em { font-style: italic; color: var(--eanh-gold-light); }

.eanh-cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
}

.eanh-cta-phone { font-size: 16px; color: rgba(255,255,255,0.38); }
.eanh-cta-phone a { color: var(--eanh-gold-light); text-decoration: none; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.eanh-footer { background-color: #0f1a35; }

.eanh-footer-logo {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
}

.eanh-footer-logo span { color: var(--eanh-gold); }

.eanh-footer-tagline {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    max-width: 260px;
    line-height: 1.65;
}

.eanh-footer-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-bottom: 14px;
}

.eanh-footer-links li { margin-bottom: 10px; }

.eanh-footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s;
}

.eanh-footer-links a:hover { color: var(--eanh-gold-light); }

.eanh-footer-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

a.eanh-footer-copy:hover { color: var(--eanh-gold-light); }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.eanh-contact-hero {
    background-color: var(--eanh-navy);
    border-bottom: 2px solid var(--eanh-gold);
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

/* Form overrides on top of Bootstrap's form-control */
.eanh-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--eanh-navy);
    letter-spacing: 0.02em;
    margin-bottom: 5px;
}

.eanh-req { color: var(--eanh-gold); }

.eanh-input {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--eanh-text-main);
    background-color: #fff;
    border: 1px solid rgba(26, 39, 68, 0.18);
    border-radius: 2px;
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eanh-input:focus {
    border-color: var(--eanh-navy-mid);
    box-shadow: 0 0 0 3px rgba(38, 53, 97, 0.08);
    outline: none;
}

.eanh-field-error { color: #c0392b; display: block; margin-top: 4px; }

.eanh-form-note { font-size: 14px; color: var(--eanh-text-muted); font-weight: 300; }

/* Contact info sidebar card */
.eanh-contact-info-card {
    background-color: var(--eanh-navy);
    border-radius: 3px;
}

.eanh-contact-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 500;
}

.eanh-contact-link {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.eanh-contact-link:hover { color: var(--eanh-gold-light); }

.eanh-contact-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 300;
    line-height: 1.65;
}

/* Success alert */
.eanh-alert-success {
    background-color: #eaf5f0;
    border: 1px solid #2e7d57;
    border-radius: 3px;
    font-size: 14px;
    color: #1a5235;
}

/* ── FADE-IN ANIMATION ──────────────────────────────────────── */
.eanh-fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.eanh-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar scroll state ────────────────────────────────────── */
.eanh-navbar.scrolled {
    border-bottom-color: rgba(184, 151, 58, 0.45);
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE STYLES — DeLong.Web
   Additions for individual service detail pages, dropdowns,
   breadcrumbs, hero, and card variants.
══════════════════════════════════════════════════════════════ */

/* ── Dropdown nav ───────────────────────────────────────────── */
.eanh-dropdown {
    background-color: var(--eanh-navy);
    border: 1px solid rgba(184,151,58,0.25);
    border-radius: 3px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.40);
    z-index: 1031 !important;
    position: absolute !important;  /* must be absolute to escape flex parent */
}

.eanh-dropdown .dropdown-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    padding: 8px 20px;
    letter-spacing: 0.03em;
    transition: color 0.15s, background-color 0.15s;
}

.eanh-dropdown .dropdown-item:hover,
.eanh-dropdown .dropdown-item:focus {
    background-color: rgba(184,151,58,0.12);
    color: var(--eanh-gold-light);
}

.eanh-dropdown .dropdown-item.ps-4 {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    padding-left: 32px !important;
}

.eanh-dropdown .dropdown-item.ps-4:hover { color: var(--eanh-gold-light); }

.eanh-divider { border-color: rgba(184,151,58,0.15) !important; margin: 4px 0; }

.eanh-dropdown-header {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: var(--eanh-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    font-weight: 500;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.eanh-breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.eanh-breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.40); }
.eanh-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.eanh-breadcrumb .breadcrumb-item a:hover { color: var(--eanh-gold-light); }
.eanh-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.70); }
.eanh-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ── Service page hero ──────────────────────────────────────── */
.svc-hero {
    background-color: var(--eanh-navy);
    position: relative;
    overflow: hidden;
    padding-top: 72px; /* navbar offset */
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg,  rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
}

.svc-hero-accent {
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(184,151,58,0.06) 100%);
    pointer-events: none;
}

.svc-hero-headline {
    font-family: 'EB Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    color: #fff;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

.svc-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.58);
    font-weight: 300;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 0;
}

.svc-hero-img {
    object-fit: cover;
    max-height: 380px;
    width: 100%;
    border: 1px solid rgba(184,151,58,0.2);
}

.svc-hero-img-placeholder {
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184,151,58,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-family: 'EB Garamond', serif;
    font-size: 22px;
}

/* ── Service detail cards (on service pages) ────────────────── */
.svc-detail-card {
    background-color: #fff;
    border: 1px solid rgba(26,39,68,0.08);
    border-radius: 3px;
    transition: border-color 0.2s, transform 0.2s;
}

.svc-detail-card:hover {
    border-color: var(--eanh-gold);
    transform: translateY(-2px);
}

.svc-detail-title {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--eanh-navy);
    margin-bottom: 6px;
}

.svc-detail-desc {
    font-size: 13px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.65;
}

/* ── Homepage summary cards ─────────────────────────────────── */
.svc-summary-card {
    background-color: #fff;
    border: 1px solid rgba(26,39,68,0.08);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-summary-card:hover {
    border-color: rgba(184,151,58,0.4);
    box-shadow: 0 4px 24px rgba(19,28,48,0.08);
}

.svc-summary-number {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--eanh-gold);
    letter-spacing: 0.15em;
}

.svc-summary-title {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--eanh-navy);
    margin-bottom: 12px;
}

.svc-summary-desc {
    font-size: 15px;
    color: var(--eanh-text-muted);
    font-weight: 300;
    line-height: 1.75;
    flex: 1;
}

/* Service tags on homepage cards */
.svc-summary-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.svc-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--eanh-navy-mid);
    background: var(--eanh-cream-dark);
    border: 1px solid rgba(26,39,68,0.08);
    border-radius: 2px;
    padding: 4px 10px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background-color 0.2s, color 0.2s;
}

.svc-tag:hover {
    background-color: var(--eanh-gold);
    color: var(--eanh-navy);
    border-color: var(--eanh-gold);
}

/* ── Sub-service nav cards (dark bg sections) ───────────────── */
.svc-sub-nav-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,151,58,0.2);
    border-radius: 3px;
    transition: background-color 0.2s, border-color 0.2s;
}

.svc-sub-nav-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184,151,58,0.45);
}

.svc-sub-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,151,58,0.25);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
}

.svc-sub-icon svg {
    width: 20px; height: 20px;
    stroke: var(--eanh-gold-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-sub-nav-title {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.svc-sub-nav-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.7;
}

/* ── Related service cards (dark bg) ────────────────────────── */
.svc-related-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,151,58,0.18);
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.svc-related-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(184,151,58,0.45);
    transform: translateY(-2px);
}

.svc-related-title {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.svc-related-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}
