/* ============================================
   PLAIN STANDARD — Editorial Design System
   Premium lifestyle brand aesthetic layer
   ============================================ */

/* ── Scroll Reveal System ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* ── Brand Bar (replaces announcement) ── */
.brand-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── Homepage Header — solid, frosted, consistent ──
   editorial.css only loads on index.html, so these
   .site-header rules apply to the homepage alone.
   No transparent state: the header keeps the refined
   "scrolled" appearance at all times (dark text on a
   frosted off-white bar), matching the rest of the site. */
.site-header {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.05);
}

/* Guard against any full-bleed section causing horizontal scroll
   (clip, not hidden, so it never breaks the sticky header) */
main { overflow-x: clip; }

/* ── Editorial Hero ── */
.ed-hero {
  height: calc(100vh - 102px); /* 64px header + ~38px USP bar */
  min-height: 500px;
  max-height: 800px;
  display: grid;
  grid-template-columns: 54% 46%;
  position: relative;
  overflow: hidden;
}

.ed-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 2;
  background: var(--off-white);
}

/* Hero text animation on load */
.ed-hero-kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.ed-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.ed-hero-headline em {
  font-style: italic;
  color: var(--stone);
  display: block;
}

.ed-hero-body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--grey-dark);
  max-width: 320px;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s forwards;
}

.ed-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: gap 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: heroIn 0.9s ease 1s forwards;
  width: fit-content;
}

.ed-hero-cta:hover { gap: 24px; }

.cta-line {
  width: 36px;
  height: 1px;
  background: var(--dark);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.ed-hero-cta:hover .cta-line { width: 54px; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual — cinematic right panel */
.ed-hero-visual {
  position: relative;
  overflow: hidden;
}

.ed-hero-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(196, 180, 154, 0.35) 0%, transparent 48%),
    radial-gradient(ellipse at 80% 85%, rgba(92, 102, 69, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 60% 40%, rgba(212, 196, 160, 0.12) 0%, transparent 40%),
    linear-gradient(155deg, #1E1A16 0%, #141210 35%, #0A0908 100%);
  animation: kenBurns 22s ease-in-out alternate infinite;
}

.ed-hero-visual-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 2;
  pointer-events: none;
}

.ed-hero-visual-fade {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, var(--off-white), transparent);
  z-index: 3;
  pointer-events: none;
}

.ed-hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroIn 0.8s ease 1.4s forwards;
  z-index: 4;
}

.scroll-tick {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  position: relative;
  overflow: hidden;
}
.scroll-tick::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: rgba(255,255,255,0.7);
  animation: tickScroll 2.2s ease-in-out infinite;
}
@keyframes tickScroll {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

.scroll-label {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-1.5%, 0.8%); }
}

/* Mobile hero */
@media (max-width: 960px) {
  .ed-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .ed-hero-visual {
    height: 70vw;
    min-height: 340px;
    max-height: 480px;
    order: -1;
  }
  .ed-hero-visual-fade { display: none; }
  .ed-hero-text {
    padding: 52px 24px 64px;
    order: 1;
  }
  .ed-hero-scroll-hint { display: none; }
  .ed-hero-headline { font-size: clamp(44px, 9vw, 70px); }
}

/* ── Brand Divider ── */
.ed-divider {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.ed-divider-rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--grey-light), transparent);
}

.ed-divider-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--grey-dark);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
}

/* ── Editorial Product Section ── */
.ed-section {
  padding: clamp(40px, 5vw, 72px) 0;
}

.ed-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 24px;
}

.ed-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 14px;
}

.ed-section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.ed-section-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.ed-section-link .cta-line { background: var(--grey-mid); transition: width 0.4s ease, background 0.3s ease; }
.ed-section-link:hover { color: var(--dark); }
.ed-section-link:hover .cta-line { width: 48px; background: var(--dark); }

/* ── Product Cards — Editorial ── */
.ed-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.ed-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ed-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ed-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1100px) { .ed-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .ed-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ed-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1px; } }

.ed-card {
  background: var(--off-white);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.ed-card-media {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.ed-card-media > div,
.ed-card-media > img {
  position: absolute;
  inset: 0;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ed-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ed-card:hover .ed-card-media > div,
.ed-card:hover .ed-card-media > img { transform: scale(1.04); }

.ed-card-body {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
}

.ed-card-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.ed-card-detail {
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
}

.ed-card-price {
  font-size: 13px;
  color: var(--dark);
  margin-top: 10px;
}

/* Featured card variant — slightly taller portrait */
.ed-card.tall .ed-card-media { aspect-ratio: 4/5; }

/* Two-column feature row (used on the featured section) */
.ed-grid-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

@media (max-width: 860px)  { .ed-grid-feature { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .ed-grid-feature { grid-template-columns: 1fr; } }

/* ── Brand Manifesto ── */
.ed-manifesto {
  background: var(--dark);
  color: var(--white);
  padding: clamp(52px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
}

.ed-manifesto::after {
  content: 'PS';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(180px, 25vw, 340px);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.1em;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.ed-manifesto-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.ed-manifesto-pre {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.ed-manifesto-pre::before {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.ed-manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 48px;
  letter-spacing: 0.005em;
}

.ed-manifesto-quote em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.ed-manifesto-body {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.95;
  max-width: 460px;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.ed-manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.5s ease;
}
.ed-manifesto-link:hover { color: rgba(255,255,255,0.9); gap: 24px; }
.ed-manifesto-link .cta-line { background: currentColor; width: 36px; }
.ed-manifesto-link:hover .cta-line { width: 52px; }

/* ── Full-Width Campaign ── */
.ed-campaign {
  position: relative;
  overflow: hidden;
  height: clamp(240px, 38vh, 460px);
  display: flex;
  align-items: flex-end;
}

.ed-campaign-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s ease;
}
.ed-campaign:hover .ed-campaign-bg { transform: scale(1.02); }

/* Subtle film grain for gradient-backed campaigns */
.ed-campaign-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.ed-campaign-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 8, 0.72) 0%,
    rgba(10, 9, 8, 0.3) 45%,
    rgba(10, 9, 8, 0.08) 100%
  );
  z-index: 1;
}

.ed-campaign-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 5vw, 72px) clamp(40px, 6vw, 80px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.ed-campaign-text {}

.ed-campaign-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.ed-campaign-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: 0.005em;
  max-width: 580px;
}

.ed-campaign-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.5s ease;
  white-space: nowrap;
  align-self: flex-end;
}
.ed-campaign-link:hover { color: var(--white); gap: 22px; }
.ed-campaign-link .cta-line { background: currentColor; width: 32px; }
.ed-campaign-link:hover .cta-line { width: 48px; }

/* ── Side-by-Side Split ── */
.ed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.ed-split-visual {
  position: relative;
  overflow: hidden;
}

.ed-split-visual-inner {
  position: absolute;
  inset: 0;
  transition: transform 1s ease;
}
.ed-split:hover .ed-split-visual-inner { transform: scale(1.02); }

.ed-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(48px, 6vw, 96px);
  background: var(--cream);
}

@media (max-width: 900px) {
  .ed-split { grid-template-columns: 1fr; }
  .ed-split-visual { min-height: 380px; }
}

/* ── Colour Swatches (editorial) ── */
.ed-colour-row {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.ed-colour-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.08);
}

/* ── Boys Brief ── */
.ed-boys-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

.ed-boys-card {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.ed-boys-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s ease;
}

/* Image support for elements that accept real photos */
img.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ed-boys-card-bg.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ed-boys-card:hover .ed-boys-card-bg { transform: scale(1.03); }

.ed-boys-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  z-index: 1;
}

.ed-boys-card-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  color: var(--white);
}

.ed-boys-card-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.ed-boys-card-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.1;
}

@media (max-width: 680px) {
  .ed-boys-brief { grid-template-columns: 1fr; }
  .ed-boys-card { aspect-ratio: 16/10; }
}

/* ── Minimal Newsletter ── */
.ed-newsletter {
  padding: clamp(56px, 7vw, 96px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
}

.ed-newsletter-pre {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 32px;
}

.ed-newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.ed-newsletter-sub {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 52px;
  max-width: 320px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.ed-newsletter-form {
  display: flex;
  max-width: 380px;
  width: 100%;
  border-bottom: 1px solid var(--grey-dark);
}

.ed-newsletter-form input {
  flex: 1;
  padding: 14px 0;
  border: none;
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dark);
  outline: none;
  font-family: var(--font-sans);
}
.ed-newsletter-form input::placeholder { color: var(--grey-light); }

.ed-newsletter-form button {
  padding: 14px 0 14px 20px;
  background: none;
  border: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.ed-newsletter-form button:hover { opacity: 0.45; }

.ed-newsletter-small {
  font-size: 10px;
  color: var(--grey-light);
  margin-top: 20px;
  letter-spacing: 0.06em;
}

/* ── Refined Footer ── */
.ed-footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 36px;
}

.ed-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ed-footer-logo {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  display: block;
}

.ed-footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.95;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  max-width: 200px;
}

.ed-footer-social {
  display: flex;
  gap: 10px;
}
.ed-footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ed-footer-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.ed-footer-social svg { width: 13px; height: 13px; }

.ed-footer-col h4 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 24px;
  font-family: var(--font-sans);
}

.ed-footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.ed-footer-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.ed-footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.ed-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 12px;
}

.ed-payments {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ed-payment-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 7px;
  border-radius: 2px;
}

@media (max-width: 1000px) { .ed-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) {
  .ed-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .ed-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Cinematic gradient compositions ── */
.ci-dark-stone {
  background:
    radial-gradient(ellipse at 25% 20%, rgba(196, 180, 154, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(92, 102, 69, 0.2) 0%, transparent 55%),
    linear-gradient(160deg, #1E1A16 0%, #141210 45%, #0A0908 100%);
}

.ci-dark-olive {
  background:
    radial-gradient(ellipse at 30% 15%, rgba(92, 102, 69, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 90%, rgba(196, 180, 154, 0.2) 0%, transparent 45%),
    linear-gradient(150deg, #1A1E14 0%, #101410 55%, #080C08 100%);
}

.ci-stone-warm {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(240, 220, 190, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(196, 180, 154, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #E8E0D0 0%, #D4C8B0 50%, #C0B098 100%);
}

.ci-grey-minimal {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 200, 200, 0.5) 0%, transparent 60%),
    linear-gradient(160deg, #D8D5D0 0%, #BEBBB5 50%, #A0A09A 100%);
}

.ci-navy-deep {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(196, 180, 154, 0.25) 0%, transparent 50%),
    linear-gradient(155deg, #1A2030 0%, #141820 50%, #0C1018 100%);
}

.ci-olive-muted {
  background:
    radial-gradient(ellipse at 40% 25%, rgba(140, 160, 100, 0.45) 0%, transparent 55%),
    linear-gradient(150deg, #5C6040 0%, #404835 55%, #2A3020 100%);
}

.ci-cream-light {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 252, 245, 0.9) 0%, transparent 60%),
    linear-gradient(140deg, #F5F0E8 0%, #EDE5D8 60%, #E0D8C8 100%);
}

.ci-sand-warm {
  background:
    radial-gradient(ellipse at 35% 35%, rgba(240, 228, 200, 0.8) 0%, transparent 55%),
    linear-gradient(150deg, #DDD0B0 0%, #C8B890 50%, #B8A070 100%);
}

/* ============================================
   HYBRID / CONVERSION LAYER
   Trust bar · hero proof · card ratings ·
   social proof · bundle offer band
   ============================================ */

/* ── Top USP / Trust bar ── */
.ed-usp {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ed-usp span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.ed-usp .ed-usp-star { color: var(--stone); letter-spacing: 0.05em; }
.ed-usp-sep { opacity: 0.28; }
@media (max-width: 640px) {
  .ed-usp { gap: 14px; font-size: 9px; letter-spacing: 0.12em; }
  .ed-usp-sep { display: none; }
}

/* ── Hero: primary CTA + social proof ── */
.ed-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.ed-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  text-decoration: none;
  opacity: 0;
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.95s forwards;
  transition: background 0.4s ease, transform 0.4s ease;
}
.ed-hero-cta-primary:hover { background: var(--dark); transform: translateY(-1px); }

.ed-hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 11px;
  color: var(--grey-dark);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: heroIn 0.9s ease 1.15s forwards;
}
.ed-stars { color: var(--stone); letter-spacing: 2px; font-size: 12px; line-height: 1; }
.ed-hero-proof strong { color: var(--dark); font-weight: 600; }

/* ── Bestseller card rating ── */
.ed-card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  font-size: 11px;
  color: var(--grey-mid);
}
.ed-card-rating .ed-stars { font-size: 11px; }

/* ── Bundle offer band (compact, centered) ── */
.ed-bundle {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  text-align: center;
  color: var(--white);
}
.ed-bundle-bg { position: absolute; inset: 0; z-index: 0; }
.ed-bundle .container { position: relative; z-index: 2; }
.ed-bundle-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.ed-bundle-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 18px;
}
.ed-bundle-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 38px;
}
.ed-bundle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ed-bundle-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── Social proof strip ── */
.ed-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--cream);
}
.ed-proof-head { text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }
.ed-proof-head .ed-stars { font-size: 18px; }
.ed-proof-head p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 14px;
}
.ed-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.ed-proof-card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ed-proof-card .ed-stars { font-size: 13px; }
.ed-proof-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
}
.ed-proof-author {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: auto;
}
.ed-proof-author strong { color: var(--dark); font-weight: 600; }
@media (max-width: 760px) {
  .ed-proof-grid { grid-template-columns: 1fr; }
}
