/* ──────────────────────────────────────────────────────────
   Ideal Events Hire — Editorial design system
   Palette: dialed back from prototype. Warm neutrals primary,
   brass as accent, deep warm ink for type. Used across the
   new design port. Class prefix: ieg- (BEM).
────────────────────────────────────────────────────────── */

:root {
  /* Surfaces — lighter, warmer */
  --cream: #F5EFE6;
  --ivory: #FAF7F1;
  --parchment: #EDE4D3;
  --bone: #F9F4EB;
  --paper: #FFFDF9;

  /* Ink — warm dark brown, not black */
  --ink: #2A2520;
  --ink-soft: #4A3F38;
  --ink-dim: #6B5F55;

  /* Accent */
  --brass: #B08A55;
  --brass-light: #C9A878;
  --brass-deep: #8C6C3F;
  --champagne: #D9C39E;

  /* Deep accent (used sparingly — CTA banners, quote cards) */
  --onyx: #2A2520;
  --onyx-soft: #3A332C;

  /* Brand burgundy — used at featured accent moments only */
  --burgundy: #800020;
  --burgundy-deep: #5A0016;

  /* Lines */
  --line: rgba(42, 37, 32, 0.12);
  --line-strong: rgba(42, 37, 32, 0.22);
  --line-onyx: rgba(245, 239, 230, 0.14);

  /* Text opacity helpers */
  --muted: rgba(42, 37, 32, 0.62);
  --muted-on-dark: rgba(245, 239, 230, 0.62);

  /* Typography */
  --font-display: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --font-italic: "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Layout */
  --container: 1440px;
  --pad: 48px;
  --pad-m: 22px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ── Reset / base ─────────────────────────────────────── */
.ieg-ed *, .ieg-ed *::before, .ieg-ed *::after { box-sizing: border-box; }

.ieg-ed {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ieg-ed h1, .ieg-ed h2, .ieg-ed h3, .ieg-ed h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.ieg-ed h1 { font-size: clamp(52px, 7.5vw, 120px); line-height: 1.02; font-weight: 300; letter-spacing: -0.02em; }
.ieg-ed h2 { font-size: clamp(34px, 4.8vw, 68px); line-height: 1.06; font-weight: 400; }
.ieg-ed h3 { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.2; font-weight: 500; }
.ieg-ed h4 { font-size: 18px; line-height: 1.3; font-weight: 500; }
.ieg-ed p { margin: 0 0 1em; color: var(--ink-soft); }
.ieg-ed a { color: inherit; text-decoration: none; }
.ieg-ed img { display: block; max-width: 100%; height: auto; }

/* Display size used only for showpiece hero headlines */
.ieg-ed .display-xxl {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.025em;
}

/* ── Layout ───────────────────────────────────────────── */
.ieg-ed .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.ieg-ed .section { padding: 120px 0; }
.ieg-ed .section-sm { padding: 72px 0; }
.ieg-ed .section-xs { padding: 48px 0; }

@media (max-width: 720px) {
  .ieg-ed .container { padding: 0 var(--pad-m); }
  .ieg-ed .section { padding: 80px 0; }
  .ieg-ed .section-sm { padding: 56px 0; }
}

/* ── Surfaces ─────────────────────────────────────────── */
.ieg-ed .on-cream      { background: var(--cream); color: var(--ink); }
.ieg-ed .on-ivory      { background: var(--ivory); color: var(--ink); }
.ieg-ed .on-parchment  { background: var(--parchment); color: var(--ink); }
.ieg-ed .on-bone       { background: var(--bone); color: var(--ink); }
.ieg-ed .on-paper      { background: var(--paper); color: var(--ink); }
.ieg-ed .on-onyx       { background: var(--onyx); color: var(--cream); }
.ieg-ed .on-onyx p     { color: var(--muted-on-dark); }
.ieg-ed .on-onyx h1, .ieg-ed .on-onyx h2, .ieg-ed .on-onyx h3 { color: var(--cream); }
.ieg-ed .on-burgundy   { background: var(--burgundy); color: var(--cream); }
.ieg-ed .on-burgundy p { color: var(--muted-on-dark); }
.ieg-ed .on-burgundy h1, .ieg-ed .on-burgundy h2, .ieg-ed .on-burgundy h3 { color: var(--cream); }

/* ── Editorial micro-type ─────────────────────────────── */
.ieg-ed .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ieg-ed .eyebrow.dark,
.ieg-ed .eyebrow.on-dark { color: var(--brass-light); }
.ieg-ed .eyebrow .num { color: var(--brass); font-weight: 600; }

.ieg-ed .italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.ieg-ed .rule { height: 1px; background: var(--line); width: 100%; }
.ieg-ed .rule.dark { background: var(--line-onyx); }
.ieg-ed .vrule { width: 1px; background: var(--line); }

/* Numeral — big serif numbers used for section counters */
.ieg-ed .numeral {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.02em;
}

/* ── Buttons ──────────────────────────────────────────── */
.ieg-ed .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.ieg-ed .btn-primary   { background: var(--ink); color: var(--cream); }
.ieg-ed .btn-primary:hover { background: var(--brass); color: var(--ink); }
.ieg-ed .btn-primary.dark,
.ieg-ed .btn-primary.on-dark { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.ieg-ed .btn-primary.dark:hover,
.ieg-ed .btn-primary.on-dark:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }

.ieg-ed .btn-ghost     { background: transparent; color: var(--ink); border-color: var(--ink); }
.ieg-ed .btn-ghost:hover { background: var(--ink); color: var(--cream); }
.ieg-ed .btn-ghost.dark,
.ieg-ed .btn-ghost.on-dark { color: var(--cream); border-color: var(--cream); background: transparent; }
.ieg-ed .btn-ghost.dark:hover,
.ieg-ed .btn-ghost.on-dark:hover { background: var(--cream); color: var(--ink); }

/* Burgundy variant — reserved for featured moments */
.ieg-ed .btn-primary.burgundy { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.ieg-ed .btn-primary.burgundy:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: var(--cream); }

.ieg-ed .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  background: none;
  border-left: none; border-right: none; border-top: none;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ieg-ed .btn-link:hover { color: var(--brass); border-bottom-color: var(--brass); }
.ieg-ed .btn-link.dark,
.ieg-ed .btn-link.on-dark { color: var(--cream); border-bottom-color: var(--cream); }
.ieg-ed .btn-link.dark:hover,
.ieg-ed .btn-link.on-dark:hover { color: var(--brass-light); border-bottom-color: var(--brass-light); }

.ieg-ed .btn .arrow { width: 14px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.ieg-ed .btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ── Logo (image) ─────────────────────────────────────── */
.ieg-ed .logo { display: inline-block; line-height: 0; }
.ieg-ed .logo img { height: 52px; width: auto; display: block; }
.ieg-ed .logo .logo-light { display: block; }
.ieg-ed .logo .logo-dark  { display: none; }
.ieg-ed .ed-nav.is-scrolled .logo .logo-light { display: none; }
.ieg-ed .ed-nav.is-scrolled .logo .logo-dark  { display: block; }
@media (max-width: 960px) {
  .ieg-ed .logo img { height: 42px; }
}

/* ── Wordmark (text logo, legacy) ─────────────────────── */
.ieg-ed .wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.ieg-ed .wordmark .w-ideal {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ieg-ed .wordmark .w-events {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 6px;
}
.ieg-ed .wordmark.dark .w-ideal { color: var(--ink); }
.ieg-ed .wordmark.dark .w-events { color: var(--brass-deep); }

/* ── Cards ────────────────────────────────────────────── */
.ieg-ed .card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ieg-ed .card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(42,37,32,0.15); }

.ieg-ed .chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  background: transparent;
  font-weight: 500;
}
.ieg-ed .chip.brass { background: var(--brass); color: var(--ink); border-color: var(--brass); }

/* ── Stars ────────────────────────────────────────────── */
.ieg-ed .stars { display: inline-flex; gap: 3px; color: var(--brass); }
.ieg-ed .stars span { font-size: 14px; }

/* ──────────────────────────────────────────────────────
   NAV — transparent over hero, condensed when scrolled
────────────────────────────────────────────────────── */
.ieg-ed .ed-announce {
  background: var(--burgundy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid var(--line-onyx);
}
.ieg-ed .ed-announce .brass { color: var(--brass); }

.ieg-ed .ed-nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(42, 37, 32, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ieg-ed .ed-nav.is-scrolled {
  background: rgba(42, 37, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-onyx);
}
.ieg-ed .ed-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.ieg-ed .ed-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ieg-ed .ed-nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ieg-ed .ed-nav__links a:hover,
.ieg-ed .ed-nav__links a.is-active { color: var(--brass-light); border-bottom-color: var(--brass); }

.ieg-ed .ed-nav__right { display: flex; align-items: center; gap: 20px; }
.ieg-ed .ed-nav__quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.ieg-ed .ed-nav__quote .count {
  background: var(--brass);
  color: var(--ink);
  border-radius: 999px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.ieg-ed .ed-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ieg-ed .ed-nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.2s, background 0.3s;
}
.ieg-ed .ed-nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ieg-ed .ed-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.ieg-ed .ed-nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu slide-in */
.ieg-ed .ed-mobile {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 420px);
  background: var(--onyx);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  padding: 120px 40px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ieg-ed .ed-mobile.is-open { transform: translateX(0); }
.ieg-ed .ed-mobile__overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 32, 0.6);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.ieg-ed .ed-mobile__overlay.is-open { opacity: 1; pointer-events: all; }
.ieg-ed .ed-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-onyx);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ieg-ed .ed-mobile a:hover { color: var(--brass-light); }
.ieg-ed .ed-mobile a .n {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brass);
  font-weight: 500;
}
.ieg-ed .ed-mobile__cta {
  margin-top: 24px;
  justify-content: center !important;
}

@media (max-width: 960px) {
  .ieg-ed .ed-nav__links { display: none; }
  .ieg-ed .ed-nav__quote span.label { display: none; }
  .ieg-ed .ed-nav__burger { display: flex; }
}

/* ──────────────────────────────────────────────────────
   HERO — big, warm, gallery-style image
────────────────────────────────────────────────────── */
.ieg-ed .ed-hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: 1fr;
  isolation: isolate;
  overflow: hidden;
  margin-top: -88px; /* nav overlaps */
  padding-top: 88px;
  background: var(--onyx);
}
.ieg-ed .ed-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ieg-ed .ed-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: ed-hero-fade 32s infinite;
  will-change: opacity;
}
.ieg-ed .ed-hero__slide:nth-child(1) { animation-delay: -1s; }
.ieg-ed .ed-hero__slide:nth-child(2) { animation-delay: 7s; }
.ieg-ed .ed-hero__slide:nth-child(3) { animation-delay: 15s; }
.ieg-ed .ed-hero__slide:nth-child(4) { animation-delay: 23s; }

@keyframes ed-hero-fade {
  0%    { opacity: 0; }
  3.1%  { opacity: 1; }
  25%   { opacity: 1; }
  28.1% { opacity: 0; }
  100%  { opacity: 0; }
}
.ieg-ed .ed-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42,37,32,0.55) 0%, rgba(42,37,32,0.35) 45%, rgba(42,37,32,0.75) 100%);
}
.ieg-ed .ed-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  padding: 80px var(--pad) 100px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  min-height: calc(96vh - 88px);
}
.ieg-ed .ed-hero__title {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 128px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.ieg-ed .ed-hero__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}
.ieg-ed .ed-hero__body {
  color: var(--muted-on-dark);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}
.ieg-ed .ed-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ieg-ed .ed-hero__meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-onyx);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted-on-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ieg-ed .ed-hero__meta strong { color: var(--brass-light); font-weight: 500; }
.ieg-ed .ed-hero__top {
  position: absolute;
  top: 120px;
  left: var(--pad);
  z-index: 2;
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .ieg-ed .ed-hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 60px var(--pad-m) 80px; }
  .ieg-ed .ed-hero__top { display: none; }
}

/* ──────────────────────────────────────────────────────
   3×3 EDITORIAL NAV GRID
────────────────────────────────────────────────────── */
.ieg-ed .ed-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ieg-ed .ed-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: var(--cream);
  background: var(--ink);
}
.ieg-ed .ed-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.ieg-ed .ed-tile:hover .ed-tile__img { transform: scale(1.05); }
.ieg-ed .ed-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,37,32,0.2) 0%, rgba(42,37,32,0.75) 100%);
}
.ieg-ed .ed-tile__content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.ieg-ed .ed-tile__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--brass-light);
}
.ieg-ed .ed-tile__bottom { display: flex; flex-direction: column; gap: 8px; }
.ieg-ed .ed-tile__label {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--cream);
}
.ieg-ed .ed-tile__sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.8;
}
/* Solid tiles */
.ieg-ed .ed-tile--solid-blush    { background: #F3B8B7; }
.ieg-ed .ed-tile--solid-burgundy { background: var(--burgundy); }
.ieg-ed .ed-tile--solid-cream    { background: var(--parchment); }
.ieg-ed .ed-tile--solid-blush .ed-tile__label,
.ieg-ed .ed-tile--solid-cream .ed-tile__label { color: var(--ink); }
.ieg-ed .ed-tile--solid-blush .ed-tile__num,
.ieg-ed .ed-tile--solid-blush .ed-tile__sub { color: rgba(42,37,32,0.6); }
.ieg-ed .ed-tile--solid-cream .ed-tile__num,
.ieg-ed .ed-tile--solid-cream .ed-tile__sub { color: var(--brass-deep); }

/* Brush-stroke accents on solid tiles */
.ieg-ed .ed-tile--solid-blush::before,
.ieg-ed .ed-tile--solid-burgundy::before,
.ieg-ed .ed-tile--solid-cream::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 64px; height: 64px;
  background: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 1px, transparent 6px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.ieg-ed .ed-tile--solid-blush::after,
.ieg-ed .ed-tile--solid-burgundy::after,
.ieg-ed .ed-tile--solid-cream::after {
  content: "";
  position: absolute;
  bottom: 24px; left: 24px;
  width: 88px; height: 40px;
  background: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 1px, transparent 6px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.ieg-ed .ed-tile--solid-blush::before,
.ieg-ed .ed-tile--solid-blush::after { color: var(--ink); }
.ieg-ed .ed-tile--solid-burgundy::before,
.ieg-ed .ed-tile--solid-burgundy::after { color: var(--cream); }
.ieg-ed .ed-tile--solid-cream::before,
.ieg-ed .ed-tile--solid-cream::after { color: var(--brass); }

.ieg-ed .ed-tile__icon {
  width: 48px; height: 48px;
  stroke: currentColor; fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: auto;
  align-self: flex-end;
}

@media (max-width: 1024px) {
  .ieg-ed .ed-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .ieg-ed .ed-tiles { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   MARQUEE (event types scroller)
────────────────────────────────────────────────────── */
.ieg-ed .ed-marquee {
  background: var(--parchment);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
}
.ieg-ed .ed-marquee__track {
  display: inline-flex;
  gap: 72px;
  white-space: nowrap;
  animation: ed-marquee 40s linear infinite;
}
.ieg-ed .ed-marquee__item {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.ieg-ed .ed-marquee__item .dot { color: var(--brass); margin: 0 16px; }
@keyframes ed-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ──────────────────────────────────────────────────────
   EDITORIAL SPLIT — photo + offset quote card
────────────────────────────────────────────────────── */
.ieg-ed .ed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ieg-ed .ed-split__media {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.ieg-ed .ed-split__quote {
  position: absolute;
  right: -40px;
  bottom: 40px;
  max-width: 340px;
  background: var(--paper);
  padding: 32px;
  border-left: 2px solid var(--brass);
  box-shadow: 0 20px 60px -20px rgba(42,37,32,0.25);
}
.ieg-ed .ed-split__quote p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
}
.ieg-ed .ed-split__quote .who {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}

@media (max-width: 960px) {
  .ieg-ed .ed-split { grid-template-columns: 1fr; gap: 40px; }
  .ieg-ed .ed-split__quote { right: 20px; bottom: 20px; max-width: 280px; }
}

/* ──────────────────────────────────────────────────────
   PRODUCT CARD — used on shop + home teasers
────────────────────────────────────────────────────── */
.ieg-ed .ed-product {
  position: relative;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ieg-ed .ed-product:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(42,37,32,0.28); }
.ieg-ed .ed-product__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ieg-ed .ed-product__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42,37,32,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.ieg-ed .ed-product:hover .ed-product__img::after { opacity: 1; }
.ieg-ed .ed-product__add {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 12px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
  border: none;
  cursor: pointer;
}
.ieg-ed .ed-product:hover .ed-product__add { opacity: 1; transform: translateY(0); }
.ieg-ed .ed-product__body { padding: 20px 20px 24px; }
.ieg-ed .ed-product__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.ieg-ed .ed-product__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ieg-ed .ed-product__price {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────
   PACKAGES — 3-col
────────────────────────────────────────────────────── */
.ieg-ed .ed-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ieg-ed .ed-pkg {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ieg-ed .ed-pkg--featured { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.ieg-ed .ed-pkg--featured .ed-pkg__name,
.ieg-ed .ed-pkg--featured .ed-pkg__price { color: var(--cream); }
.ieg-ed .ed-pkg--featured .ed-pkg__list li { color: var(--muted-on-dark); border-color: var(--line-onyx); }
.ieg-ed .ed-pkg__badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--brass);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 600;
}
.ieg-ed .ed-pkg__name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ieg-ed .ed-pkg__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ieg-ed .ed-pkg__price sup {
  font-size: 16px;
  font-weight: 400;
  color: var(--brass);
  margin-right: 4px;
  vertical-align: top;
  top: 6px;
  position: relative;
}
.ieg-ed .ed-pkg__sub { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.ieg-ed .ed-pkg__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.ieg-ed .ed-pkg__list li {
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ieg-ed .ed-pkg__list li:last-child { border-bottom: 1px solid var(--line); }
.ieg-ed .ed-pkg__list li::before { content: "+"; color: var(--brass); font-weight: 300; }

@media (max-width: 960px) {
  .ieg-ed .ed-packages { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   REVIEWS
────────────────────────────────────────────────────── */
.ieg-ed .ed-reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ieg-ed .ed-review {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ieg-ed .ed-review__quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.ieg-ed .ed-review__who {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
@media (max-width: 1024px) {
  .ieg-ed .ed-reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ieg-ed .ed-reviews { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   WHY US — numbered 2×3
────────────────────────────────────────────────────── */
.ieg-ed .ed-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.ieg-ed .ed-why__item { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); }
.ieg-ed .ed-why__item .n {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ieg-ed .ed-why__item h3 { color: var(--ink); }
@media (max-width: 960px) { .ieg-ed .ed-why { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .ieg-ed .ed-why { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────────────────── */
.ieg-ed .ed-cta {
  position: relative;
  padding: 120px var(--pad);
  text-align: center;
  color: var(--cream);
  background: var(--burgundy);
  overflow: hidden;
}
.ieg-ed .ed-cta__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.ieg-ed .ed-cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ieg-ed .ed-cta h2 { color: var(--cream); margin-bottom: 24px; }
.ieg-ed .ed-cta p { color: var(--muted-on-dark); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ──────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────── */
.ieg-ed .ed-footer {
  background: var(--onyx);
  color: var(--cream);
  padding: 100px 0 40px;
  border-top: 1px solid var(--line-onyx);
}
.ieg-ed .ed-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.ieg-ed .ed-footer__about { color: var(--muted-on-dark); max-width: 280px; font-size: 14px; margin-top: 24px; }
.ieg-ed .ed-footer__title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.ieg-ed .ed-footer ul { list-style: none; padding: 0; margin: 0; line-height: 2.1; font-size: 14px; }
.ieg-ed .ed-footer ul a { color: var(--cream); cursor: pointer; }
.ieg-ed .ed-footer ul a:hover { color: var(--brass-light); }
.ieg-ed .ed-footer__rule { height: 1px; background: var(--line-onyx); width: 100%; }
.ieg-ed .ed-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0.12em;
}
@media (max-width: 960px) {
  .ieg-ed .ed-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .ieg-ed .ed-footer__grid { grid-template-columns: 1fr; }
  .ieg-ed .ed-footer__bottom { flex-direction: column; gap: 12px; }
}

/* ──────────────────────────────────────────────────────
   QUOTE CART DRAWER
────────────────────────────────────────────────────── */
.ieg-ed .ed-drawer-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(42, 37, 32, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.ieg-ed .ed-drawer-overlay.is-open { opacity: 1; pointer-events: all; }
.ieg-ed .ed-drawer {
  position: fixed; top: 0; right: 0;
  width: min(460px, 100vw); height: 100vh;
  background: var(--paper);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(42,37,32,0.15);
}
.ieg-ed .ed-drawer.is-open { transform: translateX(0); }
.ieg-ed .ed-drawer__head {
  padding: 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.ieg-ed .ed-drawer__title { font-family: var(--font-display); font-size: 24px; font-weight: 400; }
.ieg-ed .ed-drawer__close {
  background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink-soft);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.ieg-ed .ed-drawer__close:hover { color: var(--brass); }
.ieg-ed .ed-drawer__body { flex: 1; overflow-y: auto; padding: 28px; }
.ieg-ed .ed-drawer__empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; color: var(--muted); gap: 16px;
}
.ieg-ed .ed-drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.ieg-ed .ed-drawer__line {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ieg-ed .ed-drawer__line img { width: 70px; height: 70px; object-fit: cover; flex-shrink: 0; }
.ieg-ed .ed-drawer__line h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.ieg-ed .ed-drawer__line .qty { font-size: 12px; color: var(--muted); }
.ieg-ed .ed-drawer__remove {
  background: none; border: none; color: var(--muted); cursor: pointer; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0; margin-top: 4px;
}
.ieg-ed .ed-drawer__remove:hover { color: var(--burgundy); }

/* ──────────────────────────────────────────────────────
   Small helpers
────────────────────────────────────────────────────── */
.ieg-ed .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.ieg-ed .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ieg-ed .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) {
  .ieg-ed .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .ieg-ed .grid-3 { grid-template-columns: 1fr; }
  .ieg-ed .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ieg-ed .grid-4 { grid-template-columns: 1fr; }
}

.ieg-ed .stack-sm > * + * { margin-top: 16px; }
.ieg-ed .stack-md > * + * { margin-top: 24px; }
.ieg-ed .stack-lg > * + * { margin-top: 40px; }

.ieg-ed .center { text-align: center; }
.ieg-ed .section-head {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 720px; margin: 0 auto 72px;
  text-align: center;
  align-items: center;
}
.ieg-ed .section-head.left { text-align: left; margin-left: 0; align-items: flex-start; }

/* ──────────────────────────────────────────────────────
   PAGE HERO — smaller hero used on non-home pages
────────────────────────────────────────────────────── */
.ieg-ed .ed-page-hero {
  position: relative;
  padding: 180px var(--pad) 100px;
  background: var(--onyx);
  color: var(--cream);
  margin-top: -88px;
  padding-top: 180px;
  overflow: hidden;
}
.ieg-ed .ed-page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.ieg-ed .ed-page-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,15,0.45) 0%, rgba(20,17,15,0.15) 45%, rgba(20,17,15,0.8) 100%);
  pointer-events: none;
}
.ieg-ed .ed-page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start;
}
.ieg-ed .ed-page-hero__crumb {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.ieg-ed .ed-page-hero__crumb a { color: var(--champagne); opacity: 0.8; transition: opacity 0.2s; }
.ieg-ed .ed-page-hero__crumb a:hover { opacity: 1; }
.ieg-ed .ed-page-hero__crumb .sep { color: var(--brass); opacity: 0.6; }
.ieg-ed .ed-page-hero h1 {
  color: var(--cream);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ieg-ed .ed-page-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}
.ieg-ed .ed-page-hero__lead {
  color: var(--muted-on-dark);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}
@media (max-width: 720px) {
  .ieg-ed .ed-page-hero { padding: 140px var(--pad-m) 72px; }
}

/* ──────────────────────────────────────────────────────
   FORM — editorial, numbered sections
────────────────────────────────────────────────────── */
.ieg-ed .ed-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ieg-ed .ed-form__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-form__section:first-child { padding-top: 0; border-top: none; }
.ieg-ed .ed-form__section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.ieg-ed .ed-form__section-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--brass);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ieg-ed .ed-form__section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.ieg-ed .ed-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ieg-ed .ed-form__row--single { grid-template-columns: 1fr; }
.ieg-ed .ed-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ieg-ed .ed-form__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ieg-ed .ed-form__label .req { color: var(--brass); margin-left: 2px; }
.ieg-ed .ed-form__input,
.ieg-ed .ed-form__select,
.ieg-ed .ed-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.ieg-ed .ed-form__input:focus,
.ieg-ed .ed-form__select:focus,
.ieg-ed .ed-form__textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 138, 85, 0.16);
}
.ieg-ed .ed-form__input::placeholder,
.ieg-ed .ed-form__textarea::placeholder { color: var(--ink-dim); opacity: 0.6; }
.ieg-ed .ed-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='%238C6C3F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.ieg-ed .ed-form__textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.ieg-ed .ed-form__submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 18px 36px;
}
.ieg-ed .ed-form__status {
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 2px solid;
  display: none;
}
.ieg-ed .ed-form__status.is-success { display: block; color: var(--ink); background: var(--bone); border-left-color: var(--brass); }
.ieg-ed .ed-form__status.is-error { display: block; color: var(--burgundy); background: rgba(128, 0, 32, 0.06); border-left-color: var(--burgundy); }

@media (max-width: 720px) {
  .ieg-ed .ed-form__row { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   BLOG INDEX + ARTICLE + GALLERY
────────────────────────────────────────────────────── */

/* Blog index grid */
.ieg-ed .ed-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 720px) { .ieg-ed .ed-blog-grid { grid-template-columns: 1fr; gap: 32px; } }

.ieg-ed .ed-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.ieg-ed .ed-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(42,37,32,0.25);
  border-color: var(--brass-light);
}
.ieg-ed .ed-blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bone);
}
.ieg-ed .ed-blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ieg-ed .ed-blog-card:hover .ed-blog-card__img img { transform: scale(1.05); }
.ieg-ed .ed-blog-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.ieg-ed .ed-blog-card__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.ieg-ed .ed-blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.ieg-ed .ed-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ieg-ed .ed-blog-card__link {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.ieg-ed .ed-blog-card:hover .ed-blog-card__link { gap: 12px; }

/* Article body */
.ieg-ed .ed-article {
  background: var(--paper);
  padding: 80px 0 100px;
}
.ieg-ed .ed-article__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.ieg-ed .ed-article__meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin: 0 0 24px;
}
.ieg-ed .ed-article__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 56px;
  padding-left: 20px;
  border-left: 2px solid var(--brass);
}
.ieg-ed .ed-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.2;
  margin: 56px 0 20px;
  letter-spacing: -0.005em;
}
.ieg-ed .ed-article__body h2:first-child { margin-top: 0; }
.ieg-ed .ed-article__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 36px 0 12px;
}
.ieg-ed .ed-article__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.ieg-ed .ed-article__body a {
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
}
.ieg-ed .ed-article__body a:hover { color: var(--burgundy-deep); border-bottom-color: var(--burgundy-deep); }
.ieg-ed .ed-article__body ul, .ieg-ed .ed-article__body ol {
  padding-left: 0;
  margin: 0 0 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ieg-ed .ed-article__body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ieg-ed .ed-article__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--brass);
}
.ieg-ed .ed-article__body ol {
  counter-reset: article-ol;
}
.ieg-ed .ed-article__body ol li {
  position: relative;
  counter-increment: article-ol;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ieg-ed .ed-article__body ol li::before {
  content: counter(article-ol, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
}
.ieg-ed .ed-article__body strong { color: var(--ink); font-weight: 600; }

.ieg-ed .ed-article__cta-box {
  margin: 56px 0 0;
  padding: 32px;
  background: var(--bone);
  border-left: 3px solid var(--burgundy);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ieg-ed .ed-article__cta-box p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
.ieg-ed .ed-article__cta-box a {
  align-self: flex-start;
  padding: 14px 24px;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background 0.25s;
}
.ieg-ed .ed-article__cta-box a:hover { background: var(--burgundy-deep); border-bottom: none; }

/* Gallery masonry (CSS columns) */
.ieg-ed .ed-gallery {
  column-count: 4;
  column-gap: 16px;
}
@media (max-width: 1100px) { .ieg-ed .ed-gallery { column-count: 3; } }
@media (max-width: 720px)  { .ieg-ed .ed-gallery { column-count: 2; column-gap: 12px; } }
@media (max-width: 420px)  { .ieg-ed .ed-gallery { column-count: 1; } }

.ieg-ed .ed-gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
  overflow: hidden;
  background: var(--bone);
  cursor: pointer;
}
.ieg-ed .ed-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.ieg-ed .ed-gallery__item:hover img { transform: scale(1.03); }

/* ──────────────────────────────────────────────────────
   TABLE STYLING — landing + builder + review
────────────────────────────────────────────────────── */

/* Landing hero — dark moody, gradient over photo */
.ieg-ed .ed-ts-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #2A1014;
  margin-top: -88px;
  padding-top: 88px;
}
.ieg-ed .ed-ts-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.ieg-ed .ed-ts-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.3) 0%, rgba(20,17,15,0.15) 40%, rgba(20,17,15,0.75) 100%);
}
.ieg-ed .ed-ts-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  color: var(--cream);
  width: 100%;
}
.ieg-ed .ed-ts-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.ieg-ed .ed-ts-hero__eyebrow::before {
  content: ""; width: 40px; height: 1px;
  background: var(--brass);
}
.ieg-ed .ed-ts-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.ieg-ed .ed-ts-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--champagne);
}
.ieg-ed .ed-ts-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  color: rgba(245,239,230,0.85);
}
.ieg-ed .ed-ts-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-onyx);
}
.ieg-ed .ed-ts-hero__from {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}
.ieg-ed .ed-ts-hero__price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.ieg-ed .ed-ts-hero__meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  font-weight: 500;
}
.ieg-ed .ed-ts-hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .ieg-ed .ed-ts-hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 80px var(--pad-m); }
}

/* Moodboards on onyx */
.ieg-ed .ed-ts-moodgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ieg-ed .ed-ts-mood {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
  border: 1px solid transparent;
  display: block;
  color: var(--cream);
}
.ieg-ed .ed-ts-mood:hover { transform: translateY(-4px); border-color: var(--brass); }
.ieg-ed .ed-ts-mood__bg {
  position: absolute; inset: 0;
}
.ieg-ed .ed-ts-mood__glow {
  position: absolute; inset: 0;
}
.ieg-ed .ed-ts-mood__label {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ieg-ed .ed-ts-mood__num {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}
.ieg-ed .ed-ts-mood__name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  margin-top: 4px;
  color: var(--cream);
}
.ieg-ed .ed-ts-mood__sub {
  position: absolute; top: 16px; right: 16px;
  background: rgba(20,17,15,0.75);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
}
.ieg-ed .ed-ts-mood__tag {
  margin-top: 14px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-onyx);
  transition: color 0.2s;
}
.ieg-ed .ed-ts-mood:hover .ed-ts-mood__tag { color: var(--brass-light); }

@media (max-width: 960px) { .ieg-ed .ed-ts-moodgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ieg-ed .ed-ts-moodgrid { grid-template-columns: 1fr; } }

/* "What's included" split */
.ieg-ed .ed-ts-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.ieg-ed .ed-ts-included-grid > div {
  background: var(--cream);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.ieg-ed .ed-ts-included-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
}

/* "How it works" 3-col on cream (NOT onyx) */
.ieg-ed .ed-ts-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-onyx);
}
.ieg-ed .ed-ts-how-grid > div {
  background: var(--onyx-soft);
  padding: 48px 36px;
}
.ieg-ed .ed-ts-how-grid .num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--brass-light);
  letter-spacing: -0.02em;
}
.ieg-ed .ed-ts-how-grid h3 {
  margin-top: 20px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
}
.ieg-ed .ed-ts-how-grid p {
  margin-top: 14px;
  color: var(--muted-on-dark);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .ieg-ed .ed-ts-how-grid { grid-template-columns: 1fr; }
  .ieg-ed .ed-ts-included-grid { grid-template-columns: 1fr; }
}

/* Builder page */
.ieg-ed .ed-ts-builder {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  padding: 60px var(--pad) 100px;
}
.ieg-ed .ed-ts-builder__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.ieg-ed .ed-ts-builder__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.ieg-ed .ed-ts-back {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.ieg-ed .ed-ts-back:hover { color: var(--burgundy); }

.ieg-ed .ed-ts-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.ieg-ed .ed-ts-progress button {
  flex: 1; height: 3px;
  background: var(--line);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s;
}
.ieg-ed .ed-ts-progress button.is-reached { background: var(--burgundy); }
.ieg-ed .ed-ts-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 48px;
}

.ieg-ed .ed-ts-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .ieg-ed .ed-ts-builder { padding: 40px var(--pad-m) 80px; }
  .ieg-ed .ed-ts-layout { grid-template-columns: 1fr; gap: 48px; }
}

.ieg-ed .ed-ts-step h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

.ieg-ed .ed-ts-choices {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) {
  .ieg-ed .ed-ts-choices { grid-template-columns: 1fr; }
}
.ieg-ed .ed-ts-choice {
  text-align: left;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  overflow: hidden;
  font-family: inherit;
  display: flex;
  flex-direction: column;
}
.ieg-ed .ed-ts-choice:hover { border-color: var(--brass); transform: translateY(-2px); }
.ieg-ed .ed-ts-choice.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.ieg-ed .ed-ts-choice__img {
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(135deg, #E6DCC8 0%, #D6C9AD 100%);
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__img {
  background: linear-gradient(135deg, #2A1014 0%, #1A0A0E 100%);
}
.ieg-ed .ed-ts-choice__img::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(42,37,32,0.04) 0 1px, transparent 1px 14px);
  opacity: 0.6;
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__img::after {
  background: repeating-linear-gradient(45deg, rgba(245,239,230,0.05) 0 1px, transparent 1px 14px);
}
.ieg-ed .ed-ts-choice__tag {
  position: absolute;
  bottom: 12px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(42,37,32,0.5);
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__tag { color: var(--blush); }
.ieg-ed .ed-ts-choice__check {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__check { display: inline-flex; }
.ieg-ed .ed-ts-choice__body {
  padding: 18px 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.ieg-ed .ed-ts-choice__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.ieg-ed .ed-ts-choice__sub {
  font-size: 12px;
  margin-top: 4px;
  color: var(--muted);
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__sub { color: var(--muted-on-dark); }
.ieg-ed .ed-ts-choice__upcharge {
  flex-shrink: 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  white-space: nowrap;
}
.ieg-ed .ed-ts-choice.is-active .ed-ts-choice__upcharge {
  border-color: var(--brass);
  color: var(--brass-light);
}

/* Per-step notes textarea */
.ieg-ed .ed-ts-notes {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-ts-notes__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
}
.ieg-ed .ed-ts-notes__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  resize: vertical;
  min-height: 88px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
.ieg-ed .ed-ts-notes__input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 138, 85, 0.18);
}
.ieg-ed .ed-ts-notes__input::placeholder { color: var(--ink-dim); opacity: 0.7; }

/* "Has note" indicator dot in rail list */
.ieg-ed .ed-ts-note-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}

/* Note display on review summary list */
.ieg-ed .ed-ts-summary-note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--burgundy);
  margin-top: 6px;
  line-height: 1.5;
}

.ieg-ed .ed-ts-nav {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ieg-ed .ed-ts-prev {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ieg-ed .ed-ts-prev:disabled { opacity: 0.4; cursor: not-allowed; }

/* Sticky summary rail */
.ieg-ed .ed-ts-rail {
  position: sticky;
  top: 120px;
  padding: 28px;
  background: var(--parchment);
  border: 1px solid var(--line);
}
.ieg-ed .ed-ts-rail h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 8px;
}
.ieg-ed .ed-ts-rail-section {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ieg-ed .ed-ts-guest-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  margin-top: 10px;
}
.ieg-ed .ed-ts-guest-stepper button {
  width: 36px; height: 36px;
  background: none; border: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.ieg-ed .ed-ts-guest-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.ieg-ed .ed-ts-guest-stepper .count {
  min-width: 50px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

.ieg-ed .ed-ts-rail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ieg-ed .ed-ts-rail-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  padding: 6px 8px;
  margin: 0 -8px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.ieg-ed .ed-ts-rail-list li.is-current {
  background: rgba(128,0,32,0.06);
  border-left-color: var(--burgundy);
}
.ieg-ed .ed-ts-rail-list .label {
  color: var(--ink-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 90px;
  font-weight: 500;
}
.ieg-ed .ed-ts-rail-list .value {
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}
.ieg-ed .ed-ts-rail-list .value.empty { color: var(--ink-dim); font-weight: 400; }
.ieg-ed .ed-ts-rail-list .upch {
  color: var(--burgundy);
  font-family: var(--font-italic);
  font-style: italic;
  margin-left: 6px;
  font-size: 12px;
}

.ieg-ed .ed-ts-rail-totals {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-ts-rail-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.ieg-ed .ed-ts-rail-totals__row + .ed-ts-rail-totals__row { margin-top: 6px; }
.ieg-ed .ed-ts-rail-totals__row.upg {
  color: var(--burgundy);
  font-family: var(--font-italic);
  font-style: italic;
}
.ieg-ed .ed-ts-rail-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
}
.ieg-ed .ed-ts-rail-total__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ieg-ed .ed-ts-rail-total__sub {
  font-size: 10px;
  color: var(--ink-dim);
  margin-top: 2px;
}
.ieg-ed .ed-ts-rail-total__amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
}
.ieg-ed .ed-ts-rail-note {
  font-size: 10px;
  color: var(--ink-dim);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* Review page */
.ieg-ed .ed-ts-review {
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  padding: 80px var(--pad) 100px;
}
.ieg-ed .ed-ts-review__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.ieg-ed .ed-ts-review__head {
  text-align: center;
  margin-bottom: 60px;
}
.ieg-ed .ed-ts-review__head h1 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin: 18px 0 0;
}
.ieg-ed .ed-ts-review__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
@media (max-width: 960px) { .ieg-ed .ed-ts-review__layout { grid-template-columns: 1fr; gap: 48px; } }
.ieg-ed .ed-ts-render {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #4A1421 0%, #1E0711 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ieg-ed .ed-ts-render__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.ieg-ed .ed-ts-render__gradient {
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 30% 30%, rgba(217,182,121,0.12), transparent 60%),
              radial-gradient(40% 60% at 80% 70%, rgba(176,138,85,0.18), transparent 70%);
}
.ieg-ed .ed-ts-summary-box {
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--ivory);
}
.ieg-ed .ed-ts-summary-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.ieg-ed .ed-ts-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.ieg-ed .ed-ts-summary-list .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.ieg-ed .ed-ts-summary-list .value {
  font-family: var(--font-display);
  font-size: 18px;
  text-align: right;
}
.ieg-ed .ed-ts-summary-list .upch {
  color: var(--burgundy);
  font-style: italic;
  font-size: 14px;
  margin-left: 8px;
}

.ieg-ed .ed-ts-summary-totals {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-ts-summary-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 3px 0;
}
.ieg-ed .ed-ts-summary-totals__row.upg {
  color: var(--burgundy);
  font-family: var(--font-italic);
  font-style: italic;
}
.ieg-ed .ed-ts-summary-grand {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ieg-ed .ed-ts-summary-grand__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.ieg-ed .ed-ts-summary-grand__sub {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.ieg-ed .ed-ts-summary-grand__amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
}

.ieg-ed .ed-ts-review-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ieg-ed .ed-ts-review-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.ieg-ed .ed-ts-review-note em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--burgundy);
}

/* Mobile: hide sticky summary rail on very narrow, show bottom bar instead */
@media (max-width: 960px) {
  .ieg-ed .ed-ts-rail { position: static; }
}

/* ──────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE
────────────────────────────────────────────────────── */
.ieg-ed .ed-prod-page {
  background: var(--onyx);
  color: var(--cream);
  margin-top: -88px;
  padding-top: 88px;
}
.ieg-ed .ed-prod-crumb {
  padding: 40px var(--pad) 0;
  max-width: var(--container);
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.ieg-ed .ed-prod-crumb a { color: var(--muted-on-dark); transition: color 0.2s; }
.ieg-ed .ed-prod-crumb a:hover { color: var(--brass-light); }
.ieg-ed .ed-prod-crumb .sep { color: var(--brass); margin: 0 10px; opacity: 0.6; }
.ieg-ed .ed-prod-crumb .current { color: var(--cream); }

.ieg-ed .ed-prod-main {
  padding: 56px var(--pad) 96px;
  max-width: var(--container);
  margin: 0 auto;
}
.ieg-ed .ed-prod-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Gallery */
.ieg-ed .ed-prod-gallery__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.ieg-ed .ed-prod-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.ieg-ed .ed-prod-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.ieg-ed .ed-prod-gallery__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--onyx-soft);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.7;
}
.ieg-ed .ed-prod-gallery__thumb:hover { opacity: 1; }
.ieg-ed .ed-prod-gallery__thumb.is-active { border-color: var(--brass); opacity: 1; }
.ieg-ed .ed-prod-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Info panel */
.ieg-ed .ed-prod-info {
  padding-top: 8px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ieg-ed .ed-prod-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(176, 138, 85, 0.12);
  color: var(--brass-light);
  border: 1px solid rgba(176, 138, 85, 0.3);
}
.ieg-ed .ed-prod-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.ieg-ed .ed-prod-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-on-dark);
  margin: 0;
}

.ieg-ed .ed-prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-onyx);
}
.ieg-ed .ed-prod-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ieg-ed .ed-prod-gst {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
}
.ieg-ed .ed-prod-price-note {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  font-weight: 500;
}

/* Includes list */
.ieg-ed .ed-prod-includes-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.ieg-ed .ed-prod-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ieg-ed .ed-prod-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
}
.ieg-ed .ed-prod-includes li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 1px;
  background: var(--brass);
  margin-top: 11px;
}

.ieg-ed .ed-prod-disclaimer {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--muted-on-dark);
  line-height: 1.55;
  padding: 16px;
  border-left: 2px solid var(--brass);
  background: rgba(176, 138, 85, 0.06);
}

/* Quantity + Add row */
.ieg-ed .ed-prod-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line-onyx);
}
.ieg-ed .ed-prod-action-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.ieg-ed .ed-prod-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-onyx);
  background: transparent;
}
.ieg-ed .ed-prod-qty button {
  width: 44px; height: 56px;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.ieg-ed .ed-prod-qty button:hover { color: var(--brass-light); }
.ieg-ed .ed-prod-qty button:disabled { color: rgba(245,239,230,0.25); cursor: not-allowed; }
.ieg-ed .ed-prod-qty .count {
  min-width: 44px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}
.ieg-ed .ed-prod-add {
  flex: 1;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 0 24px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ieg-ed .ed-prod-add:hover { background: var(--brass-light); }
.ieg-ed .ed-prod-add.is-added { background: var(--cream); color: var(--ink); }
.ieg-ed .ed-prod-ask {
  width: 100%;
  justify-content: center;
  padding: 18px 20px;
}

/* Details accordion (inside info panel) */
.ieg-ed .ed-prod-details {
  margin-top: 8px;
  border-top: 1px solid var(--line-onyx);
}
.ieg-ed .ed-prod-details details {
  border-bottom: 1px solid var(--line-onyx);
}
.ieg-ed .ed-prod-details summary {
  list-style: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.ieg-ed .ed-prod-details summary::-webkit-details-marker { display: none; }
.ieg-ed .ed-prod-details summary::after {
  content: "";
  position: relative;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--brass) 2px, transparent 2px) center/12px 12px,
              linear-gradient(var(--brass),var(--brass)) center/14px 1.5px no-repeat,
              linear-gradient(var(--brass),var(--brass)) center/1.5px 14px no-repeat;
  background:
    linear-gradient(var(--brass),var(--brass)) center/14px 1.5px no-repeat,
    linear-gradient(var(--brass),var(--brass)) center/1.5px 14px no-repeat;
  transition: transform 0.3s var(--ease);
}
.ieg-ed .ed-prod-details details[open] summary::after {
  transform: rotate(45deg);
}
.ieg-ed .ed-prod-details summary:hover { color: var(--brass-light); }
.ieg-ed .ed-prod-details .content {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-on-dark);
}
.ieg-ed .ed-prod-details .content a { color: var(--brass-light); border-bottom: 1px solid var(--brass-light); }

/* Related on cream */
.ieg-ed .ed-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ieg-ed .ed-related-head__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ieg-ed .ed-related-head h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 960px) {
  .ieg-ed .ed-prod-layout { grid-template-columns: 1fr; gap: 40px; }
  .ieg-ed .ed-prod-info { position: static; }
  .ieg-ed .ed-prod-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ──────────────────────────────────────────────────────
   CATEGORY SUB-NAV (horizontal scroll, sticky)
────────────────────────────────────────────────────── */
.ieg-ed .ed-cat-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 88px;
  z-index: 100;
  overflow: hidden;
}
.ieg-ed .ed-cat-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ieg-ed .ed-cat-nav__inner::-webkit-scrollbar { display: none; }
.ieg-ed .ed-cat-nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 18px 18px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ieg-ed .ed-cat-nav__link:hover { color: var(--burgundy); }
.ieg-ed .ed-cat-nav__link.is-active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}
@media (max-width: 720px) {
  .ieg-ed .ed-cat-nav { top: 80px; }
  .ieg-ed .ed-cat-nav__inner { padding: 0 var(--pad-m); }
  .ieg-ed .ed-cat-nav__link { padding: 14px 14px; font-size: 10px; }
}

/* ──────────────────────────────────────────────────────
   PRODUCT GRID (category page)
────────────────────────────────────────────────────── */
.ieg-ed .ed-products-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.ieg-ed .ed-products-head__count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.ieg-ed .ed-products-head__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.ieg-ed .ed-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1100px) { .ieg-ed .ed-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .ieg-ed .ed-product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; } }
@media (max-width: 420px)  { .ieg-ed .ed-product-grid { grid-template-columns: 1fr; } }

/* Full-product card — same .ed-product as homepage teaser with extensions */
.ieg-ed .ed-product__gst {
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 4px;
  font-weight: 500;
}
.ieg-ed .ed-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-product__view {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.ieg-ed .ed-product:hover .ed-product__view { gap: 10px; color: var(--burgundy); }
.ieg-ed .ed-product__view svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Added-state for the hover Add-to-Quote button */
.ieg-ed .ed-product__add.is-added {
  background: var(--brass);
  color: var(--ink);
  opacity: 1;
  transform: translateY(0);
}

/* Toast notification */
.ieg-ed .ed-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 20px 40px -16px rgba(42,37,32,0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.ieg-ed .ed-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ieg-ed .ed-toast svg {
  width: 16px; height: 16px;
  stroke: var(--brass);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ──────────────────────────────────────────────────────
   PROCESS STEPS — alternating 2-col rows
────────────────────────────────────────────────────── */
.ieg-ed .ed-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 72px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.ieg-ed .ed-step:last-child { border-bottom: none; }

.ieg-ed .ed-step--reverse .ed-step__media { order: 2; }
.ieg-ed .ed-step--reverse .ed-step__body { order: 1; }

.ieg-ed .ed-step__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bone);
  position: relative;
}
.ieg-ed .ed-step__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,37,32,0) 60%, rgba(42,37,32,0.2) 100%);
}

.ieg-ed .ed-step__num {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 300;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.02em;
}
.ieg-ed .ed-step__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 16px 0 24px;
}
.ieg-ed .ed-step__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 440px;
}
.ieg-ed .ed-step__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ieg-ed .ed-step__bullets li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}
.ieg-ed .ed-step__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--brass);
  margin-top: 8px;
  border-radius: 50%;
}

@media (max-width: 960px) {
  .ieg-ed .ed-step { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .ieg-ed .ed-step--reverse .ed-step__media { order: 0; }
  .ieg-ed .ed-step--reverse .ed-step__body { order: 1; }
}

/* Promise cards (3-up on cream) */
.ieg-ed .ed-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ieg-ed .ed-promise__card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.ieg-ed .ed-promise__card:hover {
  transform: translateY(-4px);
  border-color: var(--brass-light);
  box-shadow: 0 20px 40px -24px rgba(42,37,32,0.2);
}
.ieg-ed .ed-promise__icon {
  width: 36px; height: 36px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ieg-ed .ed-promise__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.ieg-ed .ed-promise__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 960px) {
  .ieg-ed .ed-promise { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   FAQ ACCORDION — editorial
────────────────────────────────────────────────────── */
.ieg-ed .ed-faq-group { margin-bottom: 48px; }
.ieg-ed .ed-faq-group:last-child { margin-bottom: 0; }

.ieg-ed .ed-faq-group__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.ieg-ed .ed-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.ieg-ed .ed-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: color 0.2s;
}
.ieg-ed .ed-faq-btn:hover { color: var(--brass-deep); }

.ieg-ed .ed-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.ieg-ed .ed-faq-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 2px;
}
.ieg-ed .ed-faq-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.ieg-ed .ed-faq-item.is-open .ed-faq-text { color: var(--burgundy); }

.ieg-ed .ed-faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 6px;
  transition: transform 0.35s var(--ease);
}
.ieg-ed .ed-faq-icon::before,
.ieg-ed .ed-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--brass);
  transition: transform 0.3s var(--ease), background 0.2s;
}
.ieg-ed .ed-faq-icon::before {
  top: 8px; left: 0;
  width: 18px; height: 1.5px;
}
.ieg-ed .ed-faq-icon::after {
  top: 0; left: 8px;
  width: 1.5px; height: 18px;
}
.ieg-ed .ed-faq-item.is-open .ed-faq-icon { transform: rotate(45deg); }

.ieg-ed .ed-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding-right: 40px;
}
.ieg-ed .ed-faq-item.is-open .ed-faq-answer {
  max-height: 600px;
}
.ieg-ed .ed-faq-answer-inner {
  padding: 0 0 28px 36px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.ieg-ed .ed-faq-answer-inner a {
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
}
@media (max-width: 600px) {
  .ieg-ed .ed-faq-answer-inner { padding-left: 0; padding-right: 0; }
  .ieg-ed .ed-faq-answer { padding-right: 0; }
}

/* ──────────────────────────────────────────────────────
   PACKAGE CARDS — extras for full Packages page
────────────────────────────────────────────────────── */
.ieg-ed .ed-pkg__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.ieg-ed .ed-pkg--featured .ed-pkg__tagline { color: var(--brass-light); }

.ieg-ed .ed-pkg__ideal {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.ieg-ed .ed-pkg--featured .ed-pkg__ideal {
  color: var(--champagne);
  border-top-color: var(--line-onyx);
}

.ieg-ed .ed-pkg__not-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}
.ieg-ed .ed-pkg--featured .ed-pkg__not-heading { color: rgba(245,239,230,0.55); }

.ieg-ed .ed-pkg__not-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.ieg-ed .ed-pkg__not-list li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ieg-ed .ed-pkg__not-list li::before {
  content: "—";
  color: var(--ink-dim);
  flex-shrink: 0;
}
.ieg-ed .ed-pkg--featured .ed-pkg__not-list li { color: rgba(245,239,230,0.55); }
.ieg-ed .ed-pkg--featured .ed-pkg__not-list li::before { color: rgba(245,239,230,0.55); }

.ieg-ed .ed-pkg__cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
}
.ieg-ed .ed-pkg__cta .btn { width: 100%; justify-content: center; }

/* ──────────────────────────────────────────────────────
   COMPARISON TABLE — editorial
────────────────────────────────────────────────────── */
.ieg-ed .ed-compare {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-family: var(--font-body);
}
.ieg-ed .ed-compare thead th {
  text-align: left;
  padding: 20px 20px 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}
.ieg-ed .ed-compare thead th:first-child {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.ieg-ed .ed-compare thead .featured {
  color: var(--burgundy);
  font-style: italic;
}
.ieg-ed .ed-compare tbody td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ieg-ed .ed-compare tbody td:first-child {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.ieg-ed .ed-compare tbody td.featured {
  background: rgba(128, 0, 32, 0.04);
  color: var(--ink);
  font-weight: 500;
}
.ieg-ed .ed-compare .check { color: var(--burgundy); font-weight: 700; }
.ieg-ed .ed-compare .dash { color: var(--ink-dim); }
.ieg-ed .ed-compare-note {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-dim);
}

@media (max-width: 720px) {
  .ieg-ed .ed-compare thead th { padding: 14px 8px; font-size: 15px; }
  .ieg-ed .ed-compare thead th:first-child { font-size: 10px; letter-spacing: 0.14em; }
  .ieg-ed .ed-compare tbody td { padding: 12px 8px; font-size: 12px; }
  .ieg-ed .ed-compare tbody td:first-child { font-size: 10px; }
}

/* ──────────────────────────────────────────────────────
   CATEGORY GRID — used on Hire Shop landing
────────────────────────────────────────────────────── */
.ieg-ed .ed-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.ieg-ed .ed-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.ieg-ed .ed-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -30px rgba(42,37,32,0.25);
  border-color: var(--brass-light);
}
.ieg-ed .ed-cat__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bone);
}
.ieg-ed .ed-cat__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ieg-ed .ed-cat:hover .ed-cat__img img { transform: scale(1.06); }
.ieg-ed .ed-cat__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,15,0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.ieg-ed .ed-cat:hover .ed-cat__img::after { opacity: 1; }
.ieg-ed .ed-cat__num {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  z-index: 2;
}
.ieg-ed .ed-cat__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.ieg-ed .ed-cat__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.ieg-ed .ed-cat__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 8px;
}
.ieg-ed .ed-cat__link {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease);
}
.ieg-ed .ed-cat:hover .ed-cat__link { gap: 12px; }
.ieg-ed .ed-cat__link::after {
  content: "";
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.ieg-ed .ed-cat__link::before {
  /* hidden marker used nowhere — keeps no effect; pure spacing handled via after */
  content: none;
}

@media (max-width: 1100px) { .ieg-ed .ed-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .ieg-ed .ed-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ieg-ed .ed-cat-grid { grid-template-columns: 1fr; } }

/* Split cross-strip used at bottom of Hire Shop */
.ieg-ed .ed-help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.ieg-ed .ed-help-strip__copy {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 520px;
}
.ieg-ed .ed-help-strip__copy .big {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
}
.ieg-ed .ed-help-strip__copy .small {
  font-size: 14px;
  color: var(--ink-soft);
}
.ieg-ed .ed-help-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ──────────────────────────────────────────────────────
   WIZARD — 4-step progress indicator + steps
────────────────────────────────────────────────────── */
.ieg-ed .ed-wizard__progress {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
}
.ieg-ed .ed-wizard__tick {
  flex: 1;
  padding: 14px 0;
  border-top: 2px solid var(--line-onyx);
  cursor: default;
  transition: border-color 0.3s, color 0.3s;
}
.ieg-ed .ed-wizard__tick.is-reached { border-top-color: var(--brass); cursor: pointer; }
.ieg-ed .ed-wizard__tick-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  font-weight: 500;
}
.ieg-ed .ed-wizard__tick.is-reached .ed-wizard__tick-label { color: var(--brass-light); }
.ieg-ed .ed-wizard__tick.is-current .ed-wizard__tick-label { color: var(--cream); }

.ieg-ed .ed-wizard__step { display: none; }
.ieg-ed .ed-wizard__step.is-active { display: block; animation: ed-fade-in 0.4s var(--ease); }
@keyframes ed-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.ieg-ed .ed-wizard__step h2 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}
.ieg-ed .ed-wizard__step h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--champagne);
}

.ieg-ed .ed-wizard__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Chip-select (used for event type, etc.) */
.ieg-ed .ed-chip-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 28px;
}
.ieg-ed .ed-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line-onyx);
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.ieg-ed .ed-chip:hover { border-color: var(--brass); color: var(--brass-light); }
.ieg-ed .ed-chip.is-active { background: var(--brass); color: var(--ink); border-color: var(--brass); }

/* Package selector cards (step 3) */
.ieg-ed .ed-pkg-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 32px;
}
.ieg-ed .ed-pkg-select__card {
  text-align: left;
  padding: 20px;
  background: transparent;
  border: 1px solid var(--line-onyx);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--cream);
  font-family: var(--font-body);
}
.ieg-ed .ed-pkg-select__card:hover { border-color: var(--brass); background: rgba(176,138,85,0.06); }
.ieg-ed .ed-pkg-select__card.is-active { border-color: var(--brass); background: rgba(176,138,85,0.12); }
.ieg-ed .ed-pkg-select__price {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.ieg-ed .ed-pkg-select__name {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 8px;
  color: var(--cream);
  font-weight: 400;
}
.ieg-ed .ed-pkg-select__note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted-on-dark);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .ieg-ed .ed-pkg-select { grid-template-columns: 1fr; }
}

/* Dark-surface form inputs (used inside on-onyx wizard) */
.ieg-ed .on-onyx .ed-form__label,
.ieg-ed .ed-wizard .ed-form__label {
  color: var(--muted-on-dark);
}
.ieg-ed .on-onyx .ed-form__input,
.ieg-ed .on-onyx .ed-form__select,
.ieg-ed .on-onyx .ed-form__textarea,
.ieg-ed .ed-wizard .ed-form__input,
.ieg-ed .ed-wizard .ed-form__select,
.ieg-ed .ed-wizard .ed-form__textarea {
  background: transparent;
  border: 1px solid var(--line-onyx);
  color: var(--cream);
}
.ieg-ed .on-onyx .ed-form__input::placeholder,
.ieg-ed .on-onyx .ed-form__textarea::placeholder,
.ieg-ed .ed-wizard .ed-form__input::placeholder,
.ieg-ed .ed-wizard .ed-form__textarea::placeholder { color: rgba(245,239,230,0.35); }
.ieg-ed .on-onyx .ed-form__input:focus,
.ieg-ed .on-onyx .ed-form__select:focus,
.ieg-ed .on-onyx .ed-form__textarea:focus,
.ieg-ed .ed-wizard .ed-form__input:focus,
.ieg-ed .ed-wizard .ed-form__select:focus,
.ieg-ed .ed-wizard .ed-form__textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 138, 85, 0.18);
}
.ieg-ed .on-onyx input[type="date"],
.ieg-ed .ed-wizard input[type="date"] { color-scheme: dark; }

/* Thank-you step */
.ieg-ed .ed-thankyou {
  text-align: center;
  padding: 80px 0;
}
.ieg-ed .ed-thankyou h1 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
}
.ieg-ed .ed-thankyou h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--champagne);
}
.ieg-ed .ed-thankyou p {
  margin-top: 28px;
  color: var(--muted-on-dark);
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.ieg-ed .ed-thankyou__actions {
  margin-top: 40px;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────
   CONTACT LAYOUT — form + sidebar
────────────────────────────────────────────────────── */
.ieg-ed .ed-contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.ieg-ed .ed-contact__aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ieg-ed .ed-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ieg-ed .ed-contact__detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 18px; height: 18px;
}
.ieg-ed .ed-contact__detail-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.ieg-ed .ed-contact__detail-val,
.ieg-ed .ed-contact__detail-val a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.ieg-ed .ed-contact__detail-val a:hover { color: var(--brass); }

.ieg-ed .ed-contact__quote-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 28px;
}
.ieg-ed .ed-contact__quote-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 16px;
}
.ieg-ed .ed-contact__quote-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.ieg-ed .ed-contact__quote-line:last-child { border-bottom: 1px solid var(--line); }
.ieg-ed .ed-contact__quote-line .qty { color: var(--brass-deep); font-weight: 600; }
.ieg-ed .ed-contact__quote-empty {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 12px;
}

.ieg-ed .ed-contact__response {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  background: var(--bone);
  border-left: 2px solid var(--brass);
}
.ieg-ed .ed-contact__response svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  stroke: var(--brass);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
}
.ieg-ed .ed-contact__response p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.ieg-ed .ed-contact__response strong { color: var(--ink); font-weight: 600; }

@media (max-width: 960px) {
  .ieg-ed .ed-contact { grid-template-columns: 1fr; gap: 56px; }
  .ieg-ed .ed-contact__aside { position: static; order: 2; }
  .ieg-ed .ed-contact__form-wrap { order: 1; }
}

/* Sidebar on dark onyx background */
.ieg-ed .on-onyx .ed-contact__quote-card {
  background: transparent;
  border: 1px solid var(--line-onyx);
}
.ieg-ed .on-onyx .ed-contact__quote-title { color: var(--cream); }
.ieg-ed .on-onyx .ed-contact__quote-line {
  color: var(--muted-on-dark);
  border-top-color: var(--line-onyx);
}
.ieg-ed .on-onyx .ed-contact__quote-line:last-child { border-bottom-color: var(--line-onyx); }
.ieg-ed .on-onyx .ed-contact__quote-line .qty { color: var(--brass-light); }
.ieg-ed .on-onyx .ed-contact__quote-empty { color: var(--muted-on-dark); }

.ieg-ed .on-onyx .ed-contact__detail svg { stroke: var(--brass-light); }
.ieg-ed .on-onyx .ed-contact__detail-label { color: var(--brass-light); opacity: 0.8; }
.ieg-ed .on-onyx .ed-contact__detail-val,
.ieg-ed .on-onyx .ed-contact__detail-val a { color: var(--cream); }
.ieg-ed .on-onyx .ed-contact__detail-val a:hover { color: var(--brass-light); }

.ieg-ed .on-onyx .ed-contact__response {
  background: rgba(176, 138, 85, 0.06);
  border-left-color: var(--brass);
}
.ieg-ed .on-onyx .ed-contact__response p { color: var(--muted-on-dark); }
.ieg-ed .on-onyx .ed-contact__response strong { color: var(--cream); }
.ieg-ed .on-onyx .ed-contact__response svg { stroke: var(--brass-light); }

/* Quote count big number */
.ieg-ed .ed-contact__quote-count {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin: 16px 0 0;
  line-height: 1;
}
.ieg-ed .on-cream .ed-contact__quote-count,
.ieg-ed .on-ivory .ed-contact__quote-count { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .ieg-ed * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ieg-ed .ed-marquee__track { animation: none; }
  .ieg-ed .ed-hero__slide { animation: none; opacity: 0; }
  .ieg-ed .ed-hero__slide:nth-child(1) { opacity: 1; }
}
