:root {
  --eg-bg: #fffaf4;
  --eg-surface: #ffffff;
  --eg-surface-soft: #f6efe7;
  --eg-surface-dark: #1a1411;
  --eg-surface-dark-2: #241b17;
  --eg-text: #1f1915;
  --eg-muted: #6f6359;
  --eg-gold: #d3b07d;
  --eg-gold-soft: #f4e5d1;
  --eg-line: rgba(38, 25, 17, 0.12);
  --eg-shadow: 0 16px 50px rgba(30, 20, 12, 0.08);
  --eg-shadow-strong: 0 24px 80px rgba(26, 20, 17, 0.16);
  --eg-radius: 26px;
  --eg-radius-sm: 18px;
  --eg-shell: min(1200px, calc(100vw - 2rem));
  --eg-serif: Georgia, "Times New Roman", serif;
  --eg-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, #fffefd 0%, var(--eg-bg) 48%, #f3ece4 100%);
  color: var(--eg-text);
  font-family: var(--eg-sans);
}

a {
  transition: color .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
}

a:hover {
  text-decoration: none;
}

.eg-shell {
  width: var(--eg-shell);
  margin: 0 auto;
}

.eg-kicker {
  margin: 0 0 1rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8c6941;
}

.eg-display,
.eg-section-heading h2,
.eg-story-lead h3,
.eg-feature-card h2,
.eg-card__title,
.eg-mini-card h3,
.eg-sidebar-card h2,
.eg-empty-state h2 {
  font-family: var(--eg-serif);
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--eg-text);
}

.eg-display {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .96;
}

.eg-button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0bf8d 0%, #cda771 100%);
  color: #1a1411;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(188, 142, 74, .24);
}

.eg-button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  color: #1a1411;
  box-shadow: 0 18px 34px rgba(188, 142, 74, .28);
}

.eg-button--ghost {
  background: rgba(255, 255, 255, .68);
  border-color: rgba(31, 25, 21, .14);
  box-shadow: none;
}

.eg-button--ghost:hover {
  background: rgba(255, 255, 255, .92);
}

.eg-actions,
.eg-chip-row,
.eg-card-tags,
.eg-single-hero__meta,
.eg-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.eg-chip,
.eg-card-tags a,
.eg-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 125, .35);
  background: rgba(255, 248, 240, .72);
  color: #7b5e3d;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eg-category-rail {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 .25rem;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255, 250, 244, .88), rgba(255, 250, 244, .58));
}

.eg-category-rail__inner {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  width: var(--eg-shell);
  margin: 0 auto;
  padding-bottom: .35rem;
}

.eg-category-rail__inner a {
  white-space: nowrap;
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 25, 21, .08);
  background: rgba(255, 255, 255, .7);
  color: var(--eg-text);
  font-size: .82rem;
  font-weight: 600;
}

.eg-category-rail__inner a:hover {
  border-color: rgba(211, 176, 125, .6);
  color: #7f5c35;
}

.eg-home-hero,
.eg-archive-hero,
.eg-single-hero,
.eg-listing-shell,
.eg-latest-band,
.eg-section-block,
.eg-value-strip {
  margin-top: 1.25rem;
}

.eg-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 1.2rem;
  align-items: stretch;
  padding-bottom: 1rem;
}

.eg-home-hero__copy,
.eg-home-hero__feature,
.eg-archive-hero,
.eg-single-hero,
.eg-empty-state,
.eg-coming-soon__panel {
  border: 1px solid rgba(31, 25, 21, .08);
  border-radius: calc(var(--eg-radius) + 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, rgba(255, 247, 238, .78) 100%);
  box-shadow: var(--eg-shadow);
}

.eg-home-hero__copy {
  padding: clamp(1.6rem, 3vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(211, 176, 125, .22), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(250, 241, 228, .82));
}

.eg-home-hero__lead,
.eg-archive-hero__lead,
.eg-single-hero__lead,
.eg-section-heading p,
.eg-story-lead p,
.eg-feature-card p,
.eg-card__excerpt,
.eg-coming-soon__lead,
.eg-coming-soon__note,
.eg-value-pill p,
.eg-sidebar-card li,
.prose p,
.prose li,
.prose blockquote {
  color: var(--eg-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.eg-home-hero__feature {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(211, 176, 125, .22), transparent 30%),
    linear-gradient(180deg, rgba(26, 20, 17, .97), rgba(43, 31, 24, .95));
}

.eg-home-hero__feature .eg-card-tags a,
.eg-home-hero__feature .eg-card-tags span,
.eg-home-hero__feature h2,
.eg-home-hero__feature p,
.eg-home-hero__feature h3,
.eg-home-hero__feature .eg-mini-card__meta,
.eg-home-hero__feature .eg-feature-card__meta span {
  color: #fff7ef;
}

.eg-feature-card,
.eg-mini-card,
.eg-story-lead,
.eg-card,
.eg-sidebar-card,
.eg-value-pill {
  border: 1px solid rgba(31, 25, 21, .08);
  border-radius: var(--eg-radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--eg-shadow);
}

.eg-feature-card {
  min-height: 320px;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255, 246, 236, .06), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, rgba(35, 26, 22, .98), rgba(24, 18, 15, .97));
  border-color: rgba(211, 176, 125, .16);
  box-shadow: var(--eg-shadow-strong);
}

.eg-feature-card h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.eg-feature-card h2 a,
.eg-story-lead a,
.eg-card__link,
.eg-mini-card a,
.eg-sidebar-links a,
.eg-post-nav a {
  color: inherit;
}

.eg-feature-card__meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(211, 176, 125, .18);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eg-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}

.eg-mini-card {
  min-height: 130px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border-color: rgba(211, 176, 125, .12);
  box-shadow: none;
}

.eg-mini-card__meta,
.eg-card__meta,
.eg-sidebar-links small,
.eg-single-hero__meta span,
.eg-text-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93765a;
}

.eg-mini-card h3,
.eg-card__title {
  margin: .7rem 0 0;
  font-size: 1.2rem;
  line-height: 1.22;
}

.eg-stat-row {
  margin-top: 1.6rem;
}

.eg-stat {
  min-width: 140px;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(31, 25, 21, .08);
}

.eg-stat__number {
  display: block;
  font-family: var(--eg-serif);
  font-size: 2rem;
  line-height: 1;
}

.eg-stat__label {
  display: block;
  margin-top: .45rem;
  color: var(--eg-muted);
  font-size: .82rem;
}

.eg-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.eg-value-pill {
  padding: 1.25rem;
}

.eg-value-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(211, 176, 125, .16);
  color: #8a6331;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.eg-value-pill strong {
  display: block;
  margin: 1rem 0 .5rem;
  font-size: 1.1rem;
}

.eg-section-block {
  padding: 1.15rem;
  border-radius: calc(var(--eg-radius) + 10px);
}

.eg-section-block--light {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(245, 236, 227, .8));
}

.eg-section-block--dark {
  background: linear-gradient(180deg, rgba(35, 27, 22, .98), rgba(30, 22, 18, .96));
}

.eg-section-block--dark .eg-section-heading h2,
.eg-section-block--dark .eg-section-heading p,
.eg-section-block--dark .eg-story-lead h3,
.eg-section-block--dark .eg-story-lead p,
.eg-section-block--dark .eg-card__title,
.eg-section-block--dark .eg-card__excerpt,
.eg-section-block--dark .eg-text-link {
  color: #fff8ef;
}

.eg-section-block--dark .eg-story-lead,
.eg-section-block--dark .eg-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(211, 176, 125, .12);
  box-shadow: none;
}

.eg-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.eg-section-heading h2 {
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.eg-text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}

.eg-story-layout,
.eg-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 1rem;
}

.eg-story-lead,
.eg-story-lead--archive {
  padding: clamp(1.3rem, 2vw, 2rem);
  min-height: 260px;
  background:
    radial-gradient(circle at top left, rgba(211, 176, 125, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(249, 241, 232, .88));
}

.eg-story-lead h3,
.eg-story-lead--archive h2 {
  margin: 1rem 0 .8rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.eg-card-grid {
  display: grid;
  gap: 1rem;
}

.eg-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eg-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eg-card {
  padding: 1.2rem;
}

.eg-card__link {
  display: block;
  min-height: 100%;
}

.eg-card__title {
  margin: .8rem 0 .7rem;
  font-size: 1.45rem;
}

.eg-latest-band,
.eg-listing-shell,
.eg-single-layout {
  padding-bottom: 2rem;
}

.eg-archive-hero,
.eg-single-hero {
  padding: clamp(1.5rem, 2.6vw, 2.8rem);
}

.eg-archive-hero__lead,
.eg-single-hero__lead {
  max-width: 760px;
  margin-top: 1rem;
}

.eg-single-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.eg-single-article {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: calc(var(--eg-radius) + 6px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,25,21,.08);
  box-shadow: var(--eg-shadow);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--eg-serif);
  letter-spacing: -.02em;
  color: var(--eg-text);
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.prose h3 {
  margin-top: 1.8rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.prose a {
  color: #8a6331;
  text-decoration-thickness: .08em;
}

.prose blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--eg-gold);
  background: rgba(244, 229, 209, .42);
  border-radius: 0 18px 18px 0;
}

.prose img,
.prose iframe,
.prose video {
  border-radius: 22px;
}

.eg-tag-row,
.eg-post-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--eg-line);
}

.eg-single-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.eg-sidebar-card {
  padding: 1.2rem;
}

.eg-sidebar-card h2 {
  margin: 0 0 .8rem;
  font-size: 1.5rem;
}

.eg-sidebar-card ul {
  margin: 0;
  padding-left: 1rem;
}

.eg-sidebar-links {
  display: grid;
  gap: .9rem;
}

.eg-sidebar-links a {
  display: block;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(244, 229, 209, .36);
  border: 1px solid rgba(211, 176, 125, .22);
}

.eg-sidebar-links span {
  display: block;
  font-family: var(--eg-serif);
  font-size: 1.15rem;
  color: var(--eg-text);
  line-height: 1.15;
}

.eg-sidebar-links small {
  display: block;
  margin-top: .45rem;
}

.eg-pagination {
  margin-top: 1.4rem;
}

.eg-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 .3rem .3rem 0;
  padding: 0 .8rem;
  border-radius: 999px;
  border: 1px solid rgba(31,25,21,.08);
  background: rgba(255,255,255,.8);
  color: var(--eg-text);
}

.eg-pagination .current {
  background: var(--eg-surface-dark);
  color: #fff7ef;
}

.eg-empty-state {
  padding: 2rem;
  text-align: center;
}

.eg-empty-state h2 {
  margin: 0 0 .8rem;
  font-size: 2.2rem;
}

.eg-coming-soon-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #100c0a, #1d1511);
}

.eg-coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.eg-coming-soon__panel {
  max-width: 720px;
  padding: clamp(1.6rem, 3vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(211, 176, 125, .28), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,236,225,.9));
}

.eg-coming-soon__lead {
  margin: 1rem 0 1.4rem;
}

.eg-coming-soon__note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(31,25,21,.08);
}

.eg-footer-credit {
  color: rgba(255, 247, 239, .76);
}

@media (max-width: 1024px) {
  .eg-home-hero,
  .eg-story-layout,
  .eg-single-layout,
  .eg-value-strip {
    grid-template-columns: 1fr;
  }

  .eg-mini-grid,
  .eg-card-grid--three,
  .eg-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eg-single-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .eg-shell {
    width: min(100vw - 1rem, 100%);
  }

  .eg-home-hero__copy,
  .eg-home-hero__feature,
  .eg-archive-hero,
  .eg-single-hero,
  .eg-single-article,
  .eg-section-block,
  .eg-empty-state,
  .eg-coming-soon__panel {
    border-radius: 24px;
  }

  .eg-mini-grid,
  .eg-card-grid--three,
  .eg-card-grid--two,
  .eg-value-strip {
    grid-template-columns: 1fr;
  }

  .eg-section-heading,
  .eg-post-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .eg-card__title,
  .eg-mini-card h3 {
    font-size: 1.2rem;
  }
}

/* v6.1 luxe cleanup */
:root {
  --eg-bg: #f7f2eb;
  --eg-surface: #fffdfa;
  --eg-surface-soft: #f3ece3;
  --eg-surface-dark: #201613;
  --eg-surface-dark-2: #2d211c;
  --eg-text: #201915;
  --eg-muted: #67584d;
  --eg-gold: #b9884a;
  --eg-gold-soft: #ead7bf;
  --eg-line: rgba(32, 25, 21, 0.09);
  --eg-shadow: 0 18px 50px rgba(34, 22, 14, 0.07);
  --eg-shadow-strong: 0 28px 90px rgba(28, 19, 12, 0.16);
  --eg-radius: 30px;
  --eg-radius-sm: 22px;
  --eg-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --eg-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #fcfaf7 0%, #f5eee7 100%);
  color: var(--eg-text);
}

/* remove logo / site title clutter */
.site-branding,
.site-header-row-container-inner .site-branding,
.site-header-row .site-branding {
  display: none !important;
}

.site-main-header-wrap .site-header-row,
#main-header .site-header-row,
.site-header-row-container-inner {
  min-height: 64px !important;
}

.site-main-header-inner-wrap,
.site-header-row-layout-fullwidth-contained,
.site-header-row-container {
  background: rgba(252,250,247,.96) !important;
  border-bottom: 1px solid rgba(32,25,21,.06) !important;
  box-shadow: none !important;
}

.kadence-sticky-header,
.item-is-fixed {
  position: static !important;
}

.navigation .menu,
.main-navigation .menu,
.main-navigation ul {
  gap: .35rem;
}

.main-navigation .menu > li > a,
.navigation .menu > li > a {
  padding: .7rem 1rem !important;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #57463c !important;
}

.main-navigation .menu > li.current-menu-item > a,
.main-navigation .menu > li > a:hover {
  background: #f2e8dc;
  color: #1f1915 !important;
}

.eg-category-rail,
.eg-stat-row,
.eg-value-strip,
.eg-footer-credit,
.site-footer .site-info,
.site-footer .footer-html,
.site-footer .copyright {
  display: none !important;
}

.eg-home-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.eg-home-hero__copy,
.eg-home-hero__feature,
.eg-section-block,
.eg-latest-band,
.eg-archive-hero,
.eg-single-hero,
.eg-empty-state,
.eg-coming-soon__panel {
  border: 1px solid rgba(32,25,21,.07);
  border-radius: 34px;
}

.eg-home-hero__copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 72% 20%, rgba(185,136,74,.28), transparent 20%),
    radial-gradient(circle at left bottom, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #160f0d 0%, #241713 48%, #3a281f 100%);
  box-shadow: var(--eg-shadow-strong);
}

.eg-home-hero__copy .eg-kicker,
.eg-home-hero__copy .eg-home-hero__lead {
  color: rgba(255,245,235,.84);
}

.eg-home-hero__copy .eg-kicker {
  margin-bottom: 1.2rem;
  color: #d1a870;
}

.eg-display {
  max-width: 9ch;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .9;
  color: #f7ead7;
  text-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.eg-home-hero__lead {
  max-width: 34rem;
  font-size: 1.12rem;
  line-height: 1.85;
  margin: 1.35rem 0 0;
}

.eg-actions { margin-top: 1.8rem; }

.eg-button--ghost {
  background: transparent;
  border-color: rgba(255,241,227,.22);
  color: #fff4e7;
}
.eg-button--ghost:hover { background: rgba(255,255,255,.08); color: #fff4e7; }

.eg-home-hero__feature {
  padding: 1.2rem;
  background: linear-gradient(180deg, #f7f2eb 0%, #efe5d9 100%);
}

.eg-feature-card,
.eg-mini-card,
.eg-story-lead,
.eg-card,
.eg-sidebar-card {
  background: rgba(255,253,250,.96);
  border: 1px solid rgba(32,25,21,.07);
}

.eg-feature-card {
  min-height: 330px;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,240,232,.96));
}

.eg-home-hero__feature .eg-card-tags a,
.eg-home-hero__feature .eg-card-tags span,
.eg-home-hero__feature h2,
.eg-home-hero__feature p,
.eg-home-hero__feature h3,
.eg-home-hero__feature .eg-mini-card__meta,
.eg-home-hero__feature .eg-feature-card__meta span {
  color: inherit;
}

.eg-feature-card h2,
.eg-section-heading h2,
.eg-story-lead h3,
.eg-card__title,
.eg-mini-card h3,
.eg-sidebar-card h2,
.eg-empty-state h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.eg-card__title,
.eg-mini-card h3,
.eg-story-lead h3 { font-size: clamp(1.35rem, 2vw, 2.1rem); }

.eg-section-heading {
  align-items: end;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(32,25,21,.08);
}

.eg-section-heading p { max-width: 44rem; }

.eg-section-block {
  padding: 1.5rem;
  background: transparent;
  box-shadow: none;
}

.eg-section-block--light {
  background: linear-gradient(180deg, rgba(255,252,248,.8), rgba(248,241,233,.65));
}

.eg-section-block--dark {
  background: linear-gradient(180deg, #211714 0%, #2e221d 100%);
}
.eg-section-block--dark .eg-section-heading h2,
.eg-section-block--dark .eg-section-heading p,
.eg-section-block--dark .eg-section-heading .eg-kicker,
.eg-section-block--dark .eg-text-link,
.eg-section-block--dark .eg-story-lead h3,
.eg-section-block--dark .eg-story-lead p,
.eg-section-block--dark .eg-card__title,
.eg-section-block--dark .eg-card__excerpt,
.eg-section-block--dark .eg-card__meta {
  color: #f7ede2 !important;
}
.eg-section-block--dark .eg-story-lead,
.eg-section-block--dark .eg-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,245,235,.08);
}

.eg-latest-band {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,253,249,.92), rgba(243,235,226,.85));
}

.eg-text-link {
  color: #7f5b34;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

.eg-card__excerpt,
.eg-feature-card p,
.eg-story-lead p,
.eg-home-hero__feature p,
.prose p,
.prose li {
  color: #5b4e44;
}

@media (max-width: 1024px) {
  .eg-home-hero { grid-template-columns: 1fr; }
  .eg-home-hero__copy { min-height: 460px; }
}

@media (max-width: 720px) {
  .site-branding { display: none !important; }
  .main-navigation .menu > li > a,
  .navigation .menu > li > a { padding: .62rem .85rem !important; font-size: .72rem; letter-spacing: .14em; }
  .eg-display { font-size: clamp(3rem, 14vw, 4.6rem); }
  .eg-home-hero__copy { min-height: 380px; padding: 1.4rem; }
  .eg-feature-card h2,
  .eg-section-heading h2 { font-size: 2rem; }
}

/* v7 perfect merge */
:root {
  --eg-ivory: #f7f4ef;
  --eg-cream: #ede8df;
  --eg-warm-white: #fdfbf8;
  --eg-espresso: #1c1410;
  --eg-deep-brown: #2e2018;
  --eg-mid-brown: #5c4033;
  --eg-warm-gray: #8a7f76;
  --eg-taupe: #b8aa9c;
  --eg-gold-rich: #c9a96e;
  --eg-gold-light: #e2c990;
  --eg-gold-pale: #f0e3c4;
  --eg-shell-wide: min(1240px, calc(100vw - 2rem));
  --eg-luxe-shadow: 0 22px 70px rgba(28, 20, 16, 0.12);
  --eg-luxe-shadow-soft: 0 16px 40px rgba(28, 20, 16, 0.08);
}

body {
  background: var(--eg-warm-white);
  color: var(--eg-espresso);
}

.eg-shell {
  width: var(--eg-shell-wide);
}

.site-branding,
.site-header-row-container-inner .site-branding,
.site-header-row .site-branding {
  display: flex !important;
}

.site-header-row-container-inner,
.site-main-header-inner-wrap,
.site-header-row-layout-fullwidth-contained,
.site-header-row-container {
  background: rgba(253, 251, 248, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 20, 16, 0.06) !important;
}

.custom-logo,
.site-header-item .site-branding a,
.site-branding .site-title {
  max-height: 52px;
}

.eg-button--dark {
  background: var(--eg-espresso);
  color: var(--eg-gold-light);
  box-shadow: none;
}

.eg-button--dark:hover {
  color: var(--eg-gold-light);
  background: var(--eg-deep-brown);
}

.eg-luxe-overline,
.eg-authority-hero .eg-kicker,
.eg-luxe-overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
  font-weight: 700;
}

.eg-luxe-overline::before,
.eg-authority-hero .eg-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.eg-luxe-title,
.eg-luxe-heading,
.eg-authority-block h2,
.eg-authority-step h2 {
  font-family: var(--eg-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--eg-espresso);
}

.eg-luxe-title {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.eg-luxe-heading {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.eg-luxe-heading--light,
.eg-luxe-section--dark .eg-luxe-heading {
  color: var(--eg-ivory);
}

.eg-luxe-hero {
  background: var(--eg-espresso);
  position: relative;
  overflow: hidden;
}

.eg-luxe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 78% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 88%, rgba(201, 169, 110, 0.05) 0%, transparent 55%);
}

.eg-luxe-hero__grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 7rem 0 5rem;
}

.eg-luxe-hero__copy {
  max-width: 560px;
}

.eg-luxe-hero__copy .eg-luxe-title,
.eg-luxe-hero__copy .eg-luxe-subtitle,
.eg-luxe-hero__visual {
  color: var(--eg-ivory);
}

.eg-luxe-subtitle,
.eg-luxe-centerhead p,
.eg-luxe-bodycopy p,
.eg-luxe-about-copy p,
.eg-authority-hero__intro,
.eg-authority-block p,
.eg-authority-richtext p,
.eg-authority-richtext li {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--eg-taupe);
}

.eg-luxe-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.eg-luxe-stat-block {
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.32);
  background: rgba(201, 169, 110, 0.04);
  padding: 2.4rem 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.eg-luxe-stat-block::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eg-gold-rich), transparent);
}

.eg-luxe-stat__num {
  display: block;
  font-family: var(--eg-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--eg-gold-light);
}

.eg-luxe-stat__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eg-warm-gray);
}

.eg-luxe-badge {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--eg-gold-rich);
  color: var(--eg-espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eg-luxe-badge span:first-child {
  font-family: var(--eg-serif);
  font-size: 1.3rem;
}

.eg-luxe-badge span:last-child {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eg-luxe-trust-bar {
  background: var(--eg-cream);
  border-top: 1px solid rgba(28, 20, 16, 0.06);
  border-bottom: 1px solid rgba(28, 20, 16, 0.06);
  padding: 1.15rem 0;
}

.eg-luxe-trust-bar__inner {
  display: flex;
  gap: 2rem 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.eg-luxe-trust-bar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--eg-warm-gray);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eg-luxe-trust-bar__inner i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--eg-gold-rich);
  display: inline-block;
}

.eg-luxe-section {
  padding: 7rem 0;
}

.eg-luxe-section--statement {
  background: var(--eg-warm-white);
}

.eg-luxe-section--dark {
  background: var(--eg-espresso);
  color: var(--eg-ivory);
  position: relative;
  overflow: hidden;
}

.eg-luxe-section--dark::after {
  content: "TRUST";
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: var(--eg-serif);
  font-size: clamp(10rem, 20vw, 22rem);
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

.eg-luxe-two-col,
.eg-authority-columns,
.eg-authority-story__grid,
.eg-authority-hero__grid,
.eg-luxe-about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: start;
}

.eg-luxe-bodycopy__lead {
  color: var(--eg-espresso) !important;
  font-size: 1.15rem !important;
}

.eg-luxe-diff-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.eg-luxe-diff-list li,
.eg-luxe-credential-list div,
.eg-authority-signal-grid div {
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(28, 20, 16, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.eg-luxe-diff-list strong,
.eg-luxe-credential-list strong,
.eg-authority-signal-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--eg-serif);
  font-size: 1.05rem;
  color: var(--eg-espresso);
}

.eg-luxe-diff-list span,
.eg-luxe-credential-list span,
.eg-authority-signal-grid span {
  color: var(--eg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.eg-luxe-centerhead,
.eg-luxe-section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eg-luxe-section-head--split {
  max-width: none;
  margin: 0 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  align-items: end;
}

.eg-luxe-section-head--split > * {
  flex: 1;
}

.eg-luxe-section-head--split > p {
  max-width: 360px;
  margin: 0 0 0 auto;
  color: var(--eg-warm-gray);
}

.eg-luxe-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.14);
}

.eg-luxe-pillar {
  background: var(--eg-espresso);
  padding: 2rem;
  position: relative;
}

.eg-luxe-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.eg-luxe-pillar:hover::before {
  background: var(--eg-gold-rich);
}

.eg-luxe-pillar__num {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
  opacity: 0.7;
}

.eg-luxe-pillar h3 {
  margin: 0 0 0.75rem;
  font-family: var(--eg-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--eg-ivory);
}

.eg-luxe-pillar p,
.eg-luxe-proof-grid blockquote,
.eg-luxe-proof-grid cite,
.eg-luxe-proof-grid span {
  color: var(--eg-taupe);
}

.eg-luxe-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.eg-luxe-quote-box {
  border-left: 2px solid var(--eg-gold-rich);
  padding-left: 2rem;
}

.eg-luxe-quote-box blockquote {
  margin: 0 0 1rem;
  font-family: var(--eg-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

.eg-luxe-quote-box cite {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
}

.eg-luxe-credential-list {
  display: grid;
  gap: 1px;
  background: rgba(201, 169, 110, 0.12);
}

.eg-luxe-credential-list div {
  background: rgba(255, 255, 255, 0.04);
  border: none;
}

.eg-luxe-credential-list strong {
  color: var(--eg-ivory);
}

.eg-luxe-method-strip {
  background: var(--eg-gold-rich);
  padding: 2.5rem 0;
}

.eg-luxe-method-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.eg-luxe-method-strip h2 {
  margin: 0;
  font-family: var(--eg-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--eg-espresso);
}

.eg-luxe-method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.eg-luxe-method-steps span {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(28, 20, 16, 0.14);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eg-espresso);
}

.eg-luxe-section--about {
  background: var(--eg-ivory);
}

.eg-luxe-portrait-card {
  background: var(--eg-cream);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.eg-luxe-portrait-card img,
.eg-authority-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eg-luxe-portrait-placeholder,
.eg-authority-portrait__placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--eg-taupe);
  gap: 0.75rem;
}

.eg-luxe-portrait-placeholder span,
.eg-authority-portrait__placeholder strong {
  display: block;
  font-family: var(--eg-serif);
  font-size: 1.2rem;
  color: var(--eg-mid-brown);
}

.eg-luxe-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.75rem 0 0;
}

.eg-luxe-tag-cloud span {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(28, 20, 16, 0.16);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eg-mid-brown);
}

.eg-luxe-standards-grid,
.eg-authority-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--eg-cream);
  border: 1px solid var(--eg-cream);
}

.eg-luxe-standards-grid div,
.eg-authority-signal-grid div {
  padding: 1.8rem 1.6rem;
  background: var(--eg-warm-white);
}

.eg-luxe-standards-grid span {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--eg-cream);
  line-height: 1;
}

.eg-luxe-standards-grid h3 {
  margin: 0 0 0.6rem;
  font-family: var(--eg-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.eg-luxe-standards-grid p,
.eg-authority-checklist li,
.eg-authority-box p,
.eg-authority-table td {
  color: var(--eg-warm-gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

.eg-luxe-section--pillars {
  background: var(--eg-ivory);
}

.eg-luxe-pillars-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
}

.eg-luxe-pillar-card,
.eg-authority-note-box,
.eg-authority-box,
.eg-authority-richtext--boxed {
  border: 1px solid rgba(28, 20, 16, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--eg-luxe-shadow-soft);
}

.eg-luxe-pillar-card {
  padding: 2rem;
}

.eg-luxe-pillar-card--featured {
  background: linear-gradient(180deg, rgba(32, 20, 16, 0.98), rgba(46, 32, 24, 0.98));
  color: var(--eg-ivory);
  box-shadow: var(--eg-luxe-shadow);
}

.eg-luxe-pillar-card--featured h3,
.eg-luxe-pillar-card--featured a,
.eg-luxe-pillar-card--featured p,
.eg-luxe-pillar-card--featured .eg-luxe-pillar-card__meta,
.eg-luxe-pillar-card--featured .eg-luxe-mini-list a {
  color: inherit;
}

.eg-luxe-pillar-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.eg-luxe-pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border: 1px solid rgba(28, 20, 16, 0.08);
  font-size: 1.35rem;
}

.eg-luxe-pillar-card__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
}

.eg-luxe-pillar-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--eg-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.eg-luxe-pillar-card p,
.eg-luxe-pillar-card__meta {
  color: var(--eg-warm-gray);
}

.eg-luxe-pillar-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eg-luxe-mini-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  padding: 0;
}

.eg-luxe-mini-list li {
  position: relative;
  padding-left: 1rem;
}

.eg-luxe-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 12px;
  height: 1px;
  background: var(--eg-gold-rich);
}

.eg-authority-hero {
  padding: 6rem 0 4rem;
}

.eg-authority-hero--dark {
  background: var(--eg-espresso);
}

.eg-authority-hero--dark .eg-luxe-title,
.eg-authority-hero--dark .eg-authority-hero__intro,
.eg-authority-hero--dark .eg-authority-stats small,
.eg-authority-hero--dark .eg-authority-note-box p {
  color: var(--eg-ivory);
}

.eg-authority-hero--dark .eg-authority-hero__intro,
.eg-authority-hero--dark .eg-authority-stats small {
  color: var(--eg-taupe);
}

.eg-authority-hero--light {
  background: var(--eg-ivory);
  border-bottom: 1px solid rgba(28, 20, 16, 0.08);
}

.eg-authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.eg-authority-stats div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.eg-authority-stats span {
  display: block;
  font-family: var(--eg-serif);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--eg-gold-light);
}

.eg-authority-stats small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eg-authority-story,
.eg-authority-method-body,
.eg-authority-trust-body {
  padding: 5rem 0;
}

.eg-authority-portrait {
  aspect-ratio: 3 / 4;
  background: var(--eg-cream);
  border: 1px solid var(--eg-cream);
  overflow: hidden;
}

.eg-authority-expertise {
  margin-top: 2rem;
  padding: 1.8rem;
  background: var(--eg-espresso);
}

.eg-authority-expertise h3 {
  margin: 0 0 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
}

.eg-authority-expertise ul,
.eg-authority-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.eg-authority-expertise li,
.eg-authority-checklist li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--eg-taupe);
}

.eg-authority-expertise li::before,
.eg-authority-checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--eg-gold-rich);
  font-size: 0.55rem;
}

.eg-authority-block {
  margin-bottom: 2.25rem;
}

.eg-authority-block h2,
.eg-authority-step h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.eg-authority-richtext {
  color: var(--eg-mid-brown);
}

.eg-authority-richtext h2,
.eg-authority-richtext h3,
.eg-authority-richtext h4 {
  font-family: var(--eg-serif);
  color: var(--eg-espresso);
}

.eg-authority-note-box,
.eg-authority-box,
.eg-authority-richtext--boxed {
  padding: 1.6rem 1.8rem;
}

.eg-authority-method-body .eg-authority-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 0 0 3rem;
  margin: 0 0 3rem;
  border-bottom: 1px solid var(--eg-cream);
}

.eg-authority-step__num {
  font-family: var(--eg-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--eg-cream);
}

.eg-authority-table-wrap {
  margin-top: 1.2rem;
  overflow-x: auto;
}

.eg-authority-table {
  width: 100%;
  border-collapse: collapse;
}

.eg-authority-table th {
  padding: 0.85rem 1rem;
  background: var(--eg-espresso);
  color: var(--eg-taupe);
  text-align: left;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eg-authority-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--eg-cream);
  background: var(--eg-warm-white);
}

.eg-authority-box h3 {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-gold-rich);
}

.eg-authority-signal-grid {
  grid-template-columns: repeat(2, 1fr);
}

.eg-authority-richtext--boxed {
  margin-top: 2rem;
}

@media (max-width: 1080px) {
  .eg-luxe-hero__grid,
  .eg-luxe-proof-grid,
  .eg-luxe-pillars-layout,
  .eg-luxe-two-col,
  .eg-authority-columns,
  .eg-authority-story__grid,
  .eg-authority-hero__grid,
  .eg-luxe-about-grid,
  .eg-luxe-method-strip__inner,
  .eg-luxe-section-head--split {
    grid-template-columns: 1fr;
  }

  .eg-luxe-pillars-grid,
  .eg-luxe-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eg-luxe-pillar-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .eg-luxe-method-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .eg-luxe-hero__grid {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .eg-luxe-stat-block,
  .eg-authority-stats,
  .eg-luxe-pillars-grid,
  .eg-luxe-standards-grid,
  .eg-authority-signal-grid,
  .eg-luxe-pillar-card-grid,
  .eg-luxe-method-steps {
    grid-template-columns: 1fr;
  }

  .eg-authority-method-body .eg-authority-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .eg-luxe-section,
  .eg-authority-story,
  .eg-authority-method-body,
  .eg-authority-trust-body {
    padding: 4rem 0;
  }

  .eg-luxe-badge {
    position: static;
    margin-top: 1rem;
  }
}
