/* ============================================================
   ELITE HYBRID — COMPLETE DESIGN SYSTEM
   Version: 1.0.0
   Gold: #C9A84C | Black: #080808
   Heading: Bebas Neue | Body: Inter
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   01. Header / Navigation
   02. Typography System
   03. Buttons
   04. Layout Utilities
   05. Hero Sections
   06. Section Backgrounds
   07. Stats Bar
   08. Pillar Grid / Feature Cards
   09. Module List (Masterclass)
   10. Two-Column Layout
   11. Tags / Labels
   12. Callout Blocks
   13. Quote Blocks
   14. Founder / Dr. Lawing Styles
   15. Protocol List
   16. Bio Table
   17. Framework / HPI Styles
   18. Seniors Section
   19. Contact Section
   20. Footer
   21. Animations & Transitions
   22. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. HEADER / NAVIGATION
   ============================================================ */

.eh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.eh-header.is-scrolled {
    background-color: rgba(8, 8, 8, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.eh-header.is-hidden {
    transform: translateY(-100%);
}

.eh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    gap: 32px;
}

/* Logo */
.eh-logo {
    text-decoration: none !important;
    flex-shrink: 0;
}

.eh-logo__text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.14em;
    color: #FFFFFF !important;
    line-height: 1;
}

.eh-logo__text em {
    color: #C9A84C !important;
    font-style: normal;
}

.eh-logo img {
    height: 48px;
    width: auto;
}

/* Desktop Nav */
.eh-nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.eh-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.eh-nav__item {
    margin: 0;
    padding: 0;
}

.eh-nav__link,
.eh-nav__list > li > a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    padding: 8px 14px !important;
    border-radius: 4px;
    transition: color 0.25s ease, background-color 0.25s ease !important;
    white-space: nowrap;
    display: block;
}

.eh-nav__link:hover,
.eh-nav__list > li > a:hover,
.eh-nav__list > li.current-menu-item > a,
.eh-nav__list > li.current_page_item > a {
    color: #C9A84C !important;
    background-color: rgba(201, 168, 76, 0.08) !important;
}

/* Header CTA Button */
.eh-header__cta {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 15px !important;
    letter-spacing: 0.12em !important;
    color: #080808 !important;
    background-color: #C9A84C !important;
    text-decoration: none !important;
    padding: 11px 22px !important;
    border-radius: 4px;
    border: 2px solid #C9A84C;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
    display: inline-block;
}

.eh-header__cta:hover {
    background-color: #A8893C !important;
    border-color: #A8893C !important;
    color: #080808 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35) !important;
}

/* Header Spacer */
.eh-header-spacer {
    height: 72px;
}

/* Hamburger */
.eh-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.eh-hamburger:hover {
    background-color: rgba(201, 168, 76, 0.1);
}

.eh-hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #C9A84C;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.eh-hamburger.is-active .eh-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.eh-hamburger.is-active .eh-hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.eh-hamburger.is-active .eh-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.eh-mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    overflow-y: auto;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.eh-mobile-menu.is-open {
    transform: translateX(0);
}

.eh-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 32px;
    gap: 8px;
    min-height: 100%;
}

.eh-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.eh-mobile-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eh-mobile-menu__list li a {
    display: block;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 36px !important;
    letter-spacing: 0.1em !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    padding: 18px 0 !important;
    transition: color 0.2s ease !important;
}

.eh-mobile-menu__list li a:hover,
.eh-mobile-menu__list li.current-menu-item a {
    color: #C9A84C !important;
}

.eh-mobile-menu__cta {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 20px !important;
    letter-spacing: 0.12em !important;
    color: #080808 !important;
    background-color: #C9A84C;
    text-decoration: none !important;
    padding: 16px 40px !important;
    border-radius: 4px;
    margin-top: 32px;
    border: 2px solid #C9A84C;
    transition: all 0.25s ease !important;
}

.eh-mobile-menu__cta:hover {
    background-color: #A8893C !important;
    border-color: #A8893C !important;
    color: #080808 !important;
}

.eh-mobile-menu__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 32px;
    text-align: center;
}


/* ============================================================
   02. TYPOGRAPHY SYSTEM
   ============================================================ */

/* Overline / Label */
.eh-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 20px;
}

/* Section Heading */
.eh-section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    color: #FFFFFF;
    line-height: 1.0;
    letter-spacing: 0.04em;
    margin: 0 0 24px 0;
}

.eh-section-heading--large {
    font-size: clamp(52px, 8vw, 96px);
}

.eh-section-heading--medium {
    font-size: clamp(32px, 4.5vw, 56px);
}

.eh-section-heading--small {
    font-size: clamp(24px, 3vw, 40px);
}

/* Gold accent span in headings */
.eh-gold {
    color: #C9A84C;
}

/* Lead / Intro Paragraph */
.eh-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
}

.eh-lead--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Body text */
.eh-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

/* Small / Caption */
.eh-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

/* Monospace / Code-style */
.eh-mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
}


/* ============================================================
   03. BUTTONS
   ============================================================ */

.btn-primary,
.btn-outline,
.btn-ghost {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-decoration: none !important;
    padding: 16px 40px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

/* Primary — gold fill */
.btn-primary {
    background-color: #C9A84C;
    color: #080808 !important;
    border-color: #C9A84C;
}

.btn-primary:hover {
    background-color: #A8893C;
    border-color: #A8893C;
    color: #080808 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* Outline — gold border, transparent fill */
.btn-outline {
    background-color: transparent;
    color: #C9A84C !important;
    border-color: #C9A84C;
}

.btn-outline:hover {
    background-color: #C9A84C;
    color: #080808 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

/* Ghost — subtle white */
.btn-ghost {
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Button group */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */

.eh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.eh-container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.eh-container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Two-column split */
.eh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eh-two-col--60-40 {
    grid-template-columns: 1.5fr 1fr;
}

.eh-two-col--40-60 {
    grid-template-columns: 1fr 1.5fr;
}

.eh-two-col--reverse {
    direction: rtl;
}

.eh-two-col--reverse > * {
    direction: ltr;
}

/* Section spacing */
.eh-section {
    padding: 120px 0;
}

.eh-section--tight {
    padding: 80px 0;
}

.eh-section--hero {
    padding: 160px 0;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }


/* ============================================================
   05. HERO SECTIONS
   ============================================================ */

.eh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #080808;
}

.eh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 0;
}

.eh-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.3) 0%,
        rgba(8, 8, 8, 0.6) 50%,
        rgba(8, 8, 8, 0.95) 100%
    );
}

.eh-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.eh-hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 24px;
    display: block;
}

.eh-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 120px);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.eh-hero__title em {
    color: #C9A84C;
    font-style: normal;
}

.eh-hero__subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 3vw, 36px);
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px 0;
}

.eh-hero__desc {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 48px;
}

.eh-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Gold gradient divider line */
.eh-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A84C, rgba(201, 168, 76, 0.3));
    border-radius: 2px;
    margin: 0 0 32px 0;
}

.eh-divider--center {
    margin: 0 auto 32px;
}


/* ============================================================
   06. SECTION BACKGROUNDS
   ============================================================ */

.section-dark {
    background-color: #080808 !important;
}

.section-darker {
    background-color: #111111 !important;
}

.section-dark-3 {
    background-color: #1A1A1A !important;
}

/* Gold gradient border top */
.section-gold-top {
    border-top: 1px solid rgba(201, 168, 76, 0.25);
}

/* Subtle grid pattern overlay */
.section-grid-overlay {
    position: relative;
}

.section-grid-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.section-grid-overlay > * {
    position: relative;
    z-index: 1;
}

/* Radial gold glow spot */
.section-glow::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


/* ============================================================
   07. STATS BAR
   ============================================================ */

.eh-stats-bar {
    background-color: #111111;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 48px 0;
}

.eh-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.eh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

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

.eh-stat__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 8px;
}

.eh-stat__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   08. PILLAR GRID / FEATURE CARDS
   ============================================================ */

.eh-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.eh-pillar-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.eh-pillar-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.eh-card {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.eh-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A84C, rgba(201, 168, 76, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eh-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.08);
}

.eh-card:hover::before {
    opacity: 1;
}

.eh-card__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    display: block;
}

.eh-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.eh-card__tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.eh-card__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 28px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.04em;
    margin: 0 0 16px 0 !important;
    line-height: 1.1;
}

.eh-card__body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Pillar accent card variant */
.eh-card--pillar {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.eh-card--gold-accent {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, #111111 100%);
    border-color: rgba(201, 168, 76, 0.3);
}


/* ============================================================
   09. MODULE LIST (MASTERCLASS)
   ============================================================ */

.eh-module-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.eh-module {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 36px 40px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.eh-module:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateX(4px);
}

.eh-module__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(201, 168, 76, 0.25);
    line-height: 1;
    text-align: center;
}

.eh-module__content {
    display: flex;
    flex-direction: column;
}

.eh-module__label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 10px;
}

.eh-module__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 30px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.04em;
    margin: 0 0 12px 0 !important;
    line-height: 1.1;
}

.eh-module__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.eh-module__topics {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.eh-module__topics li {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
    margin: 0;
}


/* ============================================================
   10. TWO-COLUMN LAYOUTS
   ============================================================ */

.eh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eh-split--text-right .eh-split__media { order: 2; }
.eh-split--text-right .eh-split__text  { order: 1; }

.eh-split__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.eh-split__media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.eh-split__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    pointer-events: none;
}

/* Gold frame accent */
.eh-split__media--framed::before {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    z-index: -1;
}

.eh-split__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eh-split__text p {
    margin-bottom: 20px;
}


/* ============================================================
   11. TAGS / LABELS
   ============================================================ */

.eh-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.eh-tag--white {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.eh-tag--dark {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.eh-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}


/* ============================================================
   12. CALLOUT BLOCKS
   ============================================================ */

.eh-callout {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 4px solid #C9A84C;
    border-radius: 8px;
    padding: 32px 36px;
    margin: 40px 0;
}

.eh-callout__label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 12px;
    display: block;
}

.eh-callout__text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Dark callout variant */
.eh-callout--dark {
    background: #111111;
    border-color: rgba(201, 168, 76, 0.2);
    border-left-color: #C9A84C;
}

/* Info box */
.eh-infobox {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
}


/* ============================================================
   13. QUOTE BLOCKS
   ============================================================ */

.eh-quote {
    position: relative;
    padding: 48px 48px 48px 64px;
    background: #111111;
    border-radius: 12px;
    border-left: 4px solid #C9A84C;
    margin: 40px 0;
}

.eh-quote::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.eh-quote__text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 0.04em;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.eh-quote__attr {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.7);
    margin: 0;
}

/* Centered pull-quote */
.eh-pullquote {
    text-align: center;
    padding: 80px 40px;
    position: relative;
}

.eh-pullquote__text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: 0.04em;
    max-width: 900px;
    margin: 0 auto 24px;
}

.eh-pullquote__text em {
    color: #C9A84C;
    font-style: normal;
}

.eh-pullquote__attr {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   14. FOUNDER / DR. LAWING SPECIFIC STYLES
   ============================================================ */

.eh-founder-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.eh-founder-portrait {
    position: relative;
}

.eh-founder-portrait__img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
}

.eh-founder-portrait__frame {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 50%;
    border: 2px solid rgba(201, 168, 76, 0.35);
    border-radius: 12px;
    z-index: -1;
}

.eh-founder-portrait__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 8px;
    padding: 16px 20px;
}

.eh-founder-portrait__badge-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0.08em;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.eh-founder-portrait__badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #C9A84C;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.eh-founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.eh-credential {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 8px;
    transition: border-color 0.25s ease;
}

.eh-credential:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.eh-credential__dot {
    width: 8px;
    height: 8px;
    background: #C9A84C;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.eh-credential__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.eh-credential__text strong {
    color: #FFFFFF;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}


/* ============================================================
   15. PROTOCOL LIST
   ============================================================ */

.eh-protocol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eh-protocol-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    margin: 0;
}

.eh-protocol-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #C9A84C;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.eh-protocol-list li::after {
    content: none;
}

/* Numbered protocol list */
.eh-protocol-list--numbered {
    counter-reset: protocol-counter;
}

.eh-protocol-list--numbered li {
    counter-increment: protocol-counter;
}

.eh-protocol-list--numbered li::before {
    content: counter(protocol-counter, decimal-leading-zero);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #C9A84C;
    background: none;
    border: none;
    width: auto;
    height: auto;
    min-width: 32px;
    margin-top: 0;
    line-height: 1.65;
}

/* Check list variant */
.eh-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eh-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
}

.eh-check-list li::before {
    content: '✓';
    font-size: 13px;
    color: #C9A84C;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   16. BIO TABLE
   ============================================================ */

.eh-bio-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.eh-bio-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease;
}

.eh-bio-table tr:hover {
    background-color: rgba(201, 168, 76, 0.04);
}

.eh-bio-table td {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    vertical-align: top;
}

.eh-bio-table td:first-child {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    white-space: nowrap;
    padding-right: 32px;
    width: 160px;
}

.eh-bio-table td:last-child {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   17. FRAMEWORK / HPI STYLES
   ============================================================ */

.eh-hpi-diagram {
    position: relative;
    padding: 60px 40px;
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    text-align: center;
}

.eh-hpi-center {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid #C9A84C;
    border-radius: 50%;
    margin: 0 auto 40px;
}

.eh-hpi-center__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #C9A84C;
    letter-spacing: 0.08em;
    line-height: 1;
}

.eh-hpi-center__sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.eh-pillar-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.eh-pillar-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.eh-pillar-item:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.eh-pillar-item__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.eh-pillar-item__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 24px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.04em;
    margin: 0 0 12px 0 !important;
}

.eh-pillar-item__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* AI Caddy Section */
.eh-ai-caddy-box {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(17, 17, 17, 1) 60%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 16px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.eh-ai-caddy-box::before {
    content: 'AI';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(201, 168, 76, 0.04);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}


/* ============================================================
   18. SENIORS SECTION
   ============================================================ */

.eh-seniors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.eh-seniors-card {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.eh-seniors-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
}

.eh-seniors-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.eh-seniors-card__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 24px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.06em;
    margin: 0 0 14px 0 !important;
}

.eh-seniors-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Age-specific protocol boxes */
.eh-age-protocol {
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 24px;
}

.eh-age-protocol__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.eh-age-protocol__badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.eh-age-protocol__title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 28px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}


/* ============================================================
   19. CONTACT SECTION
   ============================================================ */

.eh-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.eh-contact-form {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 48px;
}

.eh-form-group {
    margin-bottom: 24px;
}

.eh-form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.eh-form-input,
.eh-form-textarea,
.eh-form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    transition: border-color 0.25s ease;
    outline: none;
    -webkit-appearance: none;
}

.eh-form-input:focus,
.eh-form-textarea:focus,
.eh-form-select:focus {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.04);
}

.eh-form-input::placeholder,
.eh-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

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

/* Contact info blocks */
.eh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.eh-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.eh-contact-info-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.eh-contact-info-item__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 6px;
    display: block;
}

.eh-contact-info-item__value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


/* ============================================================
   20. FOOTER
   ============================================================ */

.eh-footer {
    background-color: #080808;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* Tagline bar */
.eh-footer__tagline-bar {
    background: #C9A84C;
    padding: 16px 0;
    text-align: center;
}

.eh-footer__tagline-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.2em;
    color: #080808;
    margin: 0;
    font-weight: normal;
}

/* Main footer */
.eh-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.eh-footer__main {
    padding: 80px 0 60px;
}

.eh-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Footer columns */
.eh-footer__col-heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 18px !important;
    color: #FFFFFF !important;
    letter-spacing: 0.12em;
    margin: 0 0 24px 0 !important;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Brand column */
.eh-footer__logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.14em;
    color: #FFFFFF !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 20px;
}

.eh-footer__logo em {
    color: #C9A84C !important;
    font-style: normal;
}

.eh-footer__brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
}

.eh-footer__brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.6);
    margin: 0;
}

/* Nav lists */
.eh-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eh-footer__nav-list li {
    margin: 0;
    padding: 0;
}

.eh-footer__nav-list li a,
.eh-footer__nav-list a {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: block;
    padding: 3px 0;
}

.eh-footer__nav-list li a:hover,
.eh-footer__nav-list a:hover {
    color: #C9A84C !important;
}

/* Connect column */
.eh-footer__connect-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px 0;
}

.eh-footer__cta {
    display: block;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 15px !important;
    letter-spacing: 0.12em !important;
    text-align: center;
    text-decoration: none !important;
    padding: 14px 24px !important;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: all 0.25s ease !important;
}

.eh-footer__cta:not(.eh-footer__cta--outline) {
    background: #C9A84C;
    color: #080808 !important;
    border: 2px solid #C9A84C;
}

.eh-footer__cta:not(.eh-footer__cta--outline):hover {
    background: #A8893C !important;
    border-color: #A8893C !important;
    color: #080808 !important;
}

.eh-footer__cta--outline {
    background: transparent;
    color: #C9A84C !important;
    border: 2px solid rgba(201, 168, 76, 0.4);
}

.eh-footer__cta--outline:hover {
    border-color: #C9A84C !important;
    background: rgba(201, 168, 76, 0.08) !important;
    color: #C9A84C !important;
}

/* Social Links */
.eh-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.eh-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.eh-footer__social-link:hover {
    background: rgba(201, 168, 76, 0.1) !important;
    border-color: rgba(201, 168, 76, 0.35) !important;
    color: #C9A84C !important;
}

/* Footer bottom */
.eh-footer__bottom {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.eh-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.eh-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.eh-footer__legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eh-footer__legal-links a {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.eh-footer__legal-links a:hover {
    color: #C9A84C !important;
}

.eh-footer__legal-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}


/* ============================================================
   21. ANIMATIONS & TRANSITIONS
   ============================================================ */

/* Fade-in on scroll (add class via JS or Divi animation) */
@keyframes eh-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eh-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

.eh-animate-fade-up {
    animation: eh-fadeInUp 0.7s ease forwards;
}

.eh-animate-delay-1 { animation-delay: 0.1s; }
.eh-animate-delay-2 { animation-delay: 0.2s; }
.eh-animate-delay-3 { animation-delay: 0.3s; }
.eh-animate-delay-4 { animation-delay: 0.4s; }

/* Gold shimmer text effect */
.eh-shimmer {
    background: linear-gradient(
        90deg,
        #C9A84C 0%,
        #F0D080 40%,
        #C9A84C 60%,
        #A8893C 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eh-shimmer 4s linear infinite;
}

/* Pulse animation for CTAs */
@keyframes eh-pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50%       { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

.eh-pulse {
    animation: eh-pulse-gold 2.5s ease infinite;
}


/* ============================================================
   22. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
    .eh-header__inner {
        padding: 0 24px;
    }

    .eh-nav {
        display: none;
    }

    .eh-header__cta {
        display: none;
    }

    .eh-hamburger {
        display: flex !important;
    }

    .eh-two-col,
    .eh-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .eh-two-col--reverse,
    .eh-split--text-right {
        direction: ltr;
    }

    .eh-split__media img {
        height: 400px;
    }

    .eh-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eh-pillar-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .eh-stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eh-stat:nth-child(2) {
        border-right: none;
    }

    .eh-stat:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .eh-module {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 28px 32px;
    }

    .eh-founder-hero {
        grid-template-columns: 1fr;
    }

    .eh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .eh-footer__col--brand {
        grid-column: 1 / -1;
    }

    .eh-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .eh-ai-caddy-box {
        padding: 40px;
    }

    .eh-container,
    .eh-container--wide,
    .eh-container--narrow {
        padding: 0 24px;
    }

    .eh-section {
        padding: 80px 0;
    }
}

/* Mobile — 768px */
@media (max-width: 768px) {
    .eh-pillar-grid,
    .eh-pillar-grid--2,
    .eh-pillar-grid--4 {
        grid-template-columns: 1fr;
    }

    .eh-seniors-grid {
        grid-template-columns: 1fr;
    }

    .eh-pillar-row {
        grid-template-columns: 1fr;
    }

    .eh-stats-bar__grid {
        grid-template-columns: 1fr 1fr;
    }

    .eh-hero__content {
        padding: 0 24px;
    }

    .eh-module {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px;
    }

    .eh-module__number {
        font-size: 32px;
        text-align: left;
    }

    .eh-quote {
        padding: 32px 24px 32px 36px;
    }

    .eh-quote::before {
        font-size: 80px;
        left: 10px;
    }

    .eh-contact-form {
        padding: 32px 24px;
    }

    .eh-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eh-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .eh-footer__main {
        padding: 60px 0 40px;
    }

    .eh-footer__container {
        padding: 0 24px;
    }

    .eh-ai-caddy-box {
        padding: 32px 24px;
    }

    .eh-ai-caddy-box::before {
        display: none;
    }

    .eh-split__media img {
        height: 300px;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline,
    .btn-ghost {
        text-align: center;
    }

    .eh-section {
        padding: 60px 0;
    }

    .eh-infobox {
        padding: 28px 24px;
    }

    .eh-callout {
        padding: 24px;
    }

    .eh-hpi-diagram {
        padding: 40px 24px;
    }
}

/* Small Mobile — 480px */
@media (max-width: 480px) {
    .eh-header__inner {
        padding: 0 16px;
    }

    .eh-header-spacer {
        height: 64px;
    }

    .eh-hero__title {
        font-size: clamp(44px, 12vw, 72px);
    }

    .eh-stats-bar__grid {
        grid-template-columns: 1fr;
    }

    .eh-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .eh-founder-portrait__frame {
        display: none;
    }

    .eh-mobile-menu__list li a {
        font-size: 28px !important;
    }

    .eh-container,
    .eh-container--wide,
    .eh-container--narrow {
        padding: 0 16px;
    }

    .eh-footer__container {
        padding: 0 16px;
    }
}

/* ============================================================
   DIVI BUILDER SPECIFIC OVERRIDES
   ============================================================ */

/* Remove default Divi section borders */
.et_pb_section {
    padding: 0 !important;
}

.et_pb_row {
    max-width: 1200px !important;
    padding: 0 40px !important;
    width: 100% !important;
}

.et_pb_row.et_pb_row_fullwidth {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Override Divi's default link color */
.et_pb_module a {
    color: #C9A84C;
}

.et_pb_module a:hover {
    color: #D4B86A;
}

/* Divi button alignment */
.et_pb_button_module_wrapper {
    margin-top: 8px;
}

/* Divi blurb module */
.et_pb_blurb_content {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 36px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.et_pb_blurb_content:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
}

.et_pb_blurb .et_pb_main_blurb_image {
    margin-bottom: 24px;
}

.et_pb_blurb_description {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Divi divider module */
.et_pb_divider {
    border-color: rgba(201, 168, 76, 0.2) !important;
}

/* Responsive on Divi rows */
@media (max-width: 980px) {
    .et_pb_row {
        padding: 0 24px !important;
    }
}

@media (max-width: 480px) {
    .et_pb_row {
        padding: 0 16px !important;
    }
}
