/* =========================================================
   THEME 01 — EDITORIAL MAGAZINE
   forbesproperty.in  ·  Main Hub
   Aesthetic: Forbes magazine cover · oxblood + obsidian + cream
   Type: Playfair Display (display) + Inter (body) + Cormorant (pull-quotes)
   ========================================================= */

:root {
  /* Palette — Editorial */
  --ed-black:        #0A0A0A;
  --ed-black-soft:   #1A1A1A;
  --ed-cream:        #FAF7F2;
  --ed-cream-dark:   #F1ECE2;
  --ed-paper:        #FFFFFF;
  --ed-oxblood:      #7A0019;
  --ed-oxblood-dark: #55000F;
  --ed-red:          #C8102E;
  --ed-red-bright:   #E30B1C;
  --ed-rule:         rgba(10,10,10,0.12);
  --ed-muted:        #6B6B6B;

  /* Shadow the base vars so pre-existing classes inherit the red palette */
  --navy:       var(--ed-black);
  --navy-dark:  var(--ed-black-soft);
  --navy-light: #2a2a2a;
  --gold:       var(--ed-oxblood);
  --gold-light: var(--ed-red);
  --gold-dark:  var(--ed-oxblood-dark);
  --off-white:  var(--ed-cream);
  --shadow-gold: 0 4px 18px rgba(122,0,25,0.25);

  /* Fonts */
  --ed-serif:       'Playfair Display', 'Times New Roman', Georgia, serif;
  --ed-serif-italic:'Cormorant Garamond', 'Playfair Display', serif;
  --ed-sans:        'Inter', -apple-system, system-ui, sans-serif;
  --ed-mono:        'JetBrains Mono', ui-monospace, monospace;
  --font-heading:   var(--ed-serif);
  --font-body:      var(--ed-sans);
}

body.theme-editorial {
  background: var(--ed-cream);
  color: var(--ed-black);
  font-family: var(--ed-sans);
  font-feature-settings: "ss01","ss02";
}

body.theme-editorial::before {
  content:'';
  position:fixed; top:0; left:0; right:0;
  height:6px;
  background: linear-gradient(90deg, var(--ed-oxblood-dark) 0%, var(--ed-oxblood) 50%, var(--ed-red) 100%);
  z-index:10001;
}

body.theme-editorial h1,
body.theme-editorial h2,
body.theme-editorial h3,
body.theme-editorial h4 {
  font-family: var(--ed-serif);
  color: var(--ed-black);
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ========== EDITORIAL NAVIGATION ========== */
.ed-nav {
  position: fixed; top: 6px; left: 0; right: 0;
  z-index: 1000;
  background: var(--ed-cream);
  border-bottom: 1px solid var(--ed-rule);
  padding: 1.25rem 0;
  transition: all .3s ease;
}
.ed-nav.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 var(--ed-rule);
}
.ed-nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
}
.ed-nav-left, .ed-nav-right {
  display: flex; gap: 2rem;
  font-family: var(--ed-sans);
  font-size: .78rem; text-transform: uppercase;
  letter-spacing: 2.5px; font-weight: 500;
}
.ed-nav-right { justify-content: flex-end; }
.ed-nav-left a, .ed-nav-right a { color: var(--ed-black); position: relative; padding-bottom: 2px; }
.ed-nav-left a:hover, .ed-nav-right a:hover { color: var(--ed-oxblood); }
.ed-nav-left a::after, .ed-nav-right a::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: var(--ed-oxblood); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.ed-nav-left a:hover::after, .ed-nav-right a:hover::after { transform: scaleX(1); }

.ed-nav-brand {
  font-family: var(--ed-serif);
  font-size: 1.75rem; font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1;
}
.ed-nav-brand .small {
  font-family: var(--ed-sans);
  font-size: .55rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--ed-oxblood);
  margin-top: 3px; font-weight: 600;
}

.ed-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.ed-nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ed-black); margin: 5px 0; transition: .3s; }

/* ========== EDITORIAL HERO — COVER LAYOUT ========== */
.ed-hero {
  background: var(--ed-cream);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.ed-hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 4rem; align-items: start;
}
.ed-hero-kicker {
  font-family: var(--ed-sans);
  font-size: .72rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--ed-oxblood);
  font-weight: 600;
  border-top: 2px solid var(--ed-oxblood);
  border-bottom: 1px solid var(--ed-rule);
  padding: .75rem 0; margin-bottom: 2rem;
  display: flex; justify-content: space-between;
}
.ed-hero-h1 {
  font-family: var(--ed-serif) !important;
  font-size: clamp(3rem, 7vw, 6.5rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.035em;
  color: var(--ed-black);
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.ed-hero-h1 em {
  font-family: var(--ed-serif-italic);
  font-style: italic;
  color: var(--ed-oxblood);
  font-weight: 500;
}
.ed-hero-deck {
  font-family: var(--ed-serif-italic);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ed-black-soft);
  font-style: italic;
  max-width: 560px;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
  margin-bottom: 2rem;
}
.ed-byline {
  font-family: var(--ed-sans);
  font-size: .78rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ed-muted);
  margin-bottom: 2rem;
}
.ed-byline strong { color: var(--ed-oxblood); font-weight: 700; }

.ed-hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--ed-black);
  color: var(--ed-cream);
  padding: 1.25rem 2.25rem;
  font-family: var(--ed-sans);
  font-size: .82rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer;
  transition: all .3s ease;
  position: relative;
}
.ed-hero-cta::after {
  content:'→'; font-size: 1.1rem; transition: transform .3s;
}
.ed-hero-cta:hover { background: var(--ed-oxblood); }
.ed-hero-cta:hover::after { transform: translateX(6px); }

.ed-hero-cta.ghost {
  background: transparent; color: var(--ed-black);
  border: 1.5px solid var(--ed-black);
}
.ed-hero-cta.ghost:hover {
  background: var(--ed-black); color: var(--ed-cream);
}

.ed-hero-image {
  height: 640px;
  background: var(--ed-black);
  position: relative;
  overflow: hidden;
}
.ed-hero-image .img-placeholder { height: 100%; }
.ed-hero-image::after {
  content: 'VOL. I — ISSUE 01';
  position: absolute; top: 2rem; right: 2rem;
  color: var(--ed-cream);
  font-family: var(--ed-sans);
  font-size: .7rem; letter-spacing: 3px;
  background: rgba(10,10,10,0.65);
  padding: .5rem 1rem;
  z-index: 2;
  border-left: 2px solid var(--ed-red);
}
.ed-hero-caption {
  font-family: var(--ed-serif-italic);
  font-size: .95rem;
  font-style: italic;
  color: var(--ed-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--ed-rule);
  margin-top: 1rem;
}

/* ========== TICKER STRIP ========== */
.ed-ticker {
  background: var(--ed-black);
  color: var(--ed-cream);
  padding: 1.25rem 0;
  border-top: 1px solid var(--ed-oxblood);
  border-bottom: 1px solid var(--ed-oxblood);
  overflow: hidden;
}
.ed-ticker-inner {
  display: flex; gap: 4rem;
  font-family: var(--ed-sans);
  font-size: .78rem; letter-spacing: 3px;
  text-transform: uppercase;
  animation: ed-ticker-scroll 45s linear infinite;
  white-space: nowrap;
}
.ed-ticker-inner span { display: inline-flex; align-items: center; gap: .75rem; }
.ed-ticker-inner span::before { content:'◆'; color: var(--ed-red); font-size: .7rem; }
@keyframes ed-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== EDITORIAL SECTION — MAGAZINE COLUMNS ========== */
.ed-section {
  padding: 6rem 0;
  background: var(--ed-cream);
}
.ed-section.dark { background: var(--ed-black); color: var(--ed-cream); }
.ed-section.dark h2, .ed-section.dark h3 { color: var(--ed-cream); }
.ed-section.paper { background: var(--ed-paper); }

.ed-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.ed-rubric {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--ed-sans);
  font-size: .72rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700;
  color: var(--ed-oxblood);
  margin-bottom: 1.5rem;
}
.ed-rubric::after { content:''; flex:1; height: 1px; background: var(--ed-oxblood); }
.ed-section.dark .ed-rubric { color: var(--ed-red); }
.ed-section.dark .ed-rubric::after { background: var(--ed-red); }

.ed-h2 {
  font-family: var(--ed-serif) !important;
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.ed-h2 em {
  font-family: var(--ed-serif-italic);
  font-style: italic;
  color: var(--ed-oxblood);
}
.ed-section.dark .ed-h2 em { color: var(--ed-red); }

.ed-dek {
  font-family: var(--ed-serif-italic);
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ed-muted);
  max-width: 760px;
  margin-bottom: 4rem;
}

/* Drop cap feature paragraph */
.ed-dropcap {
  font-family: var(--ed-sans);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ed-black);
  column-count: 2;
  column-gap: 3rem;
}
.ed-dropcap::first-letter {
  font-family: var(--ed-serif);
  font-size: 5.5rem;
  float: left;
  line-height: 0.85;
  padding: .3rem .75rem 0 0;
  color: var(--ed-oxblood);
  font-weight: 700;
}
@media (max-width: 880px) { .ed-dropcap { column-count: 1; } }

/* Two-column editorial grid (text + image) */
.ed-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ed-spread.flip > *:first-child { order: 2; }
.ed-spread-image {
  height: 600px;
  background: var(--ed-black);
  position: relative;
}
.ed-spread-image .img-placeholder { height: 100%; }

/* Asymmetric 3-col magazine grid for features */
.ed-feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.ed-feature {
  border-top: 2px solid var(--ed-black);
  padding-top: 1.5rem;
}
.ed-feature-num {
  font-family: var(--ed-mono);
  font-size: .75rem;
  color: var(--ed-oxblood);
  font-weight: 600;
  margin-bottom: .5rem;
}
.ed-feature h3 {
  font-family: var(--ed-serif) !important;
  font-size: 1.6rem !important;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.ed-feature p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ed-muted);
}
.ed-feature-image {
  height: 180px; background: var(--ed-black);
  margin-bottom: 1rem;
}
.ed-feature-image .img-placeholder { height: 100%; }

/* Pull quote */
.ed-pullquote {
  font-family: var(--ed-serif-italic);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ed-black);
  border-left: 4px solid var(--ed-oxblood);
  padding-left: 2rem;
  margin: 3rem 0;
  max-width: 820px;
}
.ed-pullquote cite {
  display: block;
  font-family: var(--ed-sans);
  font-size: .8rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  margin-top: 1rem;
}

/* Price Index (cover style stats) */
.ed-price-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ed-black);
  border-bottom: 2px solid var(--ed-black);
  margin: 4rem 0;
}
.ed-price-index > div {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--ed-rule);
  text-align: center;
}
.ed-price-index > div:last-child { border-right: none; }
.ed-price-index .val {
  font-family: var(--ed-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ed-oxblood);
  line-height: 1;
}
.ed-price-index .lab {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ed-muted);
  margin-top: .5rem;
}

/* Gallery mosaic */
.ed-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: .75rem;
  margin-top: 3rem;
}
.ed-mosaic > div { position: relative; overflow: hidden; background: var(--ed-black); }
.ed-mosaic > div:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
.ed-mosaic > div:nth-child(2) { grid-column: 4 / 6; grid-row: 1 / 2; }
.ed-mosaic > div:nth-child(3) { grid-column: 6 / 7; grid-row: 1 / 2; }
.ed-mosaic > div:nth-child(4) { grid-column: 4 / 5; grid-row: 2 / 3; }
.ed-mosaic > div:nth-child(5) { grid-column: 5 / 7; grid-row: 2 / 3; }
.ed-mosaic .img-placeholder { height: 100%; }
.ed-mosaic .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--ed-cream);
  font-family: var(--ed-serif-italic);
  font-style: italic;
  font-size: .9rem;
}

/* Floor plan / config cards */
.ed-config-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  margin-top: 3rem;
}
.ed-config {
  background: var(--ed-paper);
  border: 1px solid var(--ed-rule);
  padding: 2.25rem;
  transition: all .35s ease;
  position: relative;
}
.ed-config:hover {
  border-color: var(--ed-oxblood);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122,0,25,0.08);
}
.ed-config .tag {
  display: inline-block;
  font-family: var(--ed-mono);
  font-size: .7rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ed-oxblood);
  background: rgba(122,0,25,0.08);
  padding: .35rem .75rem;
  margin-bottom: 1rem;
}
.ed-config h3 {
  font-family: var(--ed-serif) !important;
  font-size: 2rem !important;
  line-height: 1.1; margin-bottom: .5rem;
}
.ed-config .area {
  font-family: var(--ed-sans);
  color: var(--ed-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ed-rule);
}
.ed-config .price {
  font-family: var(--ed-serif);
  font-size: 2.2rem;
  color: var(--ed-oxblood);
  font-weight: 700;
  margin-bottom: 1rem;
}
.ed-config ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.ed-config ul li {
  padding: .6rem 0;
  font-size: .88rem;
  color: var(--ed-black);
  border-bottom: 1px dotted var(--ed-rule);
  display: flex; justify-content: space-between;
}

/* Editorial form */
.ed-form {
  background: var(--ed-paper);
  border: 1px solid var(--ed-rule);
  padding: 2.5rem;
}
.ed-form label {
  display: block;
  font-family: var(--ed-sans);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ed-muted);
  margin-bottom: .5rem;
}
.ed-form input, .ed-form select, .ed-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ed-black);
  padding: .75rem 0;
  font-family: var(--ed-sans);
  font-size: 1rem;
  color: var(--ed-black);
  margin-bottom: 1.5rem;
  outline: none;
  transition: border-color .3s;
}
.ed-form input:focus, .ed-form select:focus {
  border-color: var(--ed-oxblood);
}
.ed-form button {
  width: 100%;
  background: var(--ed-black);
  color: var(--ed-cream);
  border: none;
  padding: 1.25rem;
  font-family: var(--ed-sans);
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}
.ed-form button:hover { background: var(--ed-oxblood); }

/* Editorial footer */
.ed-footer {
  background: var(--ed-black);
  color: var(--ed-cream);
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--ed-oxblood);
}
.ed-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.ed-footer h4 {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ed-red);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.ed-footer ul { list-style: none; padding: 0; }
.ed-footer ul li { margin-bottom: .65rem; }
.ed-footer ul a {
  font-family: var(--ed-sans);
  font-size: .88rem;
  color: rgba(250,247,242,0.7);
  transition: color .2s;
}
.ed-footer ul a:hover { color: var(--ed-red); }
.ed-footer-brand {
  font-family: var(--ed-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--ed-cream);
}
.ed-footer-tagline {
  font-family: var(--ed-serif-italic);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,247,242,0.6);
  line-height: 1.6;
}
.ed-footer-bottom {
  max-width: 1400px; margin: 3rem auto 0; padding: 2rem 2rem 0;
  border-top: 1px solid rgba(250,247,242,0.15);
  display: flex; justify-content: space-between;
  font-family: var(--ed-sans);
  font-size: .78rem;
  color: rgba(250,247,242,0.5);
  letter-spacing: 1px;
}

/* Hide legacy elements for this theme */
body.theme-editorial .nav { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ed-nav-inner { grid-template-columns: auto 1fr auto; }
  .ed-nav-left, .ed-nav-right { display: none; }
  .ed-nav-toggle { display: block; }
  .ed-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ed-hero-image { height: 380px; }
  .ed-spread, .ed-spread.flip > *:first-child { grid-template-columns: 1fr; order: unset; }
  .ed-spread-image { height: 320px; }
  .ed-feature-grid { grid-template-columns: 1fr; }
  .ed-config-grid { grid-template-columns: 1fr; }
  .ed-price-index { grid-template-columns: repeat(2,1fr); }
  .ed-mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .ed-mosaic > div { grid-column: auto !important; grid-row: auto !important; height: 220px; }
  .ed-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ed-section { padding: 3.5rem 0; }
  .ed-container { padding: 0 1.25rem; }
  .ed-hero { padding: 7rem 0 3rem; }
  .ed-price-index { grid-template-columns: 1fr 1fr; }
  .ed-footer-grid { grid-template-columns: 1fr; }
  .ed-footer-bottom { flex-direction: column; gap: .5rem; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.theme-editorial .ed-about-issue {
  background: var(--ed-cream);
  padding: 9rem 2rem 5rem;
  border-bottom: 1px solid var(--ed-rule);
}
.theme-editorial .ed-about-issue-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.theme-editorial .ed-about-issue span {
  display: inline-block;
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ed-oxblood);
  margin-bottom: 2.5rem;
}
.theme-editorial .ed-about-title {
  font-family: var(--ed-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ed-obsidian);
  font-weight: 700;
  margin: 0 0 2rem;
  letter-spacing: -.02em;
}
.theme-editorial .ed-about-dek {
  font-family: var(--ed-italic);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.theme-editorial .ed-about-byline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--ed-rule);
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--ed-sans);
  font-size: .78rem;
  text-align: left;
}
.theme-editorial .ed-about-byline div strong {
  display: block;
  font-weight: 400;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .65rem;
  margin-bottom: .25rem;
}
.theme-editorial .ed-about-article {
  padding: 5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.theme-editorial .ed-about-article-alt {
  background: #f5f1ea;
  max-width: none;
  padding: 5rem 2rem;
}
.theme-editorial .ed-about-article-alt > * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.theme-editorial .ed-about-chapter {
  font-family: var(--ed-sans);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  margin-bottom: 1.5rem;
}
.theme-editorial .ed-about-h2 {
  font-family: var(--ed-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ed-obsidian);
  font-weight: 700;
  margin: 0 0 2rem;
  letter-spacing: -.01em;
}
.theme-editorial .ed-about-h3 {
  font-family: var(--ed-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ed-obsidian);
  margin: 2.5rem 0 1rem;
}
.theme-editorial .ed-about-lede {
  font-family: var(--ed-serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ed-obsidian);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.theme-editorial .ed-about-article p {
  font-family: var(--ed-serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: #222;
  margin-bottom: 1.25rem;
}
.theme-editorial .ed-about-quote {
  border-left: 3px solid var(--ed-oxblood);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-family: var(--ed-italic);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ed-obsidian);
}
.theme-editorial .ed-about-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--ed-sans);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}
.theme-editorial .ed-about-figure {
  margin: 3rem 0;
}
.theme-editorial .ed-about-figure .img-placeholder {
  aspect-ratio: 16/9;
  background: #ddd;
}
.theme-editorial .ed-about-figure figcaption {
  font-family: var(--ed-sans);
  font-size: .85rem;
  color: #666;
  margin-top: .75rem;
  line-height: 1.5;
  font-style: italic;
}
.theme-editorial .ed-about-signoff,
.theme-editorial .ed-about-sign {
  font-family: var(--ed-italic);
  font-style: italic;
  color: var(--ed-oxblood);
  margin-top: 2.5rem;
  font-size: 1.1rem;
}
.theme-editorial .ed-about-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.theme-editorial .ed-about-rel {
  display: block;
  padding: 1.5rem;
  background: var(--ed-cream);
  border: 1px solid var(--ed-rule);
  text-decoration: none;
  color: var(--ed-obsidian);
  transition: all .3s ease;
}
.theme-editorial .ed-about-rel:hover {
  background: var(--ed-obsidian);
  color: var(--ed-cream);
}
.theme-editorial .ed-about-rel-no {
  font-family: var(--ed-sans);
  font-size: 1.2rem;
  color: var(--ed-oxblood);
  margin-bottom: .5rem;
}
.theme-editorial .ed-about-rel strong {
  display: block;
  font-family: var(--ed-serif);
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.theme-editorial .ed-about-rel em {
  font-family: var(--ed-italic);
  font-style: italic;
  font-size: .9rem;
  color: #888;
}
.theme-editorial .ed-about-rel:hover em { color: #ccc; }

/* ============================================================
   JOURNAL / BLOG INDEX PAGE
   ============================================================ */
.theme-editorial .ed-journal-head {
  background: var(--ed-obsidian);
  color: var(--ed-cream);
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.theme-editorial .ed-journal-eyebrow {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  margin-bottom: 2rem;
}
.theme-editorial .ed-journal-h1 {
  font-family: var(--ed-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ed-cream);
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.theme-editorial .ed-journal-h1 em {
  font-family: var(--ed-italic);
  font-style: italic;
  color: var(--ed-oxblood);
}
.theme-editorial .ed-journal-dek {
  font-family: var(--ed-serif);
  font-size: 1.2rem;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.theme-editorial .ed-journal-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-family: var(--ed-sans);
  font-size: .78rem;
  text-align: left;
}
.theme-editorial .ed-journal-meta em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #666;
  font-size: .65rem;
  margin-bottom: .25rem;
}
.theme-editorial .ed-journal-meta strong { color: var(--ed-cream); font-weight: 400; }
.theme-editorial .ed-journal-featured {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.theme-editorial .ed-feature-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.theme-editorial .ed-feature-media .img-placeholder {
  aspect-ratio: 4/5;
  background: #ddd;
}
.theme-editorial .ed-feature-h2 {
  font-family: var(--ed-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ed-obsidian);
  margin: 1rem 0 1.5rem;
}
.theme-editorial .ed-feature-h2 a { color: inherit; text-decoration: none; }
.theme-editorial .ed-feature-h2 a:hover { color: var(--ed-oxblood); }
.theme-editorial .ed-feature-dek {
  font-family: var(--ed-serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 2rem;
}
.theme-editorial .ed-feature-byline {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
  margin-bottom: 1.5rem;
  font-family: var(--ed-sans);
  font-size: .8rem;
}
.theme-editorial .ed-feature-byline em {
  font-style: normal;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: .5rem;
  font-size: .7rem;
}
.theme-editorial .ed-journal-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.theme-editorial .ed-j-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--ed-rule);
  align-items: start;
}
.theme-editorial .ed-j-item:last-child { border-bottom: 1px solid var(--ed-rule); }
.theme-editorial .ed-j-num {
  font-family: var(--ed-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ed-oxblood);
  font-style: italic;
  line-height: 1;
}
.theme-editorial .ed-j-meta {
  font-family: var(--ed-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .75rem;
}
.theme-editorial .ed-j-body h3 {
  font-family: var(--ed-serif);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 .75rem;
}
.theme-editorial .ed-j-body h3 a { color: var(--ed-obsidian); text-decoration: none; border-bottom: 1px solid transparent; }
.theme-editorial .ed-j-body h3 a:hover { border-bottom-color: var(--ed-oxblood); color: var(--ed-oxblood); }
.theme-editorial .ed-j-body p {
  font-family: var(--ed-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.theme-editorial .ed-journal-sub {
  background: var(--ed-cream);
  padding: 5rem 2rem;
  border-top: 1px solid var(--ed-rule);
  margin-top: 4rem;
}
.theme-editorial .ed-journal-sub-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.theme-editorial .ed-form-sub {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.theme-editorial .ed-form-sub input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--ed-obsidian);
  background: transparent;
  font-family: var(--ed-sans);
  font-size: 1rem;
}
.theme-editorial .ed-form-sub button {
  background: var(--ed-obsidian);
  color: var(--ed-cream);
  padding: 1rem 2rem;
  border: none;
  font-family: var(--ed-sans);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  cursor: pointer;
}
.theme-editorial .ed-form-sub button:hover {
  background: var(--ed-oxblood);
}

@media (max-width: 800px) {
  .theme-editorial .ed-feature-article { grid-template-columns: 1fr; }
  .theme-editorial .ed-about-byline,
  .theme-editorial .ed-journal-meta { grid-template-columns: repeat(2, 1fr); }
  .theme-editorial .ed-j-item { grid-template-columns: 1fr; gap: .75rem; }
  .theme-editorial .ed-form-sub { flex-direction: column; }
}

/* ===================================================================
   SHARED ABOUT / BLOG components — editorial theme
   =================================================================== */

/* Nav — brand mark + text (about/blog use a slightly different structure) */
.theme-editorial .ed-brand-mark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ed-oxblood);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ed-oxblood);
}
.theme-editorial .ed-brand-text {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ed-black);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.theme-editorial .ed-brand-text small {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--ed-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.theme-editorial .ed-nav-col {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Eyebrow label */
.theme-editorial .ed-eyebrow {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  margin-bottom: .75rem;
}

/* Section head + h2 + lead */
.theme-editorial .ed-section-head {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.theme-editorial .ed-section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ed-black);
  margin: .5rem 0;
  line-height: 1.15;
}
.theme-editorial .ed-section-lead {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ed-muted);
  max-width: 720px;
  margin: .5rem auto 0;
}

/* Feature article body (blog cover essay) */
.theme-editorial .ed-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.theme-editorial .ed-chapter {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ed-oxblood);
}

/* CTA link button */
.theme-editorial .ed-cta {
  display: inline-block;
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ed-oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--ed-oxblood);
  padding-bottom: 2px;
  transition: color .2s;
}
.theme-editorial .ed-cta:hover {
  color: var(--ed-red);
  border-color: var(--ed-red);
}

/* Footer (about/blog) */
.theme-editorial .ed-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ed-rule);
}
.theme-editorial .ed-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-editorial .ed-footer-brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ed-black);
}
.theme-editorial .ed-footer-brand small {
  display: block;
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .7rem;
  color: var(--ed-muted);
  letter-spacing: .04em;
}
.theme-editorial .ed-footer-nav {
  display: flex;
  gap: 2rem;
}
.theme-editorial .ed-footer-nav a {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ed-muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.theme-editorial .ed-footer-nav a:hover {
  color: var(--ed-oxblood);
}
.theme-editorial .ed-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  text-align: center;
}
.theme-editorial .ed-footer-bottom small {
  font-family: var(--ed-sans, 'Inter', sans-serif);
  font-size: .72rem;
  color: var(--ed-muted);
  letter-spacing: .04em;
}

@media (max-width: 800px) {
  .theme-editorial .ed-footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .theme-editorial .ed-footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .theme-editorial .ed-nav-col { display: none; }
}

/* ============================================================
   LANDING PAGE — NEW SECTIONS
   ============================================================ */

/* ========== HERO COVER (full-screen background image) ========== */
.ed-hero-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
}
.ed-hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.25) 70%,
    rgba(10,10,10,0.10) 100%
  );
  z-index: 1;
}
.ed-hero-cover-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}
.ed-hero-cover .ed-hero-kicker {
  border-top: 2px solid var(--ed-red);
  border-bottom: 1px solid rgba(250,247,242,0.2);
  color: var(--ed-cream);
}
.ed-hero-cover .ed-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,247,242,0.2);
}
.ed-hero-cover .ed-hero-stats .val {
  font-family: var(--ed-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ed-cream);
  line-height: 1;
  display: block;
}
.ed-hero-cover .ed-hero-stats .lab {
  font-family: var(--ed-sans);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  margin-top: .35rem;
  display: block;
}

@media (max-width: 768px) {
  .ed-hero-cover { min-height: 90vh; }
  .ed-hero-cover-content { padding: 0 1.25rem 3rem; }
  .ed-hero-cover .ed-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .ed-hero-cover .ed-hero-stats .val { font-size: 1.6rem; }
}

/* ========== APARTMENTS GRID ========== */
.ed-apartments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ed-apartment-card {
  background: var(--ed-cream);
  border: 1px solid var(--ed-rule);
  transition: all .35s ease;
  overflow: hidden;
}
.ed-apartment-card:hover {
  border-color: var(--ed-oxblood);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122,0,25,0.08);
}
.ed-apartment-image {
  height: 260px;
  background: var(--ed-black);
  overflow: hidden;
}
.ed-apartment-body {
  padding: 2rem;
}
.ed-apartment-body .tag {
  display: inline-block;
  font-family: var(--ed-mono);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  background: rgba(122,0,25,0.08);
  padding: .35rem .75rem;
  margin-bottom: .75rem;
}
.ed-apartment-body h3 {
  font-family: var(--ed-serif) !important;
  font-size: 1.8rem !important;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.ed-apartment-meta {
  font-family: var(--ed-sans);
  font-size: .88rem;
  color: var(--ed-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ed-rule);
}
.ed-apartment-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.ed-apartment-body ul li {
  padding: .45rem 0;
  font-family: var(--ed-sans);
  font-size: .88rem;
  color: var(--ed-black);
  border-bottom: 1px dotted var(--ed-rule);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ed-apartment-body ul li::before {
  content: '\2713';
  color: var(--ed-oxblood);
  font-weight: 700;
  font-size: .75rem;
}
.ed-apartment-price {
  font-family: var(--ed-serif);
  font-size: 1.6rem;
  color: var(--ed-oxblood);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
  .ed-apartments-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ========== AMENITY ZONES ========== */
.ed-amenity-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250,247,242,0.15);
}
.ed-amenity-zone h4 {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ed-red);
  margin-bottom: .75rem;
  font-weight: 600;
}
.ed-amenity-zone p {
  font-family: var(--ed-sans);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.65);
}

@media (max-width: 768px) {
  .ed-amenity-zones { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ed-amenity-zones { grid-template-columns: 1fr; }
}

/* ========== AQI SECTION ========== */
.ed-aqi-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.ed-aqi-block h3 {
  font-family: var(--ed-serif) !important;
  font-size: 1.5rem !important;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ed-black);
}
.ed-aqi-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ed-aqi-block ul li {
  padding: .6rem 0;
  font-family: var(--ed-sans);
  font-size: .95rem;
  color: var(--ed-muted);
  border-bottom: 1px dotted var(--ed-rule);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.ed-aqi-block ul li::before {
  content: '\25C6';
  color: var(--ed-oxblood);
  font-size: .55rem;
  flex-shrink: 0;
}

/* ========== TRUST & GOVERNANCE ========== */
.ed-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ed-trust-card {
  background: var(--ed-cream);
  border: 1px solid var(--ed-rule);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .35s ease;
}
.ed-trust-card:hover {
  border-color: var(--ed-oxblood);
  box-shadow: 0 12px 32px rgba(122,0,25,0.06);
}
.ed-trust-icon {
  margin-bottom: 1.5rem;
}
.ed-trust-card h3 {
  font-family: var(--ed-serif) !important;
  font-size: 1.4rem !important;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.ed-trust-card p {
  font-family: var(--ed-sans);
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ed-muted);
}
.ed-trust-image {
  margin-top: 3rem;
  background: var(--ed-black);
  overflow: hidden;
  max-height: 420px;
}

@media (max-width: 768px) {
  .ed-trust-grid { grid-template-columns: 1fr; }
}

/* ========== MASTER PLAN ========== */
.ed-masterplan-wrap {
  margin-top: 3rem;
  border: 1px solid var(--ed-rule);
  background: var(--ed-paper);
  padding: 1rem;
  overflow: hidden;
}
.ed-masterplan-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--ed-black);
}
.ed-masterplan-features h4 {
  font-family: var(--ed-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ed-black);
  margin-bottom: .5rem;
}
.ed-masterplan-features p {
  font-family: var(--ed-sans);
  font-size: .88rem;
  line-height: 1.65;
  color: var(--ed-muted);
}

@media (max-width: 768px) {
  .ed-masterplan-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ed-masterplan-features { grid-template-columns: 1fr; }
}

/* ========== CONNECTIVITY ========== */
.ed-connectivity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.ed-connectivity-map {
  background: var(--ed-black-soft);
  border: 1px solid rgba(250,247,242,0.1);
  overflow: hidden;
  min-height: 400px;
}
.ed-connectivity-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ed-sans);
  font-size: .9rem;
}
.ed-connectivity-table thead th {
  text-align: left;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ed-red);
  padding: .75rem 0;
  border-bottom: 2px solid var(--ed-red);
  font-weight: 600;
}
.ed-connectivity-table tbody td {
  padding: .65rem 0;
  border-bottom: 1px solid rgba(250,247,242,0.1);
  color: rgba(250,247,242,0.8);
}
.ed-connectivity-table tbody td:last-child {
  text-align: right;
  font-family: var(--ed-mono);
  font-size: .82rem;
  color: var(--ed-cream);
  font-weight: 500;
}
.ed-connectivity-nearby {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,247,242,0.1);
}
.ed-connectivity-nearby h4 {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ed-red);
  margin-bottom: 1rem;
  font-weight: 600;
}
.ed-connectivity-nearby p {
  font-family: var(--ed-sans);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.6);
  margin-bottom: .5rem;
}
.ed-connectivity-nearby p strong {
  color: var(--ed-cream);
  font-weight: 600;
}

@media (max-width: 768px) {
  .ed-connectivity-layout { grid-template-columns: 1fr; }
  .ed-connectivity-map { min-height: 280px; }
}

/* ========== MEDIA COVERAGE ========== */
.ed-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ed-media-card {
  background: var(--ed-paper);
  border: 1px solid var(--ed-rule);
  overflow: hidden;
  transition: all .35s ease;
}
.ed-media-card:hover {
  border-color: var(--ed-oxblood);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(122,0,25,0.08);
}
.ed-media-image {
  height: 220px;
  background: var(--ed-black);
  overflow: hidden;
}
.ed-media-body {
  padding: 1.5rem;
}
.ed-media-source {
  font-family: var(--ed-sans);
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  font-weight: 700;
  margin-bottom: .5rem;
}
.ed-media-body h3 {
  font-family: var(--ed-serif) !important;
  font-size: 1.2rem !important;
  line-height: 1.3;
  margin-bottom: .5rem;
  color: var(--ed-black);
}
.ed-media-date {
  font-family: var(--ed-sans);
  font-size: .78rem;
  color: var(--ed-muted);
}

@media (max-width: 768px) {
  .ed-media-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ========== CTA BAR ========== */
.ed-cta-bar {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ed-rule);
}
.ed-section.dark .ed-cta-bar {
  border-top-color: rgba(250,247,242,0.1);
}

/* ========== ASSURANCE BOX ========== */
.ed-assurance-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--ed-rule);
  background: var(--ed-cream);
}
.ed-assurance-box h4 {
  font-family: var(--ed-sans);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ed-oxblood);
  font-weight: 700;
  margin-bottom: 1rem;
}
.ed-assurance-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
}
.ed-assurance-box ul li {
  font-family: var(--ed-sans);
  font-size: .82rem;
  color: var(--ed-muted);
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ed-assurance-box ul li::before {
  content: '\2713';
  color: var(--ed-oxblood);
  font-weight: 700;
  font-size: .7rem;
}
