/* JDC Ad — shared styles for all three variations.
   Each ad renders inside .ad-frame at 1080x1080. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy:      #091b37;
  --navy-2:    #122a4f;
  --slate:     #465462;
  --slate-2:   #5d6c7a;
  --gold:      #f2b900;
  --gold-2:    #d9a500;
  --gold-3:    #fff1bf;
  --paper:     #fafaf7;
  --paper-2:   #f1efe8;
  --ink:       #0a0f1a;
  --line:      rgba(9, 27, 55, 0.12);
  --sans: "Inter", system-ui, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0a0f1a; font-family: var(--sans); color: var(--paper); }

/* ============================================================
   PHOTO FRAMES — wrappers around real images
   ============================================================ */
.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f1efe8;
}
.photo-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  transition: opacity 0.05s linear, transform 0.08s linear, filter 0.05s linear;
  will-change: transform, opacity;
}
/* The combined floor-plan webp is 1333x2000; 2D plan is roughly the top half (y 0-50%),
   3D version is the bottom half (y 50-100%). Use background-position + a tall background-size
   so we crop to the right half. */
.photo-img.plan-2d {
  background-size: 100% 200%;
  background-position: center top;
  background-color: #fafaf7;
}
.photo-img.plan-3d {
  background-size: 100% 200%;
  background-position: center bottom;
  background-color: #fafaf7;
}
.photo-img.cutaway {
  background-size: cover;
  background-position: center;
  background-color: #f1efe8;
}
.photo-img.finished {
  background-size: cover;
  background-position: center 60%;
}
.photo-blueprint-wash {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9,27,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,27,55,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
.photo-sweep-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, #f2b900 20%, #f2b900 80%, transparent 100%);
  box-shadow: 0 0 18px rgba(242,185,0,0.7);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.1s linear, left 0.05s linear;
}
.photo-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(9,15,26,0.35) 100%);
  pointer-events: none;
  z-index: 2;
}
.reg-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.reg {
  position: absolute;
  width: 24px;
  height: 24px;
}
.reg::before, .reg::after {
  content: "";
  position: absolute;
  background: rgba(9,27,55,0.5);
}
.reg::before { left: 11px; top: 0; bottom: 0; width: 2px; }
.reg::after { top: 11px; left: 0; right: 0; height: 2px; }
.reg.tl { top: 8px; left: 8px; }
.reg.tr { top: 8px; right: 8px; }
.reg.bl { bottom: 8px; left: 8px; }
.reg.br { bottom: 8px; right: 8px; }

/* In step layers (snappy), photos fill differently */
.step-art.photo {
  padding: 0;
}
.step-art.photo .photo-frame {
  border: 1px solid var(--line);
}
.ed-art.photo {
  padding: 0;
  background: #f1efe8;
}

/* ============================================================
   AD FRAME — 1080x1080, fixed
   ============================================================ */
.ad-frame {
  position: relative;
  width: 1080px;
  height: 1080px;
  background: #fafaf7;
  overflow: hidden;
  font-family: var(--sans);
  color: var(--navy);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}

.ad-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.05s linear;
}

.ad-time {
  display: none;
}

/* ============================================================
   PLAYER CONTROLS — sits below the 1080x1080 frame
   ============================================================ */
.ad-shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 1080px;
}

.ad-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #0e1a30;
  border: 1px solid rgba(242, 185, 0, 0.18);
  border-radius: 4px;
  color: #f6efe2;
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
}

.ad-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: #f6efe2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.ad-btn:focus-visible {
  outline: 2px solid #f2b900;
  outline-offset: 2px;
}

.ad-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(246, 239, 226, 0.78);
}
.ad-btn-icon:hover {
  background: rgba(255,255,255,0.06);
  color: #f6efe2;
}
.ad-btn-icon:active { transform: scale(0.94); }

.ad-btn-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f2b900;
  color: #0e1a30;
}
.ad-btn-play:hover { background: #ffce2e; }
.ad-btn-play:active { transform: scale(0.96); }

.ad-track-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.ad-track {
  position: relative;
  height: 6px;
  background: rgba(246, 239, 226, 0.12);
  border-radius: 3px;
  cursor: pointer;
}
.ad-track-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: #f2b900;
  border-radius: 3px;
  transition: width 0.05s linear;
  pointer-events: none;
}
.ad-tick {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: #0e1a30;
  border: 2px solid rgba(246, 239, 226, 0.45);
  padding: 0;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}
.ad-tick:hover {
  transform: scale(1.25);
  border-color: #f2b900;
}
.ad-tick.active {
  background: #f2b900;
  border-color: #f2b900;
}

.ad-track-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 239, 226, 0.55);
}
.ad-scene-label { color: #f2b900; }
.ad-time-label { color: rgba(246, 239, 226, 0.45); }

/* ============================================================
   BLUEPRINT GRID
   ============================================================ */
.bp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9,27,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,27,55,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bp-grid.dark {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* ============================================================
   ARCHITECTURAL VARIATION
   ============================================================ */
.top-chrome {
  position: absolute;
  top: 36px;
  left: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10;
}
.top-icon {
  width: 36px;
  height: 36px;
}
.top-rule {
  flex: 1;
  height: 1px;
  background: rgba(9,27,55,0.25);
}
.top-meta {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

.intro-block {
  text-align: center;
  padding: 0 60px;
}
.intro-eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 36px;
}
.intro-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 156px;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 36px;
}
.intro-title em {
  font-style: italic;
  color: var(--gold-2);
}
.intro-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--slate);
}

.phase-wrap {
  position: absolute;
  inset: 110px 60px 230px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.05s linear;
}
.phase-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}
.phase-art > svg {
  max-width: 100%;
  max-height: 100%;
}

.phase-banner {
  position: absolute;
  bottom: 80px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  background: rgba(9,27,55,0.96);
  color: var(--paper);
  border-left: 4px solid var(--gold);
  z-index: 5;
  transition: opacity 0.05s linear;
}
.pb-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  min-width: 80px;
}
.pb-rule {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
}
.pb-text { flex: 1; }
.pb-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pb-sub {
  font-family: var(--sans);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.005em;
}

/* CTA — architectural */
.cta-layer {
  background: var(--navy);
  color: var(--paper);
}
.cta-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 110px 80px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 168px;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 50px 0;
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-rule {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 32px;
}
.cta-body {
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 32ch;
  margin-bottom: 48px;
}
.cta-button {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  padding: 22px 36px;
  border-radius: 2px;
}
.cta-button svg { stroke-width: 2; }
.cta-foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.prog-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(9,27,55,0.1);
  z-index: 30;
}
.prog-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.05s linear;
}

/* ============================================================
   SNAPPY VARIATION
   ============================================================ */
.hook-layer {
  background: var(--gold);
  color: var(--navy);
}
.hook-card {
  text-align: center;
  padding: 0 80px;
  transform-origin: center;
}
.hook-eyebrow {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 48px;
}
.hook-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 168px;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
}
.hook-title .g {
  font-style: italic;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--paper);
  text-decoration-thickness: 6px;
  text-underline-offset: 12px;
}
.hook-meta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.step-layer {
  position: absolute;
  inset: 0;
  background: var(--paper);
  color: var(--navy);
  display: grid;
  grid-template-rows: 200px 1fr 240px;
  transition: opacity 0.05s linear, transform 0.05s linear;
}
.step-numblock {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding: 60px 64px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--paper);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 132px;
  line-height: 0.9;
  color: var(--gold);
}
.step-name {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
}
.step-art {
  position: relative;
  padding: 20px 64px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-art > svg {
  width: 100%;
  height: 100%;
  max-height: 600px;
}
.step-caption {
  padding: 36px 64px;
  background: var(--navy);
  color: var(--paper);
  font-size: 22px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--gold);
}
.step-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--paper);
}

/* PROOF */
.proof-layer {
  background: var(--navy);
  color: var(--paper);
}
.proof-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  padding: 0;
}
.proof-cell {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  position: relative;
}
.proof-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 200px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 24px;
}
.proof-num small {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: 0;
  color: var(--paper);
}
.proof-lab {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  max-width: 22ch;
  line-height: 1.5;
}

/* CTA snappy */
.cta-layer.snappy {
  background: var(--gold);
}
.cta-snappy {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  color: var(--navy);
}
.cta-snappy-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.cta-icon {
  width: 44px;
  height: 44px;
}
.cta-snappy-eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-left: 2px solid var(--navy);
  padding-left: 16px;
}
.cta-snappy-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 220px;
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.cta-snappy-sub {
  font-size: 28px;
  line-height: 1.4;
  max-width: 22ch;
  margin-bottom: 48px;
  font-weight: 400;
  color: var(--navy);
}
.cta-snappy-button {
  align-self: flex-start;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 32px;
  padding: 28px 44px;
  letter-spacing: 0.005em;
  border-radius: 2px;
}
.cta-snappy-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 2px solid var(--navy);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   EDITORIAL VARIATION
   ============================================================ */
.ed-cover {
  background: var(--paper);
}
.ed-cover-frame {
  width: 100%;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.ed-cover-frame::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.ed-folio {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  gap: 24px;
}
.ed-folio-verse {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-align: right;
  line-height: 1.4;
}
.ed-cover-logo {
  height: 40px;
  width: auto;
  display: block;
  max-width: 240px;
  object-fit: contain;
}
.ed-cover-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  position: relative;
  margin-bottom: 32px;
}
.ed-cover-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 180px;
  line-height: 0.86;
  letter-spacing: -0.015em;
  color: var(--navy);
  position: relative;
  margin-bottom: 32px;
}
.ed-cover-title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.ed-cover-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  position: relative;
}
.ed-cover-foot-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}

.ed-spread {
  background: var(--paper);
  padding: 80px 60px;
}
.ed-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.ed-grid.reverse {
  grid-template-columns: 1.15fr 1fr;
}
.ed-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.ed-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 84px;
  line-height: 1;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.ed-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 24px;
}
.ed-rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.ed-p {
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 32px;
  max-width: 30ch;
  font-weight: 400;
}
.ed-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.ed-art {
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: center;
  position: relative;
}
.ed-art > svg {
  width: 100%;
  height: 100%;
}
/* Editorial spreads: contain the plan image without distortion. */
.ed-art.photo .photo-img.plan-2d,
.ed-art.photo .photo-img.plan-3d {
  background-size: cover;
  background-position: center top;
}
.ed-art.photo .photo-img.plan-3d {
  background-position: center bottom;
}
.ed-art.photo .photo-img.cutaway {
  background-size: cover;
  background-position: center;
}

/* CLOSE */
.ed-close {
  background: var(--navy);
  color: var(--paper);
}
.ed-close-frame {
  width: 100%;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.ed-close-frame::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255,255,255,0.15);
}
.ed-close-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-top: 20px;
}
.ed-close-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 12ch;
}
.ed-close-title em {
  font-style: italic;
  color: var(--gold);
}
.ed-close-button {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  padding: 24px 40px;
  letter-spacing: 0.005em;
  border-radius: 2px;
  white-space: nowrap;
}
.ed-close-rule {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 48px 0;
}
.ed-close-foot {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.ed-close-verse-block {
  flex: 1;
  max-width: 32ch;
}
.ed-verse {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin-bottom: 14px;
}
.ed-verse::before {
  content: "“";
  font-style: italic;
  color: var(--gold);
  margin-right: 4px;
}
.ed-verse-ref {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.ed-close-logo {
  height: 140px;
  width: auto;
  opacity: 1;
  flex-shrink: 0;
}
