/* ============================================================
   EH·Words — Official Publisher Site
   Design: Editorial dark-luxury with sage & cream palette
   Typefaces: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

/* ── Variables ── */
:root {
  /* Brand palette */
  --cream:      #F7F3EF;
  --parchment:  #ECE4D9;
  --sage-light: #D6D7C5;
  --sage:       #B7B998;
  --slate:      #4E5560;
  --ink:        #1A1C17;
  --black:      #0A0A09;

  /* Semantic */
  --bg-light:   var(--cream);
  --bg-dark:    var(--black);
  --text-dark:  var(--ink);
  --text-light: var(--cream);
  --text-muted: rgba(247,243,239,0.5);
  --accent:     var(--sage-light);

  /* Book cover colors */
  --cover-r1:   #2A3028;
  --cover-r2:   #1E2830;
  --cover-r3:   #0A0A09;
  --cover-ehm:  #2C2820;
  --cover-ehmov:#252030;
  --cover-oracle:#1A1400;
  --cover-book: #1C1820;
  --cover-144:  #0F1A14;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-light); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Layout helpers ── */
.container        { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow{ max-width: 720px; margin: 0 auto; padding: 0 2.5rem; }
.section--light   { background: var(--cream); }
.section--dark    { background: var(--black); }

/* ── Label tag ── */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--sage-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.label-tag--dark  { color: var(--sage-light); border-color: rgba(214,215,197,0.25); }
.label-tag--sage  { color: var(--sage); border-color: rgba(183,185,152,0.3); }

/* ── Buttons ── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: 2rem;
}
.btn-dark:hover { background: transparent; color: var(--ink); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  margin-top: 2rem;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.transparent { background: transparent; }
.nav.solid       { background: var(--black); box-shadow: 0 1px 0 rgba(214,215,197,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__symbol {
  width: 32px;
  height: 32px;
  color: var(--sage-light);
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,239,0.65);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-light);
  transition: width 0.25s;
}

.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.2s;
}

.nav__mobile {
  background: var(--black);
  border-top: 1px solid rgba(214,215,197,0.08);
  padding: 1.5rem 2.5rem;
  display: none;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,239,0.6);
  border-bottom: 1px solid rgba(214,215,197,0.08);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2.5rem 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero__symbol-wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__symbol-large {
  width: min(560px, 55vw);
  height: min(560px, 55vw);
  opacity: 0.5;
  animation: pulse-symbol 8s ease-in-out infinite;
}

@keyframes pulse-symbol {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 0.6;  transform: scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeUp 1s var(--ease-out) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-light);
}

.hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,243,239,0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(214,215,197,0.3);
  padding: 1rem 2rem;
  transition: border-color 0.25s, background 0.25s;
}
.hero__cta::after {
  content: '→';
  font-size: 0.85rem;
}
.hero__cta:hover {
  border-color: var(--sage-light);
  background: rgba(214,215,197,0.05);
}

/* ============================================================
   NEW RELEASES STRIP
   ============================================================ */
.new-strip {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}

.new-strip__inner {
  display: flex;
  align-items: stretch;
}

.new-strip__head {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.25rem 2rem;
  background: var(--sage);
  min-width: 200px;
}

.new-strip__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.05em;
}

.new-strip__ticker {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(247,243,239,0.7);
  letter-spacing: 0.02em;
}

.ticker__dot {
  color: var(--sage) !important;
  font-style: normal !important;
  font-size: 1.4rem !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED
   ============================================================ */
.featured {
  padding: 7rem 0;
  background: var(--parchment);
}

.featured__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}

/* Book cover 3D mock */
.featured__cover-wrap {
  perspective: 900px;
  display: flex;
  justify-content: center;
}

.book-cover {
  display: flex;
  gap: 0;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25));
  transform: rotateY(-8deg);
  transition: transform 0.5s var(--ease);
}
.book-cover:hover { transform: rotateY(-2deg); }

.book-cover__spine {
  width: 28px;
  background: linear-gradient(180deg, #1a1a14 0%, #2a2a1a 100%);
  border-radius: 2px 0 0 2px;
  flex-shrink: 0;
}

.book-cover--oracle .book-cover__spine { background: linear-gradient(180deg, #0f0e08, #1a1900); }

.book-cover__face {
  width: 280px;
  height: 380px;
  background: var(--cover-oracle);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  border-radius: 0 3px 3px 0;
  overflow: hidden;
}

.book-cover__face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(214,215,197,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.book-cover__symbol {
  width: 100%;
  display: flex;
  justify-content: center;
  flex: 1;
  align-items: center;
  padding: 1rem 0;
}
.book-cover__symbol svg { width: 120px; height: 120px; color: var(--sage-light); }

.book-cover__pub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(214,215,197,0.4);
}

.book-cover__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--sage-light);
  margin: 0.5rem 0;
}

.book-cover__author {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(214,215,197,0.5);
}

/* Featured text */
.featured__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}

.featured__title em { font-style: italic; color: var(--slate); }

.featured__author {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
}

.featured__rule {
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin: 1.5rem 0;
}

.featured__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  max-width: 480px;
}

.featured__meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(78,85,96,0.15);
  flex-wrap: wrap;
}

.featured__meta-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}

.featured__meta-value {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink);
}

/* ============================================================
   CATALOGUE
   ============================================================ */
.catalogue {
  padding: 6rem 0 8rem;
}

.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1rem 0 0.75rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
}

/* Filter tabs */
.cat-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cat-filter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(78,85,96,0.25);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cat-filter:hover       { border-color: var(--sage); color: var(--ink); }
.cat-filter.active      { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Books grid */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}

.book-card.hidden { display: none; }

.book-card__cover {
  aspect-ratio: 3/4;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.book-card:hover .book-card__cover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.book-card__cover--r1         { background: var(--cover-r1); }
.book-card__cover--r2         { background: var(--cover-r2); }
.book-card__cover--r3         { background: var(--cover-r3); }
.book-card__cover--book-reiki { background: var(--cover-book); }
.book-card__cover--ehm        { background: var(--cover-ehm); }
.book-card__cover--ehmov      { background: var(--cover-ehmov); }
.book-card__cover--oracle-card{ background: var(--cover-oracle); }
.book-card__cover--livro144   { background: var(--cover-144); }

.book-card__symbol {
  width: 70%;
  margin-bottom: auto;
  padding-top: 1rem;
  color: var(--sage-light);
}
.book-card__symbol svg { width: 100%; height: auto; }

.book-card__num, .book-card__label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(214,215,197,0.3);
  letter-spacing: 0.05em;
  align-self: flex-start;
  line-height: 1;
}
.book-card__label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214,215,197,0.3);
  font-family: var(--font-body);
}

.book-card__info { flex: 1; display: flex; flex-direction: column; }

.book-card__tag {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.book-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.book-card__author {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.book-card__desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 0.9rem;
}

.book-card__format {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(78,85,96,0.5);
  border-top: 1px solid rgba(78,85,96,0.12);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin: 1.25rem 0;
  letter-spacing: -0.015em;
}
.about__title em { font-style: italic; color: var(--sage-light); }

.about__rule {
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin: 2rem 0;
}

.about__block-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.about__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,243,239,0.6);
  line-height: 1.85;
}
.about__body em { color: var(--sage-light); font-style: italic; }

/* Right column */
.about__symbol-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about__symbol {
  width: 100%;
  max-width: 280px;
  animation: pulse-symbol 10s ease-in-out infinite;
}

.about__noemi {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(214,215,197,0.1);
  border-radius: 2px;
  width: 100%;
  max-width: 280px;
}

.about__noemi-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.about__noemi-title {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(247,243,239,0.45);
  line-height: 1.5;
}

.about__stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(214,215,197,0.1);
  width: 100%;
  max-width: 280px;
}

.about__stat {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(214,215,197,0.1);
}
.about__stat:last-child { border-right: none; }

.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about__stat-label {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214,215,197,0.35);
  line-height: 1.4;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  padding: 7rem 0;
  background: var(--parchment);
  text-align: center;
}

.quote__symbol {
  color: var(--sage);
  margin: 0 auto 2.5rem;
  opacity: 0.6;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.01em;
}

.quote__attr {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ============================================================
   DISTRIBUTION
   ============================================================ */
.distribution {
  padding: 6rem 0;
}

.distribution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.distribution__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.distribution__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
}

.distribution__icons {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.dist-icon {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(78,85,96,0.12);
}
.dist-icon:last-child { border-bottom: none; padding-bottom: 0; }

.dist-icon svg {
  width: 40px;
  height: 40px;
  color: var(--sage);
  flex-shrink: 0;
}

.dist-icon span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
}

.contact__inner {
  text-align: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.015em;
}

.contact__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,243,239,0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.contact__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--sage-light);
  border-bottom: 1px solid rgba(214,215,197,0.2);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.contact__link:hover { color: var(--cream); border-color: var(--sage-light); }

.ecosystem {
  padding-top: 4rem;
  border-top: 1px solid rgba(214,215,197,0.08);
}

.ecosystem__label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,239,0.3);
  margin-bottom: 1rem;
}

.ecosystem__brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ecosystem__brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,239,0.3);
  transition: color 0.2s;
}
.ecosystem__brand:hover { color: var(--sage-light); }
.ecosystem__brand--active { color: var(--sage-light); }

.ecosystem__sep {
  color: rgba(214,215,197,0.2);
  font-size: 1.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(214,215,197,0.06);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(214,215,197,0.06);
  margin-bottom: 2rem;
}

.footer__symbol {
  width: 36px;
  height: 36px;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(247,243,239,0.3);
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214,215,197,0.35);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247,243,239,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom { }

.footer__copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(247,243,239,0.2);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .books-grid { grid-template-columns: repeat(3, 1fr); }
  .featured__grid { grid-template-columns: 320px 1fr; gap: 4rem; }
  .about__grid { gap: 4rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .featured__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .featured__cover-wrap { justify-content: center; }
  .featured__rule { margin: 1.5rem auto; }
  .featured__meta { justify-content: center; }
  .book-cover { transform: none; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__right { order: -1; }
  .about__symbol-wrap { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .distribution__grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .new-strip__head { min-width: 150px; padding: 1rem 1.25rem; }
}

@media (max-width: 600px) {
  .books-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .hero { padding: 7rem 1.75rem 4rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__links { flex-direction: column; align-items: center; }
  .new-strip__head { display: none; }
}

/* ── Accessibility ── */
:focus-visible { outline: 1px solid var(--sage-light); outline-offset: 3px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
