/* egypt-hist.xyz — prefix namespace eh-, sepia/sandstone palette, slab heading */
/* Base font: 17px, "Roboto Slab" + system-sans, container 1200px */

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --eh-sand:        #6b4a2e;
  --eh-sand-light:  #8a6440;
  --eh-indigo:      #2f4670;
  --eh-indigo-dark: #1e2f4d;
  --eh-cream:       #f5efe3;
  --eh-cream-deep:  #ede3d3;
  --eh-cream-mid:   #e8dcc8;
  --eh-white:       #fffdf9;
  --eh-text:        #2a1f14;
  --eh-text-muted:  #5c4432;
  --eh-border:      #c9b8a0;
  --eh-border-dark: #a08060;
  --eh-gold:        #b8862e;
  --eh-gold-light:  #d4a84b;

  --ff-head:  "Roboto Slab", Rockwell, "Courier New", Georgia, serif;
  --ff-body:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-base:  17px;
  --fs-sm:    14px;
  --fs-xs:    12px;
  --fs-lg:    19px;
  --fs-xl:    23px;
  --fs-2xl:   30px;
  --fs-3xl:   40px;
  --fs-4xl:   54px;
  --fs-5xl:   70px;

  --lh-base:  1.72;
  --lh-tight: 1.2;
  --lh-head:  1.1;

  --radius:   0;

  --shadow-sm:   0 1px 3px rgba(42,31,20,.10);
  --shadow-md:   0 3px 12px rgba(42,31,20,.14);
  --shadow-lg:   0 6px 28px rgba(42,31,20,.18);

  --container:   1200px;
  --gap:         28px;
  --gap-lg:      56px;
  --section-v:   88px;

  --transition: 180ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--eh-text);
  background: var(--eh-cream);
}

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

a {
  color: var(--eh-indigo);
  text-decoration: underline;
  transition: color var(--transition);
}

a:hover { color: var(--eh-sand); }

a:focus-visible {
  outline: 2px solid var(--eh-indigo);
  outline-offset: 3px;
  border-radius: 1px;
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  line-height: var(--lh-head);
  color: var(--eh-sand);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.6rem, 3.2vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.2rem, 2.2vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.eh-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eh-section {
  padding: var(--section-v) 0;
}

.eh-section--alt {
  background: var(--eh-cream-deep);
}

.eh-section--dark {
  background: var(--eh-sand);
  color: var(--eh-cream);
}

.eh-section--dark h2,
.eh-section--dark h3,
.eh-section--dark h4 {
  color: var(--eh-gold-light);
}

.eh-section--dark p,
.eh-section--dark li {
  color: var(--eh-cream);
}

.eh-section--indigo {
  background: var(--eh-indigo);
  color: var(--eh-cream);
}

.eh-section--indigo h2,
.eh-section--indigo h3 {
  color: var(--eh-gold-light);
}

.eh-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.eh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

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

.eh-flex {
  display: flex;
  gap: var(--gap);
}

.eh-section-head {
  margin-bottom: 48px;
}

.eh-section-head h2 {
  margin-bottom: 14px;
}

.eh-section-head p {
  font-size: var(--fs-lg);
  color: var(--eh-text-muted);
  max-width: 680px;
}

.eh-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 10px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.eh-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.eh-btn:focus-visible {
  outline: 2px solid var(--eh-indigo);
  outline-offset: 3px;
}

.eh-btn--fill {
  background: var(--eh-sand);
  color: var(--eh-white);
  border-color: var(--eh-sand);
}

.eh-btn--fill:hover {
  background: var(--eh-sand-light);
  border-color: var(--eh-sand-light);
  color: var(--eh-white);
}

.eh-btn--ghost {
  background: transparent;
  color: var(--eh-sand);
  border-color: var(--eh-sand);
}

.eh-btn--ghost:hover {
  background: var(--eh-sand);
  color: var(--eh-white);
}

.eh-btn--ghost-light {
  background: transparent;
  color: var(--eh-cream);
  border-color: var(--eh-cream);
}

.eh-btn--ghost-light:hover {
  background: var(--eh-cream);
  color: var(--eh-sand);
}

.eh-btn--indigo {
  background: var(--eh-indigo);
  color: var(--eh-white);
  border-color: var(--eh-indigo);
}

.eh-btn--indigo:hover {
  background: var(--eh-indigo-dark);
  border-color: var(--eh-indigo-dark);
  color: var(--eh-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.eh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--eh-indigo-dark);
  border-bottom: 3px solid var(--eh-gold);
  box-shadow: var(--shadow-md);
}

.eh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.eh-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.eh-header__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--eh-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--eh-indigo-dark);
  flex-shrink: 0;
}

.eh-header__logo-text {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--eh-gold-light);
  line-height: 1.2;
}

.eh-header__logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--eh-border);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eh-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.eh-nav__link {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--eh-border);
  text-decoration: none;
  padding: 6px 12px;
  letter-spacing: .03em;
  transition: color var(--transition), background var(--transition);
}

.eh-nav__link:hover,
.eh-nav__link[aria-current="page"] {
  color: var(--eh-gold-light);
  background: rgba(255,255,255,.06);
}

.eh-nav__link:focus-visible {
  outline: 2px solid var(--eh-gold-light);
  outline-offset: 2px;
}

.eh-nav__cta {
  margin-left: 8px;
  padding: 8px 18px;
  background: var(--eh-gold);
  color: var(--eh-indigo-dark);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
  border: 2px solid var(--eh-gold);
  transition: background var(--transition), color var(--transition);
}

.eh-nav__cta:hover {
  background: var(--eh-gold-light);
  border-color: var(--eh-gold-light);
  color: var(--eh-indigo-dark);
}

.eh-nav__cta:focus-visible {
  outline: 2px solid var(--eh-cream);
  outline-offset: 2px;
}

/* Mobile hamburger */
.eh-nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--eh-gold);
  color: var(--eh-gold);
  cursor: pointer;
  padding: 6px 10px;
  font-size: 20px;
  line-height: 1;
}

.eh-nav-toggle:focus-visible {
  outline: 2px solid var(--eh-cream);
  outline-offset: 2px;
}

/* ============================================================
   HERO — STATS LEFT, TEXT RIGHT
   ============================================================ */
.eh-hero {
  min-height: 580px;
  background: linear-gradient(135deg, var(--eh-indigo-dark) 0%, var(--eh-sand) 100%),
              url("../img/hero.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  padding: 72px 0;
  position: relative;
}

.eh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,47,77,.88) 0%, rgba(107,74,46,.72) 100%);
  pointer-events: none;
}

.eh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

.eh-hero__stats {
  border-right: 3px solid var(--eh-gold);
  padding-right: 48px;
}

.eh-hero__stat {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212,168,75,.3);
}

.eh-hero__stat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.eh-hero__stat-num {
  font-family: var(--ff-head);
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: var(--eh-gold);
  line-height: 1;
  display: block;
}

.eh-hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--eh-cream-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.eh-hero__content {
  color: var(--eh-cream);
}

.eh-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eh-gold-light);
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid var(--eh-gold);
  background: rgba(184,134,46,.15);
}

.eh-hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 52px);
  color: var(--eh-cream);
  line-height: 1.1;
  margin-bottom: 22px;
}

.eh-hero__lead {
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--eh-cream-deep);
  margin-bottom: 32px;
  max-width: 560px;
}

.eh-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   CARDS — HARD EDGE STYLE
   ============================================================ */
.eh-card {
  background: var(--eh-white);
  border: 2px solid var(--eh-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.eh-card:hover {
  border-color: var(--eh-sand);
  box-shadow: var(--shadow-md);
}

.eh-card__media {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--eh-border);
}

.eh-card__body {
  padding: 24px 22px 22px;
}

.eh-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 10px;
}

.eh-card__title {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  color: var(--eh-sand);
  margin-bottom: 10px;
  line-height: 1.25;
}

.eh-card__text {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.eh-card__link {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--eh-indigo);
  text-decoration: none;
  letter-spacing: .03em;
}

.eh-card__link:hover { color: var(--eh-sand); text-decoration: underline; }

/* Team card variant */
.eh-team-card {
  background: var(--eh-white);
  border: 2px solid var(--eh-border);
  text-align: center;
}

.eh-team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 2px solid var(--eh-border);
}

.eh-team-card__body {
  padding: 20px 16px;
}

.eh-team-card__name {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  color: var(--eh-sand);
  margin-bottom: 4px;
}

.eh-team-card__role {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 12px;
}

.eh-team-card__bio {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.6;
}

/* ============================================================
   TWO-COLUMN INFO SECTION
   ============================================================ */
.eh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.eh-split__img {
  width: 100%;
  border: 2px solid var(--eh-border-dark);
  display: block;
}

.eh-split__content { }

/* ============================================================
   TIMELINE
   ============================================================ */
.eh-timeline {
  position: relative;
  padding-left: 32px;
}

.eh-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--eh-border-dark);
}

.eh-timeline__item {
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--eh-border);
}

.eh-timeline__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.eh-timeline__dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--eh-gold);
  border: 2px solid var(--eh-sand);
}

.eh-timeline__year {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  color: var(--eh-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.eh-timeline__title {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  color: var(--eh-sand);
  margin-bottom: 8px;
}

.eh-timeline__text {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.eh-accordion {
  border: 2px solid var(--eh-border);
}

.eh-accordion__item {
  border-bottom: 1px solid var(--eh-border);
}

.eh-accordion__item:last-child { border-bottom: none; }

.eh-accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: var(--eh-white);
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--eh-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}

.eh-accordion__trigger:hover {
  background: var(--eh-cream-mid);
}

.eh-accordion__trigger:focus-visible {
  outline: 2px solid var(--eh-indigo);
  outline-offset: -2px;
}

.eh-accordion__trigger[aria-expanded="true"] {
  background: var(--eh-cream-deep);
  color: var(--eh-indigo);
}

.eh-accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--eh-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--eh-sand);
  transition: transform var(--transition);
}

.eh-accordion__trigger[aria-expanded="true"] .eh-accordion__icon {
  transform: rotate(45deg);
  border-color: var(--eh-indigo);
  color: var(--eh-indigo);
}

.eh-accordion__panel {
  display: none;
  padding: 16px 22px 22px;
  background: var(--eh-cream-deep);
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--eh-border);
}

.eh-accordion__panel.is-open {
  display: block;
}

/* ============================================================
   PRICING
   ============================================================ */
.eh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--eh-border-dark);
}

.eh-plan {
  padding: 36px 28px;
  border-right: 1px solid var(--eh-border-dark);
  background: var(--eh-white);
}

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

.eh-plan--featured {
  background: var(--eh-indigo);
  border-right-color: rgba(255,255,255,.2);
}

.eh-plan--featured .eh-plan__name,
.eh-plan--featured .eh-plan__price,
.eh-plan--featured .eh-plan__period,
.eh-plan--featured h4 {
  color: var(--eh-gold-light);
}

.eh-plan--featured .eh-plan__feature { color: var(--eh-cream); }
.eh-plan--featured .eh-plan__divider { border-color: rgba(255,255,255,.2); }

.eh-plan__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--eh-gold);
  color: var(--eh-indigo-dark);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.eh-plan__name {
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  color: var(--eh-sand);
  margin-bottom: 8px;
}

.eh-plan__price {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  color: var(--eh-sand);
  line-height: 1;
}

.eh-plan__period {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  margin-bottom: 6px;
}

.eh-plan__desc {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.eh-plan--featured .eh-plan__desc { color: var(--eh-cream-mid); }

.eh-plan__divider {
  border: none;
  border-top: 1px solid var(--eh-border);
  margin: 20px 0;
}

.eh-plan__feature {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.eh-plan__feature::before {
  content: "✓";
  color: var(--eh-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.eh-plan__cta {
  display: block;
  margin-top: 28px;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--eh-sand);
  background: transparent;
  color: var(--eh-sand);
  transition: background var(--transition), color var(--transition);
}

.eh-plan__cta:hover,
.eh-plan--featured .eh-plan__cta:hover {
  background: var(--eh-sand);
  color: var(--eh-white);
}

.eh-plan--featured .eh-plan__cta {
  border-color: var(--eh-gold-light);
  color: var(--eh-gold-light);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.eh-compare {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--eh-border-dark);
  font-size: var(--fs-sm);
}

.eh-compare th,
.eh-compare td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--eh-border);
}

.eh-compare th {
  background: var(--eh-indigo);
  color: var(--eh-gold-light);
  font-family: var(--ff-head);
  font-size: var(--fs-base);
}

.eh-compare tr:nth-child(even) td { background: var(--eh-cream-deep); }
.eh-compare tr:last-child td { border-bottom: none; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.eh-form__group {
  margin-bottom: 20px;
}

.eh-form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--eh-sand);
  margin-bottom: 6px;
  letter-spacing: .03em;
}

.eh-form__input,
.eh-form__select,
.eh-form__textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--eh-text);
  background: var(--eh-white);
  border: 2px solid var(--eh-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.eh-form__input:focus,
.eh-form__select:focus,
.eh-form__textarea:focus {
  outline: none;
  border-color: var(--eh-indigo);
  background: #fffdf9;
}

.eh-form__input::placeholder,
.eh-form__textarea::placeholder {
  color: var(--eh-border-dark);
}

.eh-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.eh-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b4a2e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.eh-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.5;
}

.eh-form__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--eh-indigo);
}

.eh-form__submit {
  margin-top: 10px;
}

.eh-form__status {
  display: none;
  padding: 12px 18px;
  margin-top: 14px;
  font-size: var(--fs-sm);
  font-weight: 700;
  border: 2px solid transparent;
}

.eh-form__status--loading {
  display: block;
  background: var(--eh-cream-deep);
  border-color: var(--eh-border);
  color: var(--eh-text-muted);
}

.eh-form__status--error {
  display: block;
  background: #fff0f0;
  border-color: #cc4444;
  color: #cc4444;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.eh-breadcrumb {
  padding: 14px 0;
  background: var(--eh-cream-deep);
  border-bottom: 1px solid var(--eh-border);
}

.eh-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: var(--fs-sm);
}

.eh-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--eh-text-muted);
}

.eh-breadcrumb__item::after {
  content: "›";
  color: var(--eh-border-dark);
}

.eh-breadcrumb__item:last-child::after { display: none; }
.eh-breadcrumb__item:last-child { color: var(--eh-sand); font-weight: 700; }

.eh-breadcrumb__link {
  color: var(--eh-indigo);
  text-decoration: none;
}

.eh-breadcrumb__link:hover { text-decoration: underline; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.eh-page-hero {
  background: var(--eh-indigo-dark);
  padding: 52px 0 44px;
  border-bottom: 3px solid var(--eh-gold);
}

.eh-page-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 10px;
}

.eh-page-hero__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 42px);
  color: var(--eh-cream);
  line-height: 1.15;
  margin-bottom: 12px;
}

.eh-page-hero__lead {
  font-size: var(--fs-lg);
  color: var(--eh-cream-mid);
  max-width: 660px;
  line-height: 1.6;
}

.eh-page-hero h1 {
  color: var(--eh-cream);
  font-size: clamp(1.8rem, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.eh-page-hero .eh-eyebrow {
  color: var(--eh-gold);
  margin-bottom: 10px;
}

.eh-page-hero p {
  color: var(--eh-cream-mid);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.eh-cta-banner {
  background: var(--eh-sand);
  padding: 56px 0;
  border-top: 3px solid var(--eh-gold);
  border-bottom: 3px solid var(--eh-gold);
}

.eh-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.eh-cta-banner__text h2 {
  color: var(--eh-gold-light);
  margin-bottom: 8px;
}

.eh-cta-banner__text p {
  color: var(--eh-cream);
  font-size: var(--fs-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.eh-footer {
  background: var(--eh-indigo-dark);
  color: var(--eh-cream-mid);
  padding: 64px 0 32px;
  border-top: 3px solid var(--eh-gold);
}

.eh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.eh-footer__brand {}

.eh-footer__logo-text {
  font-family: var(--ff-head);
  font-size: 18px;
  color: var(--eh-gold-light);
  margin-bottom: 8px;
  display: block;
}

.eh-footer__tagline {
  font-size: var(--fs-sm);
  color: var(--eh-border);
  margin-bottom: 20px;
}

.eh-footer__address {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--eh-border);
  line-height: 1.8;
}

.eh-footer__address a {
  color: var(--eh-border);
  text-decoration: none;
}

.eh-footer__address a:hover {
  color: var(--eh-gold-light);
  text-decoration: underline;
}

.eh-footer__col-head {
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  color: var(--eh-gold-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--eh-gold);
  display: inline-block;
}

.eh-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eh-footer__link {
  font-size: var(--fs-sm);
  color: var(--eh-border);
  text-decoration: none;
  transition: color var(--transition);
}

.eh-footer__link:hover { color: var(--eh-gold-light); }

.eh-footer__link:focus-visible {
  outline: 1px solid var(--eh-gold-light);
  outline-offset: 2px;
}

.eh-footer__bottom {
  border-top: 1px solid rgba(201,184,160,.25);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--eh-border);
}

.eh-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.eh-footer__legal a {
  color: var(--eh-border);
  text-decoration: none;
}

.eh-footer__legal a:hover { color: var(--eh-gold-light); text-decoration: underline; }

/* ============================================================
   TABLE OF HIGHLIGHTS
   ============================================================ */
.eh-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--eh-border-dark);
}

.eh-highlight {
  padding: 28px 20px;
  border-right: 1px solid var(--eh-border-dark);
  background: var(--eh-white);
  text-align: center;
}

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

.eh-highlight__num {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  color: var(--eh-gold);
  line-height: 1;
  display: block;
}

.eh-highlight__label {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  margin-top: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.eh-testimonial {
  background: var(--eh-white);
  border: 2px solid var(--eh-border);
  border-left: 5px solid var(--eh-gold);
  padding: 28px 24px;
}

.eh-testimonial__quote {
  font-size: var(--fs-lg);
  color: var(--eh-text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}

.eh-testimonial__author {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--eh-sand);
  letter-spacing: .04em;
}

.eh-testimonial__role {
  font-size: var(--fs-xs);
  color: var(--eh-text-muted);
  margin-top: 2px;
}

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.eh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--eh-border-dark);
}

.eh-step {
  padding: 32px 22px;
  border-right: 1px solid var(--eh-border-dark);
  background: var(--eh-white);
}

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

.eh-step__num {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  color: var(--eh-border-dark);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.eh-step__title {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  color: var(--eh-sand);
  margin-bottom: 8px;
}

.eh-step__text {
  font-size: var(--fs-sm);
  color: var(--eh-text-muted);
  line-height: 1.65;
}

/* ============================================================
   SITE NOTICE (thank-you page etc)
   ============================================================ */
.eh-notice {
  text-align: center;
  padding: 80px 0;
}

.eh-notice__icon {
  width: 72px;
  height: 72px;
  background: var(--eh-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.eh-notice__title {
  font-family: var(--ff-head);
  font-size: var(--fs-3xl);
  color: var(--eh-sand);
  margin-bottom: 14px;
}

.eh-notice__text {
  font-size: var(--fs-lg);
  color: var(--eh-text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ============================================================
   INFO TABLE
   ============================================================ */
.eh-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--eh-border-dark);
  font-size: var(--fs-sm);
}

.eh-info-table th,
.eh-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--eh-border);
  vertical-align: top;
}

.eh-info-table th {
  background: var(--eh-cream-deep);
  font-weight: 700;
  color: var(--eh-sand);
  width: 36%;
}

.eh-info-table tr:last-child th,
.eh-info-table tr:last-child td { border-bottom: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-v: 60px;
  }

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

  .eh-hero__stats {
    border-right: none;
    border-bottom: 3px solid var(--eh-gold);
    padding-right: 0;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .eh-hero__stat {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(212,168,75,.3);
  }

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

  .eh-hero__stat-num { font-size: 42px; }

  .eh-grid-2,
  .eh-grid-3,
  .eh-grid-4 { grid-template-columns: 1fr 1fr; }

  .eh-split { grid-template-columns: 1fr; gap: 32px; }

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

  .eh-pricing-grid { grid-template-columns: 1fr; }
  .eh-plan { border-right: none; border-bottom: 1px solid var(--eh-border-dark); }
  .eh-plan:last-child { border-bottom: none; }

  .eh-steps { grid-template-columns: 1fr 1fr; }
  .eh-step:nth-child(2) { border-right: none; }

  .eh-highlights { grid-template-columns: 1fr 1fr; }
  .eh-highlight:nth-child(2) { border-right: none; }
  .eh-highlight { border-bottom: 1px solid var(--eh-border-dark); }
  .eh-highlight:nth-child(3),
  .eh-highlight:nth-child(4) { border-bottom: none; }

  .eh-cta-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  :root {
    --section-v: 48px;
    --gap: 20px;
  }

  .eh-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--eh-indigo-dark);
    border-top: 2px solid var(--eh-gold);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
  }

  .eh-nav.is-open { display: flex; }

  .eh-nav__link { padding: 12px 20px; }
  .eh-nav__cta { margin: 8px 20px 4px; display: block; text-align: center; }

  .eh-nav-toggle { display: block; }

  .eh-header { position: relative; }
  .eh-header__inner { position: relative; }

  .eh-grid-3,
  .eh-grid-4 { grid-template-columns: 1fr; }

  .eh-footer__grid { grid-template-columns: 1fr; }
  .eh-steps { grid-template-columns: 1fr; }
  .eh-step { border-right: none; border-bottom: 1px solid var(--eh-border-dark); }
  .eh-step:last-child { border-bottom: none; }

  .eh-hero__stats { grid-template-columns: 1fr 1fr; }
  .eh-hero__stat:nth-child(2) { border-right: none; }
  .eh-hero__stat { border-bottom: 1px solid rgba(212,168,75,.3); padding: 12px 0; }
  .eh-hero__stat:nth-child(3) { grid-column: span 2; border-bottom: none; }
}

@media (max-width: 480px) {
  .eh-grid-2 { grid-template-columns: 1fr; }
  .eh-highlights { grid-template-columns: 1fr 1fr; }
  .eh-hero__actions { flex-direction: column; }
  .eh-btn { width: 100%; text-align: center; }
  .eh-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   TABLE (sitelinks pages)
   ============================================================ */
.eh-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.eh-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--eh-border-dark);
  font-size: var(--fs-sm);
  min-width: 600px;
}

.eh-table th,
.eh-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--eh-border);
  vertical-align: top;
  line-height: 1.55;
}

.eh-table th {
  background: var(--eh-indigo);
  color: var(--eh-gold-light);
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: 700;
  white-space: nowrap;
}

.eh-table tr:nth-child(even) td {
  background: var(--eh-cream-deep);
}

.eh-table tr:last-child td {
  border-bottom: none;
}

.eh-table td:first-child {
  font-weight: 600;
  color: var(--eh-sand);
}

/* Split reverse — image on right, content on left */
.eh-split--reverse {
  direction: rtl;
}

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

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
