﻿/* ============================================================
   BLACK DRAGON TATTOO â€” styles.css
   Ink black / blood red / aged paper â€” Cinzel + Inter + Roboto Mono
   ============================================================ */

/* ---------------- Tokens ---------------- */
:root {
  --ink:          #0d0d0d;
  --ink-near:     #111111;
  --ink-raise:    #161616;
  --red:          #7a0f0f;
  --red-bright:   #9e1515;
  --paper:        #e8dece;
  --body:         #c8c0b6;
  --faded:        #6b6560;
  --white:        #ffffff;
  --body-70:      rgba(200, 192, 182, 0.7);
  --body-55:      rgba(200, 192, 182, 0.55);
  --body-35:      rgba(200, 192, 182, 0.35);
  --line:         rgba(200, 192, 182, 0.12);
  --pad-x:        clamp(1.25rem, 4.5vw, 4.5rem);
  --font-display: "Cinzel", "Georgia", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Roboto Mono", ui-monospace, "Courier New", monospace;
  --ease-snap:    cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------- Reset / base ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: var(--ink);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

section[id],
footer[id] {
  scroll-margin-top: 4.5rem;
}

/* ---------------- Film grain overlay ---------------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  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-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

/* ---------------- Utilities ---------------- */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  padding: 0.8em 1.4em;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-110%);
  transition: transform 0.25s var(--ease-snap);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
}

.sec-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--body-55);
  text-transform: uppercase;
}

.sec-label::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--red-bright);
  margin-right: 0.85rem;
  vertical-align: middle;
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(2.8rem, 8vw, 7.25rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  margin-top: 1.25rem;
}

.sec-head {
  margin-bottom: clamp(3rem, 7vh, 5.5rem);
}

/* Ink accent chip â€” replaces hazard stripes */
.ink-chip {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.6rem;
}

.vskew {
  will-change: transform;
}

/* ---------------- Nav ---------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.25rem;
  padding: 0 var(--pad-x);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.86));
  border-bottom: 1px solid var(--line);
  will-change: transform;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--paper);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand-thin {
  color: var(--red-bright);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
  padding: 0.35em 0;
  font-family: var(--font-mono);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-snap);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--paper);
  border: 1px solid var(--red);
  padding: 0.55em 1.15em;
  transition: background-color 0.3s var(--ease-snap), color 0.3s var(--ease-snap), border-color 0.3s var(--ease-snap);
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}

/* ---------------- 01 / Hero ---------------- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: sepia(18%) contrast(1.05) saturate(0.7);
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 62% 42%, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.55) 55%, rgba(13, 13, 13, 0.94) 100%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0) 22%, rgba(13, 13, 13, 0) 65%, rgba(13, 13, 13, 0.94) 100%);
}

.hero-idx {
  position: absolute;
  z-index: 2;
  top: 5.75rem;
  left: var(--pad-x);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--body-55);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  width: 100%;
  padding: 6.5rem var(--pad-x) 4.5rem;
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--body-70);
  margin-bottom: 1.5rem;
}

.hero-head {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9.5vw, 8rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-line-inner {
  display: inline-block;
  will-change: transform;
}

.hero-line-red {
  color: var(--red-bright);
}

.hero-sub {
  margin-top: 2rem;
  max-width: 46ch;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--body);
  line-height: 1.7;
}

/* ----- Dragon SVG ----- */
.dragon-wrap {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
  opacity: 0.9;
}

#dragon-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.dragon-path {
  fill: none;
  stroke: rgba(122, 15, 15, 0.6);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* ----- Scroll cue ----- */
.hero-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cue-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--body-55);
}

.cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--red-bright), transparent);
  transform-origin: top center;
}

/* ---------------- 02 / Services ---------------- */
.services {
  min-height: 100svh;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  background: var(--ink-near);
  /* subtle noise texture */
  background-image:
    url(data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E),
    none;
  background-color: var(--ink-near);
}

.service-rows {
  border-bottom: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 4vh, 2.75rem) 0;
  border-top: 1px solid var(--line);
}

.service-idx {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--red-bright);
  padding-top: 0.5em;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: 0.04em;
}

.service-title-text {
  position: relative;
  display: inline-block;
}

/* Blood red underline wipe on hover */
.service-title-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.07em;
  height: 0.08em;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-snap);
}

.service-row:hover .service-title-text::after,
.service-row:focus-within .service-title-text::after {
  transform: scaleX(1);
}

.service-meta {
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--body-55);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--body);
  max-width: 46ch;
  padding-top: 0.45em;
}

/* ---------------- 03 / Studio ---------------- */
.studio {
  background: var(--ink);
}

.studio-media {
  position: relative;
  height: 62svh;
  overflow: hidden;
  will-change: clip-path;
}

.studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) saturate(0.75) contrast(1.08);
}

.studio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.65) 0%, rgba(13, 13, 13, 0.18) 35%, rgba(13, 13, 13, 0.78) 100%),
    linear-gradient(90deg, rgba(122, 15, 15, 0.08), transparent 55%);
}

.studio-overlay {
  position: relative;
  padding: 2.75rem var(--pad-x) 4.5rem;
}

.studio-label {
  display: block;
  margin-bottom: 2rem;
}

.st-note {
  max-width: 26rem;
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.3rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--body);
  background: rgba(13, 13, 13, 0.72);
  border-left: 2px solid var(--red);
}

.st-note-key {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--red-bright);
  margin-bottom: 0.55rem;
}

.studio-title {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  color: var(--paper);
}

@media (min-width: 768px) {
  .studio {
    min-height: 100svh;
  }

  .studio-media {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .studio-overlay {
    position: absolute;
    inset: 0;
    padding: 0;
  }

  .studio-label {
    position: absolute;
    top: 7%;
    left: var(--pad-x);
    margin: 0;
  }

  .st-note {
    position: absolute;
    margin: 0;
  }

  .st-note-1 {
    top: 17%;
    left: var(--pad-x);
  }

  .st-note-2 {
    top: 38%;
    right: var(--pad-x);
  }

  .st-note-3 {
    bottom: 11%;
    left: var(--pad-x);
  }

  .studio-title {
    position: absolute;
    right: var(--pad-x);
    bottom: 8%;
    margin: 0;
    text-align: right;
  }
}

/* ---------------- 04 / Approach / Manifesto ---------------- */
.approach {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  background: var(--ink-near);
  background-image:
    url(data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E),
    none;
  background-color: var(--ink-near);
}

.manifesto-text {
  margin-top: 2.5rem;
  max-width: 1150px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.4vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.manifesto-sub {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  margin-left: clamp(0rem, 28vw, 22rem);
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--body);
}

/* ---------------- 05 / Numbers ---------------- */
.numbers {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  background: var(--ink-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-mono);
}

.stat-num {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--red-bright);
}

.stat-label {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--body-55);
}

/* ---------------- 06 / Reviews ---------------- */
.reviews {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  background: var(--ink);
}

.reviews > .sec-label {
  margin-bottom: clamp(3rem, 8vh, 5rem);
}

.reviews-inner {
  position: relative;
  max-width: 62rem;
}

.quote + .quote {
  margin-top: 3.5rem;
}

/* Stacked for the pinned crossfade â€” applied by JS on desktop only */
.reviews.reviews-pinned .reviews-inner {
  display: grid;
}

.reviews.reviews-pinned .quote {
  grid-area: 1 / 1;
  margin-top: 0;
}

.quote-text {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.38;
  color: var(--paper);
  font-family: var(--font-display);
}

.quote-mark {
  font-family: var(--font-display);
  color: var(--red-bright);
  margin-right: 0.3rem;
}

.quote-cite {
  margin-top: 2.25rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--body-55);
}

.quote-cite cite {
  font-style: normal;
  color: var(--paper);
}

/* ---------------- 07 / Areas ---------------- */
.areas {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  background: var(--ink-near);
}

.areas-intro {
  margin-top: 1.25rem;
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  color: var(--body);
}

.area-rows {
  border-bottom: 1px solid var(--line);
}

.area-row {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2.6vh, 1.9rem) 0;
  border-top: 1px solid var(--line);
}

/* Red marker bar slides in on hover */
.area-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 3px;
  margin-top: -1.5px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-snap);
}

.area-row:hover::before {
  transform: scaleX(1);
}

.area-name {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 7.5vw, 6.75rem);
  line-height: 1;
  color: var(--faded);
  letter-spacing: 0.04em;
  transition: transform 0.5s var(--ease-snap), color 0.4s var(--ease-snap);
}

.area-row:hover .area-name {
  transform: translateX(2.9rem);
  color: var(--paper);
}

.area-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--body-55);
  white-space: nowrap;
  transition: color 0.4s var(--ease-snap);
}

.area-row:hover .area-meta {
  color: var(--red-bright);
}

/* ---------------- 08 / Booking + footer ---------------- */
.book {
  padding: clamp(7rem, 15vh, 11rem) var(--pad-x) 2.5rem;
  background: var(--ink);
  overflow: hidden;
}

/* Thin ink rule at top of footer instead of hazard stripes */
.ink-rule {
  height: 3px;
  background: var(--red);
}

.ink-rule-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.book-head {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.book-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.book-line-inner {
  display: inline-block;
  will-change: transform;
}

.book-accent {
  color: var(--red-bright);
}

.book-email {
  position: relative;
  display: inline-block;
  margin-top: clamp(2rem, 5vh, 3.25rem);
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--paper);
  padding-bottom: 0.4em;
  transition: color 0.35s var(--ease-snap);
}

.book-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.book-email:hover,
.book-email:focus-visible {
  color: var(--red-bright);
}

.book-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  margin-top: clamp(5rem, 12vh, 8rem);
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.book-col-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.book-col p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--body);
}

.book-col a {
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-snap), border-color 0.3s var(--ease-snap);
}

.book-col a:hover,
.book-col a:focus-visible {
  color: var(--paper);
  border-color: var(--red-bright);
}

.book-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: clamp(4rem, 9vh, 6rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--body-35);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .book-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    padding-top: 7.5rem;
    padding-bottom: 6.5rem;
  }

  /* Hide dragon on mobile â€” too small to read */
  .dragon-wrap {
    display: none;
  }

  .service-row {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

  .service-desc {
    grid-column: 2;
    padding-top: 0;
  }

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

  .manifesto-sub {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .hero-idx {
    top: 5.25rem;
  }

  .area-row:hover .area-name {
    transform: translateX(1.6rem);
  }

  .area-row::before {
    width: 1.1rem;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-foot {
    flex-direction: column;
  }

  .nav-cta {
    font-size: 0.7rem;
    padding: 0.5em 0.8em;
  }

  .nav-brand {
    font-size: 0.9rem;
  }
}

/* ---------------- Reduced motion ---------------- */
/* body.no-motion is added by JS under prefers-reduced-motion:
   everything renders in its final, static state */
.no-motion .cue-line {
  display: none;
}

.no-motion .dragon-path {
  stroke-dashoffset: 0;
}

.no-motion .reviews.reviews-pinned .reviews-inner {
  display: block;
}

.no-motion .reviews.reviews-pinned .quote + .quote {
  margin-top: 3.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
