/* ============================================================
   Anne Attias — author website
   Stylesheet
   ============================================================ */

:root {
  /* Palette — Bold Blocks: clean white base with dramatic full-bleed
     red and navy section bands. Vibrant, magazine-energy. */
  --c-bg: #FFFFFF;             /* clean white */
  --c-bg-alt: #F5F2EA;         /* subtle cream-grey for small fills (form inputs, cover fallback) */
  --c-bg-deep: #ECE8DC;        /* deeper neutral for the rare component that needs it */
  --c-ink: #15181F;            /* near-black with a hint of navy */
  --c-ink-soft: #3F4855;       /* slate */
  --c-ink-faint: #7B8390;
  --c-primary: #1B4B6B;        /* deep marine navy */
  --c-primary-light: #2A6A93;
  --c-primary-deep: #103047;
  --c-accent: #C8362A;         /* warm vermilion red */
  --c-accent-light: #DA5A45;
  --c-accent-deep: #962A22;
  --c-brass: #D49A2C;          /* vivid ochre gold */
  --c-brass-light: #E8B752;
  --c-line: #E2DDD0;           /* very soft warm grey for hairlines on white */

  /* Type */
  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--c-accent); }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Container ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container--narrow { max-width: 760px; }
.container--medium { max-width: 960px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-primary);
  margin: 0 0 0.4em;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 36;
}
h1 { font-size: clamp(40px, 6.5vw, 84px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow--accent { color: var(--c-primary); }
.eyebrow--gold { color: var(--c-brass); }
.lede { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.45; color: var(--c-ink-soft); font-weight: 400; }

/* ---------- Header ---------- */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { line-height: 1; }
.brand a { color: var(--c-primary); display: block; }
.brand__name { font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.brand__tag { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-accent); margin-top: 4px; display: block; font-weight: 600; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; color: var(--c-ink); position: relative; padding: 6px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--c-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav a:hover, .nav a.is-active { color: var(--c-primary); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--c-primary);
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav {
    position: fixed;
    inset: 73px 0 0;
    flex-direction: column;
    background: var(--c-bg);
    padding: 32px var(--pad-x);
    gap: 18px;
    align-items: flex-start;
    border-top: 1px solid var(--c-line);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 22px; font-family: var(--f-display); }
  .nav a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 9vw, 120px); }
.hero__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.hero__title { margin: 0; }
.hero__lede { margin-top: 26px; max-width: 540px; }
.hero__actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__shelf {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 520px;
  height: 520px;
}
.hero__shelf img {
  position: absolute;
  width: 44%;
  height: auto;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(31,26,28,0.24), 0 8px 16px rgba(31,26,28,0.14);
  border-radius: 2px;
}
.hero__shelf img:nth-child(1) { left: 0;    top: 60px;  transform: rotate(-5deg); z-index: 1; }
.hero__shelf img:nth-child(2) { left: 28%;  top: 0;     transform: rotate(1deg);  z-index: 3; width: 48%; }
.hero__shelf img:nth-child(3) { right: 0;   top: 80px;  transform: rotate(6deg);  z-index: 2; }

@media (max-width: 820px) {
  .hero__shelf { min-height: 380px; height: 380px; max-width: 360px; }
  .hero__shelf img:nth-child(1) { top: 45px; }
  .hero__shelf img:nth-child(2) { top: 0; }
  .hero__shelf img:nth-child(3) { top: 55px; }
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__shelf { order: -1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--c-primary);
  color: var(--c-bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--c-primary);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--c-primary-deep); color: var(--c-bg); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--c-primary); }
.btn--ghost:hover { background: var(--c-primary); color: var(--c-bg); }
.btn--lg { padding: 18px 36px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Section atoms ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--band {
  background: var(--c-accent);
  color: rgba(255,255,255,0.92);
}
.section--band h1,
.section--band h2,
.section--band h3,
.section--band h4 { color: #FFF; }
.section--band .lede { color: rgba(255,255,255,0.88); }
.section--band .eyebrow { color: var(--c-brass-light); }
.section--band .rule { background: var(--c-brass-light); }
.section--band .book-card { color: rgba(255,255,255,0.92); }
.section--band .book-card__title { color: #FFF; }
.section--band .book-card__genre { color: var(--c-brass-light); }
.section--band .book-card__year { color: rgba(255,255,255,0.7); }
.section--band .book-card__tease { color: rgba(255,255,255,0.85); }
.section--band .btn--ghost { color: #FFF; border-color: rgba(255,255,255,0.8); }
.section--band .btn--ghost:hover { background: #FFF; color: var(--c-accent); border-color: #FFF; }

.section--deep { background: var(--c-primary); color: var(--c-bg); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #FFF; }
.section--deep .lede { color: rgba(255,255,255,0.85); }
.section--deep .eyebrow { color: var(--c-brass-light); }
.section--deep .btn--ghost { color: #FFF; border-color: rgba(255,255,255,0.85); }

/* Reader testimonial — white section sitting between the navy author-quote band and the footer */
.section--testimonial { padding: clamp(36px, 5vw, 56px) 0; background: var(--c-bg); }
.section--testimonial .eyebrow { margin-top: 0; }
.section--testimonial > .container > *:last-child { margin-bottom: 0; }
/* When a testimonial section is the page's last content block, drop the footer's own top margin
   so the visible whitespace above and below the quote stays symmetrical. */
body:has(.section--testimonial) .site-footer { margin-top: 0; }
.section--testimonial .container { position: relative; }
.testimonial {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  color: var(--c-primary);
  margin: 24px 0 26px;
  position: relative;
}
.testimonial::before {
  content: '“';
  display: block;
  font-family: var(--f-display);
  font-size: clamp(72px, 10vw, 110px);
  line-height: 0.7;
  color: var(--c-accent);
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
}
.testimonial__attrib {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 600;
  margin: 0;
}
.testimonial__attrib em { font-style: italic; text-transform: none; letter-spacing: 0.02em; font-weight: 400; }
.section--deep .btn--ghost:hover { background: #FFF; color: var(--c-primary); border-color: #FFF; }

.quote-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 28px;
  border: 2px solid var(--c-brass);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.section__head--centred { margin-left: auto; margin-right: auto; text-align: center; }
.section__title { margin: 0 0 16px; }

.rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-accent);
  margin: 0 0 24px;
  border: 0;
}
.rule--centred { margin-left: auto; margin-right: auto; }
.rule--gold { background: var(--c-brass); }

/* ---------- Featured books strip (home) ---------- */
.featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 980px) { .featured { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
@media (max-width: 520px) { .featured { grid-template-columns: 1fr; } }

/* ---------- Book card ---------- */
.book-card { display: block; color: var(--c-ink); }
.book-card__cover {
  aspect-ratio: 5 / 8;
  background: var(--c-bg-alt);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(31,26,28,0.18), 0 4px 10px rgba(31,26,28,0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.book-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.book-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card:hover .book-card__cover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(31,26,28,0.22), 0 8px 14px rgba(31,26,28,0.12); }
.book-card:hover .book-card__cover::after { opacity: 1; }

.book-card__meta { display: flex; gap: 12px; align-items: baseline; margin: 22px 0 6px; }
.book-card__genre { font-family: var(--f-body); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-accent); }
.book-card__year { font-size: 13px; color: var(--c-ink-faint); }
.book-card__title { font-family: var(--f-display); font-size: clamp(20px, 2vw, 24px); font-weight: 600; margin: 0 0 8px; color: var(--c-primary); line-height: 1.15; letter-spacing: -0.01em; }
.book-card__tease { font-size: 15px; color: var(--c-ink-soft); line-height: 1.55; margin: 0; }

/* ---------- All-books index ---------- */
.book-index { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 40px); }

/* ---------- Book detail page ---------- */
.book-detail { padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 8vw, 112px); }
.book-detail__back { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-soft); margin-bottom: 40px; display: inline-flex; align-items: center; gap: 6px; }
.book-detail__back:hover { color: var(--c-primary); }

.book-detail__grid { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
@media (max-width: 800px) { .book-detail__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.book-detail__cover { aspect-ratio: 5 / 8; box-shadow: 0 24px 50px rgba(31,26,28,0.22), 0 8px 14px rgba(31,26,28,0.12); overflow: hidden; }
.book-detail__cover img { width: 100%; height: 100%; object-fit: cover; }

.book-detail__meta { display: flex; gap: 14px; align-items: baseline; margin-bottom: 14px; }
.book-detail__genre { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-accent); }
.book-detail__year { font-size: 14px; color: var(--c-ink-faint); }
.book-detail__title { font-size: clamp(36px, 5vw, 56px); margin: 0 0 6px; line-height: 1.05; }
.book-detail__strap { font-family: var(--f-display); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--c-ink-soft); margin: 0 0 32px; max-width: 480px; }
.book-detail__body { font-size: 17px; line-height: 1.75; max-width: 580px; }
.book-detail__body p { margin-bottom: 1.2em; }

.book-detail__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Coming Soon treatment — gold badge on cover, notice block in place of buy button */
.book-card__cover { position: relative; }
.book-card__badge {
  position: absolute;
  top: 14px;
  left: -6px;
  background: var(--c-brass);
  color: #1B1308;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  z-index: 3;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.book-card__badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--c-brass-deep, #9D6F1A);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.book-detail__cover { position: relative; }
.book-detail__badge {
  position: absolute;
  top: 22px;
  left: -10px;
  background: var(--c-brass);
  color: #1B1308;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 18px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.book-detail__year--coming { color: var(--c-brass); font-weight: 600; }
.coming-notice {
  margin-top: 36px;
  padding: 22px 26px;
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-brass);
}
.coming-notice__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-brass);
  margin-bottom: 10px;
}
.coming-notice p { margin: 0; color: var(--c-ink-soft); line-height: 1.55; }
.coming-notice a { color: var(--c-primary); }
.book-detail__note { margin-top: 32px; font-size: 13px; color: var(--c-ink-faint); font-style: italic; }

/* ---------- About page ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; padding-top: clamp(40px, 6vw, 80px); }
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero__portrait { aspect-ratio: 3 / 4; max-width: 420px; width: 100%; overflow: hidden; box-shadow: 0 20px 44px rgba(31,26,28,0.2); }
.about-hero__portrait img, .about-hero__portrait svg { width: 100%; height: 100%; object-fit: cover; }

.prose { font-size: 17px; line-height: 1.8; max-width: 620px; }
.prose p { margin-bottom: 1.3em; }
.prose p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4.2em;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--c-primary);
  font-weight: 600;
}

.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--c-primary);
  border-top: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  padding: 36px 0;
  margin: 56px 0;
  max-width: 720px;
}
.pullquote cite { display: block; margin-top: 16px; font-style: normal; font-family: var(--f-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent); font-weight: 700; }

.themes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 56px; }
.themes__item h4 { font-size: 19px; margin-bottom: 8px; color: var(--c-primary); }
.themes__item p { font-size: 15px; color: var(--c-ink-soft); line-height: 1.6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 22px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-primary); }
.form__field input,
.form__field textarea {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  border-radius: 0;
  font-family: inherit;
}
.form__field input:focus,
.form__field textarea:focus { outline: none; border-color: var(--c-primary); background: #fff; }
.form__field textarea { min-height: 160px; resize: vertical; }
.form__hint { font-size: 13px; color: var(--c-ink-faint); }
.form__status { font-size: 14px; padding: 14px 16px; margin-bottom: 8px; }
.form__status--ok { background: rgba(107, 66, 38, 0.08); color: var(--c-accent); border-left: 3px solid var(--c-accent); }
.form__status--err { background: rgba(174, 40, 40, 0.06); color: #8B2929; border-left: 3px solid #8B2929; }

/* ---------- Policy pages ---------- */
.policy { padding: clamp(40px, 6vw, 80px) 0; }
.policy h2 { margin-top: 56px; }
.policy h3 { font-size: 22px; margin-top: 36px; }
.policy ul { padding-left: 22px; margin-bottom: 1.4em; }
.policy li { margin-bottom: 6px; }
.policy__updated { font-size: 13px; color: var(--c-ink-faint); margin-bottom: 32px; letter-spacing: 0.04em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary);
  color: var(--c-bg);
  padding: 72px 0 32px;
  margin-top: clamp(64px, 8vw, 120px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,231,212,0.18);
}
@media (max-width: 720px) { .site-footer__grid { grid-template-columns: 1fr; gap: 40px; } }

.site-footer h4 { color: var(--c-brass-light); font-size: 12px; font-family: var(--f-body); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer__brand .brand__name { font-size: 26px; color: var(--c-bg); }
.site-footer__brand .brand__tag { color: var(--c-brass-light); }
.site-footer p { color: rgba(240,231,212,0.78); font-size: 15px; line-height: 1.7; margin-top: 20px; max-width: 420px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer a { color: rgba(240,231,212,0.78); font-size: 15px; }
.site-footer a:hover { color: var(--c-bg); }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(240,231,212,0.6);
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__base a { font-size: 13px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 540px;
  background: var(--c-primary);
  color: var(--c-bg);
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(31,26,28,0.32);
  z-index: 100;
  font-size: 14px;
  line-height: 1.55;
  transform: translateY(120%);
  transition: transform 0.45s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie p { margin: 0 0 14px; color: rgba(240,231,212,0.92); }
.cookie p a { color: var(--c-brass-light); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
  padding: 9px 18px;
  background: var(--c-bg);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--c-bg);
  transition: background 0.2s, color 0.2s;
}
.cookie__btn:hover { background: transparent; color: var(--c-bg); }
.cookie__btn--ghost { background: transparent; color: var(--c-bg); }
.cookie__btn--ghost:hover { background: var(--c-bg); color: var(--c-primary); }

/* ---------- Utility ---------- */
.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;
}
.text-centre { text-align: center; }
