/* ─────────────────────────────────────────────────────
   SER: Neve, Fênix e Baleia — Denis Vini Campos
   ───────────────────────────────────────────────────── */

:root {
  --bg:        #080808;
  --surface:   #101010;
  --text:      #f0ece4;
  --muted:     #666;
  --border:    rgba(255,255,255,.08);

  --neve:      #b8dff5;
  --neve-dim:  rgba(184,223,245,.10);
  --fenix:     #e8601a;
  --fenix-dim: rgba(232,96,26,.10);
  --baleia:    #2d6fa0;
  --baleia-dim:rgba(45,111,160,.10);
  --spotify:   #1DB954;

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --ease:   cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: auto; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); font-weight: 300; overflow-x: hidden; }
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, canvas, iframe { display: block; max-width: 100%; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

.container { width: min(90vw, 1280px); margin-inline: auto; }

/* ── GSAP animation helpers — NO CSS opacity:0 here.
   GSAP sets initial states via JS, not CSS.            ── */
.section-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── Loader ───────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
}
.loader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.loader-sup  { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.loader-title {
  font-family: var(--font-d);
  font-size: clamp(5rem,16vw,12rem);
  font-weight: 300; letter-spacing: .15em; line-height: 1;
}
.loader-bar-wrap { width: 200px; height: 1px; background: var(--border); overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: var(--text); transition: width .05s linear; }
.loader-sub {
  font-size: .72rem; letter-spacing: .2em; color: var(--muted);
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s;
}
.loader-sub.visible { opacity: 1; transform: none; }

/* ── Nav ──────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem clamp(1.5rem,4vw,3rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
#nav.scrolled { background: rgba(8,8,8,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav-logo { font-family: var(--font-d); font-size: 1.4rem; font-weight: 400; letter-spacing: .2em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); transition: color .3s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:1px; background:var(--text);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta {
  color: var(--text); border: 1px solid var(--border);
  padding: .45rem 1.1rem; border-radius: 100px;
  transition: background .3s, color .3s;
}
.nav-links a.nav-cta:hover { background: var(--text); color: var(--bg); }
.nav-links a.nav-cta::after { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--text); transition: transform .3s, opacity .3s; }

/* ── Hero ─────────────────────────────────────────────── */
.s-hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: -200%; width: 400%; height: 400%;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .45; pointer-events: none; animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-5%,-5%)} 20%{transform:translate(-10%,5%)}
  30%{transform:translate(5%,-10%)} 40%{transform:translate(-5%,15%)} 50%{transform:translate(-10%,5%)}
  60%{transform:translate(15%,0)} 70%{transform:translate(0,10%)} 80%{transform:translate(-15%,0)} 90%{transform:translate(10%,5%)}
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,.85) 100%);
  pointer-events: none;
}
.hero-center {
  text-align: center; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-eyebrow { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.hero-ser {
  font-family: var(--font-d);
  font-size: clamp(6rem,20vw,18rem);
  font-weight: 300; letter-spacing: .1em; line-height: .9;
}
.hero-ser .char { display: inline-block; }
.hero-words { display: flex; align-items: center; gap: clamp(.6rem,2vw,1.4rem); margin-top: .5rem; }
.hw { font-family: var(--font-d); font-size: clamp(.8rem,2vw,1.2rem); font-weight: 300; letter-spacing: .35em; text-transform: uppercase; cursor: default; }
.hw-neve   { color: var(--neve); }
.hw-fenix  { color: var(--fenix); }
.hw-baleia { color: var(--baleia); }
.hw-dot    { color: var(--muted); font-size: .7rem; }
.hero-tagline { font-size: clamp(.75rem,1.2vw,.9rem); letter-spacing: .15em; color: var(--muted); margin-top: .8rem; }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-hint-text { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.scroll-hint-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); animation: spulse 2s ease-in-out infinite; }
@keyframes spulse { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(.5);opacity:1} }

/* ── LIVRO (venda) ────────────────────────────────────── */
.s-livro {
  position: relative;
  padding: clamp(5rem,10vw,8rem) 0;
  background: var(--surface);
  overflow: hidden;
}
.livro-bg-text {
  position: absolute;
  font-family: var(--font-d);
  font-size: clamp(14rem,30vw,28rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(255,255,255,.025);
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.livro-inner {
  width: min(90vw,1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

/* 3D book mockup */
.livro-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  padding: 3rem 0;
}
.lbook {
  position: relative;
  width: 240px; height: 330px;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(5deg);
  transition: transform .8s var(--ease);
  cursor: pointer;
  animation: book-float 6s ease-in-out infinite;
}
@keyframes book-float {
  0%,100%{transform:rotateY(-25deg) rotateX(5deg) translateY(0)}
  50%    {transform:rotateY(-25deg) rotateX(5deg) translateY(-12px)}
}
.lbook:hover { animation-play-state: paused; transform: rotateY(-35deg) rotateX(8deg); }

.lbook-face { position: absolute; backface-visibility: hidden; }
.lbook-front {
  width: 240px; height: 330px;
  transform: translateZ(22px);
  background: #1c1c1c;
  border-radius: 2px 5px 5px 2px;
  overflow: hidden;
  box-shadow: inset -3px 0 8px rgba(0,0,0,.4);
}
.lbook-cover-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px 0 0 2px;
}

.lbook-spine {
  width: 44px; height: 330px;
  transform: rotateY(90deg) translateZ(22px) translateX(-22px);
  background: #141414;
  display: flex; align-items: center; justify-content: center;
}
.lbook-spine span { font-family: var(--font-d); font-size: .58rem; letter-spacing: .2em; writing-mode: vertical-rl; color: var(--muted); }
.lbook-back   { width: 240px; height: 330px; transform: rotateY(180deg) translateZ(22px); background: #131313; }
.lbook-top    { width: 240px; height: 44px;  transform: rotateX(90deg) translateZ(-1px) translateY(-22px); background: #2a2a2a; }
.lbook-bottom { width: 240px; height: 44px;  transform: rotateX(-90deg) translateZ(330px) translateY(22px); background: #1e1e1e; }
.lbook-shadow {
  width: 240px; height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,.5) 0%, transparent 70%);
  margin-top: 2rem;
  filter: blur(8px);
}

/* livro info */
.livro-label  { font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--neve); margin-bottom: 1.2rem; }
.livro-title  { font-family: var(--font-d); font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 300; line-height: 1.15; margin-bottom: .8rem; }
.livro-author { font-family: var(--font-d); font-style: italic; font-size: 1.05rem; color: var(--muted); margin-bottom: 1.8rem; }
.livro-desc   { font-size: clamp(.88rem,1.1vw,.98rem); line-height: 1.85; color: rgba(240,236,228,.6); margin-bottom: 2rem; }
.livro-details { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2.4rem; }
.ldet { display: flex; justify-content: space-between; align-items: center; padding-bottom: .65rem; border-bottom: 1px solid var(--border); font-size: .82rem; }
.ldet-k { color: var(--muted); }
.ldet-v { color: var(--text); }

.btn-compre {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1rem 2.8rem;
  background: var(--text); color: var(--bg);
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 100px;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
}
.btn-compre:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(240,236,228,.15);
}

/* ── Sobre ────────────────────────────────────────────── */
.s-sobre { padding: clamp(6rem,12vw,10rem) 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.sobre-heading { font-family: var(--font-d); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 300; line-height: 1.25; margin-bottom: 2.5rem; }
.sobre-body p  { font-size: clamp(.88rem,1.1vw,1rem); line-height: 1.85; color: rgba(240,236,228,.65); margin-bottom: 1.4rem; }
.sobre-right   { display: flex; flex-direction: column; gap: 1rem; padding-top: 4rem; }

.chapter-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem 1.6rem; border: 1px solid var(--border); border-radius: 4px;
  transition: border-color .3s, background .3s; cursor: default;
}
.cc-neve   { border-left: 2px solid var(--neve); }
.cc-fenix  { border-left: 2px solid var(--fenix); }
.cc-baleia { border-left: 2px solid var(--baleia); }
.cc-neve:hover   { background: var(--neve-dim); }
.cc-fenix:hover  { background: var(--fenix-dim); }
.cc-baleia:hover { background: var(--baleia-dim); }
.cc-num   { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--muted); line-height: 1; min-width: 1.8rem; }
.cc-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 400; letter-spacing: .05em; margin-bottom: .4rem; }
.cc-neve  .cc-title { color: var(--neve); }
.cc-fenix .cc-title { color: var(--fenix); }
.cc-baleia.cc-title { color: var(--baleia); }
.cc-phrase { font-size: .82rem; font-style: italic; color: var(--muted); line-height: 1.5; }

/* ── Frame scrubbing sections ─────────────────────────── */
.scrub-wrap   { position: relative; }
.scrub-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.scrub-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.scrub-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem,5vw,4rem);
  pointer-events: none;
}
.neve-overlay   { background: linear-gradient(to top, rgba(8,8,8,.82) 0%, rgba(8,8,8,.25) 45%, transparent 70%); }
.fenix-overlay  { background: linear-gradient(to top, rgba(20,5,0,.88) 0%, rgba(20,5,0,.3) 45%, transparent 70%); }
.baleia-overlay { background: linear-gradient(to top, rgba(4,12,26,.88) 0%, rgba(4,12,26,.3) 45%, transparent 70%); }

.scrub-chapter { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1rem; opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.scrub-chapter.visible { opacity: 1; transform: none; }
.scrub-num  { font-family: var(--font-d); font-size: clamp(4rem,10vw,8rem); font-weight: 300; line-height: 1; color: rgba(240,236,228,.15); }
.neve-overlay   .scrub-num { color: rgba(184,223,245,.18); }
.fenix-overlay  .scrub-num { color: rgba(232,96,26,.18); }
.baleia-overlay .scrub-num { color: rgba(45,111,160,.18); }
.scrub-name { font-family: var(--font-d); font-size: clamp(1rem,2.5vw,1.5rem); font-weight: 300; letter-spacing: .15em; color: var(--text); }

.scrub-phrase {
  font-family: var(--font-d);
  font-size: clamp(1.6rem,4vw,3.2rem);
  font-weight: 300; font-style: italic; line-height: 1.3;
  color: var(--text); margin-bottom: 2rem; max-width: 700px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.scrub-phrase.visible { opacity: 1; transform: none; }
.scrub-progress-wrap { width: 120px; height: 1px; background: rgba(255,255,255,.12); margin-bottom: clamp(1rem,3vw,2rem); }
.scrub-progress-bar  { height: 100%; width: 0%; transition: width .08s linear; }
.neve-overlay   .scrub-progress-bar { background: var(--neve); }
.fenix-overlay  .scrub-progress-bar { background: var(--fenix); }
.baleia-overlay .scrub-progress-bar { background: var(--baleia); }

/* ── Ouça ─────────────────────────────────────────────── */
.s-ouca {
  position: relative;
  padding: clamp(6rem,12vw,9rem) 0;
  background: var(--surface);
  overflow: hidden;
}
.ouca-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 5vw; pointer-events: none;
}
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(29,185,84,.1); animation: rpulse 4s ease-in-out infinite; }
.r1 { width: 260px; height: 260px; animation-delay: 0s; }
.r2 { width: 400px; height: 400px; animation-delay: .7s; }
.r3 { width: 560px; height: 560px; animation-delay: 1.4s; }
@keyframes rpulse { 0%,100%{opacity:.2;transform:scale(1)} 50%{opacity:.55;transform:scale(1.04)} }

.ouca-inner {
  width: min(90vw,1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
}
.ouca-title { font-family: var(--font-d); font-size: clamp(3rem,7vw,6rem); font-weight: 300; letter-spacing: .05em; margin-bottom: 1rem; }
.ouca-sub   { font-size: .9rem; color: var(--muted); margin-bottom: 2rem; letter-spacing: .04em; }

.btn-spotify {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .9rem 2.2rem; background: var(--spotify); color: #000;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px;
  transition: background .3s, transform .3s var(--ease);
}
.btn-spotify:hover { background: #1ed760; transform: translateY(-3px) scale(1.02); }
.spotify-ico { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.ouca-embed { border-radius: 12px; overflow: hidden; }

/* ── Lançamento ───────────────────────────────────────── */
.s-lancamento { background: var(--bg); padding: clamp(6rem,12vw,10rem) 0 0; }
.lancamento-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem,6vw,5rem);
  align-items: start;
  padding-bottom: clamp(4rem,8vw,6rem);
}
.lancamento-title { font-family: var(--font-d); font-size: clamp(2.4rem,5vw,4.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.6rem; }
.lancamento-sub   { font-size: .9rem; line-height: 1.8; color: rgba(240,236,228,.55); margin-bottom: 2rem; }

/* event card */
.event-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  margin-bottom: 1.2rem;
}
.event-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--neve-dim);
  border: 1px solid rgba(184,223,245,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--neve);
}
.event-card-icon svg { width: 20px; height: 20px; }
.event-card-body { flex: 1; min-width: 0; }
.event-card-name  { font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--neve); margin-bottom: .3rem; }
.event-card-title { font-family: var(--font-d); font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: .4rem; }
.event-card-meta  { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(240,236,228,.5); }
.event-dot        { opacity: .4; }
.event-date, .event-time { white-space: nowrap; }

/* venue card */
.venue-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.venue-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(45,111,160,.12);
  border: 1px solid rgba(45,111,160,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--baleia);
}
.venue-icon svg { width: 20px; height: 20px; }
.venue-body { flex: 1; min-width: 0; }
.venue-name    { font-size: .65rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--baleia); margin-bottom: .35rem; }
.venue-address { font-size: .85rem; line-height: 1.6; color: rgba(240,236,228,.6); margin-bottom: .7rem; }
.venue-map-link {
  font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  color: rgba(240,236,228,.45);
  transition: color .25s;
}
.venue-map-link:hover { color: var(--baleia); }

/* CTA presença */
.lancamento-cta { position: relative; }

.cta-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.cta-card-glow {
  position: absolute; inset: -1px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,223,245,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card-inner {
  position: relative;
  padding: clamp(2.5rem,5vw,3.5rem);
  display: flex; flex-direction: column; gap: 1.6rem;
}

.cta-eyebrow {
  font-size: .65rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--neve);
}
.cta-heading {
  font-family: var(--font-d);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text);
}
.cta-body {
  font-size: .88rem; line-height: 1.8;
  color: rgba(240,236,228,.5);
  max-width: 38ch;
}

.cta-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  align-self: flex-start;
  padding: 1rem 2rem;
  background: var(--text); color: var(--bg);
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background .3s var(--ease), transform .3s var(--ease), gap .3s;
}
.cta-btn:hover {
  background: rgba(240,236,228,.88);
  transform: translateY(-2px);
  gap: 1rem;
}
.cta-btn-ico { width: 18px; height: 18px; flex-shrink: 0; }

.cta-details {
  display: flex; flex-direction: column; gap: .7rem;
  padding-top: .4rem;
  border-top: 1px solid var(--border);
}
.cta-det-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; color: rgba(240,236,228,.4);
}
.cta-det-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .6; }

.site-footer {
  padding: 2rem clamp(1.5rem,4vw,3rem);
  border-top: 1px solid var(--border);
  text-align: center; font-size: .7rem; letter-spacing: .1em; color: var(--muted);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .sobre-grid, .livro-inner, .ouca-inner, .lancamento-grid { grid-template-columns: 1fr; }
  .livro-mockup { order: -1; }
  .sobre-right { padding-top: 0; }
  .ouca-rings { display: none; }

  .nav-links {
    position: fixed; inset: 0;
    background: rgba(8,8,8,.97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity .4s;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.1rem; }
  .nav-burger { display: flex; position: relative; z-index: 101; }
  #nav.menu-open .nav-burger span:first-child { transform: rotate(45deg) translate(4px,4px); }
  #nav.menu-open .nav-burger span:last-child  { transform: rotate(-45deg) translate(4px,-4px); }
}
@media (max-width: 600px) {
  .hero-words { flex-wrap: wrap; justify-content: center; }
  .scrub-phrase { font-size: 1.4rem; }
  .lbook { width: 180px; height: 247px; }
  .lbook-front { width: 180px; height: 247px; }
  .lbook-spine { width: 33px; height: 247px; }
  .lbook-back  { width: 180px; height: 247px; }
  .lbook-top   { width: 180px; }
  .lbook-bottom{ width: 180px; }
}
