/* Easy Day Flagship section. Scoped: everything lives under .ed-flagship.
 * Palette: ground #0B0B0A, panel #111110, bone #F2EFE6, gold #D4AF37,
 * rule #8C7326. Type: Satoshi (display/body) + JetBrains Mono (label voice).
 * All corners sharp. Dark only. Breakpoint: 768px. */

.ed-flagship {
  --ed-ground: #0b0b0a;
  --ed-panel: #111110;
  --ed-bone: #f2efe6;
  --ed-gold: #d4af37;
  --ed-rule: #8c7326;
  --ed-sans: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ed-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ed-gutter: 24px;
  background: var(--ed-ground);
  color: var(--ed-bone);
  font-family: var(--ed-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow: clip;
}
.ed-flagship *,
.ed-flagship *::before,
.ed-flagship *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.ed-flagship img,
.ed-flagship video {
  display: block;
  max-width: 100%;
}
.ed-flagship a {
  color: inherit;
  text-decoration: none;
}
.ed-flagship s {
  text-decoration: line-through;
}
.ed-flagship ::selection {
  background: var(--ed-gold);
  color: var(--ed-ground);
}
@media (min-width: 768px) {
  .ed-flagship {
    --ed-gutter: 40px;
  }
}

/* Shared voices */
.ed-eyebrow {
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-eyebrow {
    font-size: 12px;
  }
}
.ed-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ============================== S1 HERO ============================== */
.ed-hero {
  position: relative;
  height: 220vh;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .ed-hero {
    height: 380vh;
  }
}
.ed-hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.ed-hero__media,
.ed-hero__video,
.ed-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ed-hero__video {
  object-fit: cover;
  visibility: hidden;
  transform: translateZ(0);
}
.ed-hero__video.ed-active {
  visibility: visible;
}
.ed-hero__poster {
  object-fit: cover;
  z-index: 3;
  pointer-events: none;
}
.ed-hero__poster.ed-hidden {
  visibility: hidden;
}
.ed-hero__scrim-b,
.ed-hero__scrim-t {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 4;
}
.ed-hero__scrim-b {
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(11, 11, 10, 0.85), rgba(11, 11, 10, 0.3) 55%, transparent);
}
.ed-hero__scrim-t {
  top: 0;
  height: 144px;
  background: linear-gradient(to bottom, rgba(11, 11, 10, 0.7), transparent);
}

/* Mission clock + chapter readout */
.ed-hero__clockbox {
  position: absolute;
  left: var(--ed-gutter);
  top: 96px;
  z-index: 5;
}
.ed-hero__clock {
  height: 1.5em;
  overflow: hidden;
  font-family: var(--ed-mono);
  font-size: 16px;
  letter-spacing: 0.5em;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-hero__clock {
    font-size: 18px;
  }
}
.ed-hero__clockcol {
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.2, 1);
}
.ed-hero__clockcol > div {
  height: 1.5em;
  line-height: 1.5em;
}
.ed-hero__chapters {
  position: relative;
  margin-top: 12px;
  height: 56px;
  width: 288px;
  overflow: hidden;
}
.ed-chapter {
  position: absolute;
  inset: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ed-chapter[data-state="below"] {
  transform: translateY(170%);
}
.ed-chapter[data-state="active"] {
  transform: translateY(0);
}
.ed-chapter[data-state="above"] {
  transform: translateY(-170%);
}
.ed-chapter__label,
.ed-hero__static-label {
  font-family: var(--ed-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.85);
}
.ed-chapter__line,
.ed-hero__static-line {
  margin-top: 6px;
  font-family: var(--ed-mono);
  font-size: 12px;
  color: rgba(242, 239, 230, 0.55);
}

/* Static chapter list (reduced motion / video-error fallback) */
.ed-hero__static {
  display: none;
}
.ed-hero__static-time {
  font-family: var(--ed-mono);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--ed-gold);
}
.ed-hero__static > div {
  margin-bottom: 16px;
}
.ed-hero__static-label {
  margin-top: 4px;
}

/* Gold progress rail, right edge */
.ed-hero__rail {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  height: 46vh;
  display: none;
  z-index: 5;
}
@media (min-width: 768px) {
  .ed-hero__rail {
    display: block;
  }
}
.ed-hero__railtrack {
  position: relative;
  height: 100%;
  width: 1px;
  background: rgba(242, 239, 230, 0.15);
}
.ed-hero__railfill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--ed-gold);
  transform: scaleY(0);
  transform-origin: top center;
}
.ed-hero__tick {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ed-hero__tick span:first-child {
  font-family: var(--ed-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(242, 239, 230, 0.5);
}
.ed-hero__tick span:last-child {
  height: 1px;
  width: 8px;
  background: rgba(242, 239, 230, 0.4);
}

/* Headline block */
.ed-hero__head {
  position: absolute;
  left: var(--ed-gutter);
  right: var(--ed-gutter);
  bottom: 56px;
  z-index: 5;
  transition: transform 0.55s cubic-bezier(0.55, 0, 0.8, 0.4);
}
@media (min-width: 768px) {
  .ed-hero__head {
    bottom: 80px;
    right: auto;
    max-width: 768px;
  }
}
.ed-hero__head.ed-out {
  transform: translateY(-190vh);
  pointer-events: none;
}
.ed-hero__eyebrow {
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.7);
}
@media (min-width: 768px) {
  .ed-hero__eyebrow {
    font-size: 12px;
  }
}
.ed-hero__title {
  margin-top: 16px;
  font-size: 13vw;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ed-bone);
}
@media (min-width: 640px) {
  .ed-hero__title {
    font-size: 10vw;
  }
}
@media (min-width: 768px) {
  .ed-hero__title {
    font-size: 7vw;
  }
}
.ed-hero__sub {
  margin-top: 20px;
  max-width: 576px;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(242, 239, 230, 0.75);
}
@media (min-width: 768px) {
  .ed-hero__sub {
    font-size: 18px;
  }
}

/* Hero CTA garment: gold framed block, fill sweeps in from the left */
.ed-cta-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 56px;
  margin-top: 36px;
  padding: 0 36px;
  border: 1px solid var(--ed-gold);
  overflow: hidden;
  transition: transform 0.15s ease;
}
.ed-cta-frame:active {
  transform: scale(0.98);
}
.ed-cta-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ed-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.ed-cta-frame:hover::before,
.ed-cta-frame:focus-visible::before {
  transform: scaleX(1);
}
.ed-cta-frame span {
  position: relative;
  font-family: var(--ed-mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ed-gold);
  transition: color 0.3s ease;
}
.ed-cta-frame:hover span,
.ed-cta-frame:focus-visible span {
  color: var(--ed-ground);
}

/* Hero static/fallback state (JS adds ed-hero--static on video error). */
.ed-hero--static {
  height: 100vh;
  height: 100dvh;
}
.ed-hero--static .ed-hero__video,
.ed-hero--static .ed-hero__rail,
.ed-hero--static .ed-hero__scrub {
  display: none;
}
.ed-hero--static .ed-hero__poster {
  visibility: visible;
}
.ed-hero--static .ed-hero__static {
  display: block;
}
.ed-hero--static .ed-hero__head {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .ed-hero {
    height: 100vh;
    height: 100dvh;
  }
  .ed-hero__video,
  .ed-hero__rail,
  .ed-hero__scrub {
    display: none;
  }
  .ed-hero__poster {
    visibility: visible;
  }
  .ed-hero__static {
    display: block;
  }
  .ed-hero__head {
    transform: none;
  }
}

/* ============================ S2 DOCTRINE ============================ */
.ed-doctrine {
  position: relative;
  overflow: hidden;
  background: var(--ed-ground);
  padding: 128px 0;
}
@media (min-width: 768px) {
  .ed-doctrine {
    padding: 176px 0;
  }
}
.ed-doctrine__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  mix-blend-mode: screen;
}
.ed-doctrine__numwrap {
  position: absolute;
  left: 0;
  padding-left: 4vw;
  top: 32px;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .ed-doctrine__numwrap {
    top: 50%;
    transform: translateY(-50%);
  }
}
.ed-doctrine__shift {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .ed-doctrine__shift {
    transform: translateX(0);
  }
}
.ed-doctrine__numeral {
  font-weight: 900;
  font-size: 29vw;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-doctrine__numeral {
    font-size: clamp(150px, 15.5vw, 340px);
  }
}
.ed-doctrine__col {
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: 704px;
  padding: 30vw var(--ed-gutter) 0;
}
@media (min-width: 768px) {
  .ed-doctrine__col {
    width: 48%;
    margin-right: 6vw;
    padding: 0;
  }
}
.ed-doctrine__headline {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-doctrine__headline {
    font-size: 60px;
  }
}
.ed-doctrine__notes {
  list-style: none;
  margin-top: 64px;
}
.ed-doctrine__notes li {
  border-bottom: 1px solid rgba(140, 115, 38, 0.4);
  padding-bottom: 24px;
}
.ed-doctrine__notes li + li {
  margin-top: 32px;
}
.ed-doctrine__notes p {
  font-family: var(--ed-mono);
  font-size: 12px;
  line-height: 1.625;
  letter-spacing: 0.025em;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-doctrine__notes p {
    font-size: 14px;
  }
}
.ed-doctrine__fn {
  margin-right: 16px;
}

/* ========================== S3 BESTSELLERS =========================== */
.ed-best {
  background: var(--ed-ground);
  padding: 112px 0;
}
@media (min-width: 768px) {
  .ed-best {
    padding: 144px 0;
  }
}
.ed-best__head {
  padding: 0 var(--ed-gutter);
}
.ed-best__row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .ed-best__row {
    flex-direction: row;
    align-items: flex-end;
    gap: 64px;
  }
}
.ed-best__title {
  font-size: clamp(38px, 13vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-best__title {
    font-size: 96px;
  }
}
.ed-best__underline {
  margin-top: 20px;
  height: 2px;
  width: 56px;
  background: var(--ed-gold);
}
.ed-best__sub {
  max-width: 320px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(242, 239, 230, 0.7);
}
@media (min-width: 768px) {
  .ed-best__sub {
    font-size: 16px;
  }
}
.ed-best__rail {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  padding: 0 var(--ed-gutter) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ed-best__rail::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .ed-best__rail {
    cursor: grab;
  }
  .ed-best__rail.ed-dragging {
    cursor: grabbing;
  }
}
.ed-card {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 276px;
  scroll-snap-align: start;
  border: 1px solid rgba(140, 115, 38, 0.4);
  background: var(--ed-ground);
  user-select: none;
  transition: transform 0.15s ease;
}
.ed-card:active {
  transform: scale(0.98);
}
@media (min-width: 768px) {
  .ed-card {
    width: 315px;
  }
}
.ed-card__index {
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 2;
  border-right: 1px solid rgba(140, 115, 38, 0.4);
  border-bottom: 1px solid rgba(140, 115, 38, 0.4);
  background: var(--ed-ground);
  padding: 8px 14px;
  font-family: var(--ed-mono);
  font-size: 12px;
  color: rgba(242, 239, 230, 0.85);
}
.ed-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  background: var(--ed-panel);
  padding: 36px;
}
@media (min-width: 768px) {
  .ed-card__media {
    height: 340px;
  }
}
.ed-card__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}
.ed-card__body {
  border-top: 1px solid rgba(140, 115, 38, 0.4);
  padding: 20px;
}
.ed-card__name {
  min-height: 2.6em;
  font-family: var(--ed-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ed-bone);
}
.ed-card__price {
  margin-top: 12px;
  font-family: var(--ed-mono);
  font-size: 16px;
  color: var(--ed-bone);
}
.ed-card__price s {
  margin-left: 12px;
  color: rgba(242, 239, 230, 0.4);
}
.ed-card__view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--ed-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
.ed-card__view u {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ed-card:hover .ed-card__view .ed-arrow {
  transform: translateX(6px);
}
.ed-best__rule {
  margin: 36px var(--ed-gutter) 0;
  height: 1px;
  background: rgba(242, 239, 230, 0.1);
}
.ed-best__rulefill {
  height: 1px;
  width: 100%;
  background: var(--ed-gold);
  transform: scaleX(0.04);
  transform-origin: left center;
}

/* ============================= S4 GOALS ============================== */
.ed-goals {
  background: var(--ed-ground);
  padding: 96px 0 112px;
}
.ed-goals__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 0 var(--ed-gutter);
}
.ed-goals__rule {
  height: 1px;
  width: 40px;
  background: var(--ed-gold);
}
.ed-goals__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ed-goals__row {
    flex-direction: row;
    height: 90vh;
    padding: 0 var(--ed-gutter);
  }
}
.ed-goal {
  position: relative;
  display: block;
  height: 26vh;
  min-height: 208px;
  overflow: hidden;
  outline: none;
}
.ed-goal + .ed-goal {
  border-top: 1px solid rgba(140, 115, 38, 0.6);
}
@media (min-width: 768px) {
  .ed-goal {
    height: 100%;
    min-height: 0;
    flex: 1 1 0%;
    transition: flex-grow 0.7s cubic-bezier(0.34, 1.2, 0.4, 1);
  }
  .ed-goal + .ed-goal {
    border-top: 0;
    border-left: 1px solid rgba(140, 115, 38, 0.6);
  }
  .ed-goal:hover,
  .ed-goal:focus-visible {
    flex-grow: 2.6;
  }
}
/* Decorative layers never eat the click; the whole tile IS the link. */
.ed-goal__img,
.ed-goal__tint,
.ed-goal__grade,
.ed-goal__lamp,
.ed-goal__name,
.ed-goal__meta {
  pointer-events: none;
}
.ed-goal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s ease-out;
}
.ed-goal:hover .ed-goal__img {
  transform: scale(1.04);
}
.ed-goal__tint {
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.35);
  mix-blend-mode: multiply;
}
.ed-goal__grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--ed-ground),
    rgba(11, 11, 10, 0.35) 55%,
    rgba(11, 11, 10, 0.1)
  );
}
.ed-goal--lamp .ed-goal__grade {
  background: linear-gradient(to top, var(--ed-ground), rgba(11, 11, 10, 0.7) 55%, rgba(11, 11, 10, 0.1));
}
.ed-goal__lamp {
  position: absolute;
  inset: 0;
  background: radial-gradient(38% 30% at 68% 30%, rgba(212, 175, 55, 0.32), transparent 70%);
}
.ed-goal__name {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-goal__name {
    top: 32px;
    font-size: 36px;
    writing-mode: vertical-rl;
  }
}
.ed-goal__meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .ed-goal__meta {
    bottom: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.5s ease 0.15s,
      transform 0.5s ease 0.15s;
  }
  .ed-goal:hover .ed-goal__meta,
  .ed-goal:focus-visible .ed-goal__meta {
    opacity: 1;
    transform: translateY(0);
  }
}
.ed-goal__icon {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.85;
}
.ed-goal__tagline {
  white-space: nowrap;
  font-family: var(--ed-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-goal__tagline {
    font-size: 14px;
  }
}
.ed-goal__chip {
  margin-left: auto;
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  border: 1px solid var(--ed-gold);
  color: var(--ed-gold);
  transition: transform 0.3s ease;
}
.ed-goal:hover .ed-goal__chip {
  transform: translateX(4px);
}

/* ============================= S5 LABEL ============================== */
.ed-label {
  background: var(--ed-ground);
}
.ed-label__grid {
  display: grid;
}
@media (min-width: 768px) {
  .ed-label__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ed-label__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
  overflow: hidden;
  background: var(--ed-panel);
  padding: 40px;
}
@media (min-width: 768px) {
  .ed-label__media {
    min-height: 88vh;
    padding: 64px;
  }
}
.ed-label__media img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.ed-label__sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(212, 175, 55, 0.13) 48%, transparent 63%);
}
.ed-label__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .ed-label__col {
    padding: 80px 56px;
  }
}
.ed-label__table {
  border: 1px solid rgba(140, 115, 38, 0.5);
}
.ed-label__fact {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: stretch;
}
.ed-label__fact + .ed-label__fact {
  border-top: 1px solid rgba(140, 115, 38, 0.5);
}
.ed-label__idx {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(140, 115, 38, 0.5);
  padding: 24px 0;
  font-family: var(--ed-mono);
  font-size: 14px;
  color: var(--ed-gold);
}
.ed-label__fact-text {
  display: flex;
  align-items: center;
  padding: 24px;
  font-family: var(--ed-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-label__fact-text {
    font-size: 16px;
  }
}
.ed-label__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(140, 115, 38, 0.5);
  padding: 24px 0;
}
.ed-label__fact-icon img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  opacity: 0.85;
}
.ed-label__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 8px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .ed-label__metrics {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .ed-metric + .ed-metric {
    border-left: 1px solid rgba(242, 239, 230, 0.1);
    padding-left: 24px;
  }
}
.ed-metric__value {
  font-size: clamp(27px, 8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ed-bone);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ed-metric__value {
    font-size: 41px;
  }
}
.ed-metric__cap {
  margin-top: 12px;
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
.ed-metric__sub {
  margin-top: 4px;
  font-family: var(--ed-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.45);
}
.ed-link-mono {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 48px;
  font-family: var(--ed-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
.ed-link-mono u {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ed-link-mono:hover .ed-arrow {
  transform: translateX(6px);
}

/* ============================= S6 STORY ============================== */
.ed-story {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ed-ground);
}
.ed-story__plate {
  position: absolute;
  inset: -6% 0;
  background-size: cover;
  background-position: center;
}
.ed-story__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    130% 95% at 18% 100%,
    rgba(11, 11, 10, 0.94) 0%,
    rgba(11, 11, 10, 0.55) 40%,
    rgba(11, 11, 10, 0.12) 72%,
    transparent 100%
  );
}
.ed-story__topgrade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11, 11, 10, 0.75), transparent);
}
.ed-story__marker {
  position: absolute;
  right: var(--ed-gutter);
  top: 80px;
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-story__marker {
    top: 96px;
    font-size: 12px;
  }
}
.ed-story__content {
  position: relative;
  max-width: 768px;
  padding: 160px var(--ed-gutter) 80px;
}
@media (min-width: 768px) {
  .ed-story__content {
    padding-bottom: 96px;
  }
}
.ed-story__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-story__title {
    font-size: 96px;
  }
}
.ed-story__lines {
  margin-top: 28px;
  max-width: 576px;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(242, 239, 230, 0.85);
}
@media (min-width: 768px) {
  .ed-story__lines {
    font-size: 18px;
  }
}
.ed-story .ed-link-mono {
  margin-top: 32px;
}

/* ============================= S7 STACK ============================== */
.ed-stack {
  background: var(--ed-ground);
  padding: 112px var(--ed-gutter);
}
@media (min-width: 768px) {
  .ed-stack {
    padding: 144px var(--ed-gutter);
  }
}
.ed-stack__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-stack__title {
    font-size: 72px;
  }
}
.ed-stack__grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .ed-stack__grid {
    grid-template-columns: 1.55fr 1fr;
  }
}
.ed-stack__side {
  display: grid;
  gap: 20px;
}
.ed-bundle,
.ed-bundle--feature {
  display: grid;
  border: 1px solid rgba(140, 115, 38, 0.4);
  background: var(--ed-panel);
  transition: transform 0.15s ease;
}
.ed-bundle:active,
.ed-bundle--feature:active {
  transform: scale(0.99);
}
@media (min-width: 768px) {
  .ed-bundle--feature {
    grid-template-columns: 1.05fr 1fr;
  }
}
.ed-bundle--feature .ed-bundle__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__media {
    padding: 48px;
  }
}
.ed-bundle--feature .ed-bundle__media img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
  transition: transform 0.7s ease-out;
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__media img {
    max-height: 380px;
  }
}
.ed-bundle--feature:hover .ed-bundle__media img,
.ed-bundle:hover .ed-bundle__media img {
  transform: scale(1.03);
}
.ed-bundle--feature .ed-bundle__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(140, 115, 38, 0.4);
  padding: 32px;
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__body {
    border-top: 0;
    border-left: 1px solid rgba(140, 115, 38, 0.4);
    padding: 40px;
  }
}
.ed-bundle__tag {
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__tag {
    font-size: 12px;
  }
}
.ed-bundle__name {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ed-bone);
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__name {
    font-size: 48px;
  }
}
.ed-bundle__sub {
  margin-top: 16px;
  max-width: 384px;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(242, 239, 230, 0.7);
}
@media (min-width: 768px) {
  .ed-bundle--feature .ed-bundle__sub {
    font-size: 16px;
  }
}
.ed-bundle__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  margin-top: 28px;
}
.ed-bundle__now {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ed-bone);
}
.ed-bundle__was {
  font-family: var(--ed-mono);
  font-size: 16px;
  color: rgba(242, 239, 230, 0.4);
}
.ed-bundle__save {
  margin-top: 8px;
  font-family: var(--ed-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-gold);
}
/* Small stacked bundles */
.ed-bundle {
  grid-template-columns: 1.2fr 1fr;
}
.ed-bundle .ed-bundle__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
@media (min-width: 768px) {
  .ed-bundle .ed-bundle__body {
    padding: 32px;
  }
}
.ed-bundle .ed-bundle__tag {
  font-size: 10px;
}
.ed-bundle .ed-bundle__name {
  margin-top: 12px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .ed-bundle .ed-bundle__name {
    font-size: 30px;
  }
}
.ed-bundle .ed-bundle__sub {
  margin-top: 8px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .ed-bundle .ed-bundle__sub {
    font-size: 14px;
  }
}
.ed-bundle .ed-bundle__price {
  margin-top: 16px;
  gap: 4px 12px;
}
.ed-bundle .ed-bundle__now {
  font-size: 24px;
}
.ed-bundle .ed-bundle__was {
  font-size: 14px;
}
.ed-bundle .ed-bundle__save {
  margin-top: 6px;
  font-size: 10px;
}
.ed-bundle .ed-bundle__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(140, 115, 38, 0.4);
  padding: 20px;
}
.ed-bundle .ed-bundle__media img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.7s ease-out;
}

/* Gold banner band CTA */
.ed-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  margin-top: 20px;
  background: var(--ed-gold);
  padding: 0 28px;
  transition: transform 0.15s ease;
}
.ed-band:active {
  transform: scale(0.99);
}
@media (min-width: 768px) {
  .ed-band {
    height: 144px;
    padding: 0 56px;
  }
}
.ed-band__label {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ed-ground);
}
@media (min-width: 768px) {
  .ed-band__label {
    font-size: 72px;
  }
}
.ed-band__mag {
  display: inline-flex;
  will-change: transform;
}
.ed-band__arrow {
  display: inline-flex;
  font-size: 36px;
  line-height: 1;
  color: var(--ed-ground);
  transition: transform 0.3s ease-out;
}
@media (min-width: 768px) {
  .ed-band__arrow {
    font-size: 72px;
  }
}
.ed-band:hover .ed-band__arrow {
  transform: translateX(12px);
}

/* Mono value strip */
.ed-values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(242, 239, 230, 0.1);
  border-bottom: 1px solid rgba(242, 239, 230, 0.1);
  padding: 20px 16px;
}
.ed-values__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ed-values__item img {
  height: 16px;
  width: 16px;
  object-fit: contain;
  opacity: 0.6;
}
.ed-values__item span {
  font-family: var(--ed-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.8);
}
@media (min-width: 768px) {
  .ed-values__item span {
    font-size: 12px;
  }
}
.ed-values__sep {
  font-family: var(--ed-mono);
  font-size: 12px;
  color: rgba(242, 239, 230, 0.3);
}

/* Reduced motion: collapse every CSS transition to its end state. */
@media (prefers-reduced-motion: reduce) {
  .ed-flagship *,
  .ed-flagship *::before,
  .ed-flagship *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ====================================================================
   HOMEPAGE NAV HARMONIZATION
   These selectors target the theme's GLOBAL header, but this stylesheet
   only loads on the homepage (it ships with the Easy Day Flagship section),
   so the restyle is scoped to the homepage. Palette + type mirror
   .ed-flagship: ground #0b0b0a, panel #111110, bone #f2efe6, gold #d4af37,
   rule #8c7326, JetBrains Mono label voice.
   ==================================================================== */

/* Announcement bar: one continuous dark field, gold mono voice. */
.announcement-bar,
.announcement-slider,
.announcement-slider__slide {
  background: #0b0b0a !important;
  color: #d4af37 !important;
}
.announcement-bar,
.announcement-text,
.announcement-link,
.announcement-link-text {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  color: #d4af37 !important;
}

/* Header shell + toolbar: same ground, thin gold rule, no clashing shadow. */
.site-header,
.header-wrapper,
.header-sticky-wrapper .site-header,
.toolbar {
  background: #0b0b0a !important;
  box-shadow: none !important;
}
.site-header {
  border-bottom: 1px solid #8c7326 !important;
}
.toolbar {
  border-bottom: 1px solid rgba(140, 115, 38, 0.35) !important;
}

/* Primary nav links: bone, mono, tracked; gold on hover/focus. */
.site-nav__link,
.site-nav__dropdown-link,
.toolbar__menu a {
  color: #f2efe6 !important;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}
.site-nav__link {
  font-size: 12px !important;
}
.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus,
.toolbar__menu a:hover {
  color: #d4af37 !important;
}
/* Prestige underlines the active/hover link with currentColor — keep it gold. */
.site-nav__link::after {
  background: #d4af37 !important;
}

/* Header icons (search / account / cart): bone, gold on hover. */
.site-header .icon,
.site-nav__icons .icon,
.cart-link .icon,
.site-header__logo-link {
  color: #f2efe6 !important;
}
.site-nav__icons a:hover .icon,
.site-header .site-nav__link--icon:hover .icon {
  color: #d4af37 !important;
}
.cart-link__bubble {
  background: #d4af37 !important;
  color: #0b0b0a !important;
}

/* Dropdown / megamenu panels: dark panel, gold hairline. */
.site-nav__dropdown,
.site-nav__deep-dropdown,
.site-nav__dropdown.megamenu {
  background: #111110 !important;
  border: 1px solid #8c7326 !important;
}

/* Text logo (if no image logo): bone, tight display type. */
.site-header__logo,
.site-header__logo a {
  color: #f2efe6 !important;
}

/* Search field overlay to match. */
.site-header__search-container,
.site-header__search {
  background: #0b0b0a !important;
  color: #f2efe6 !important;
}
