/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;

  --ink:       #1a1a1a;
  --accent:    #8b1a1a;   /* deep red — author branding */
  --muted:     #777;
  --grey-bg:   #f5f4f0;
  --white:     #fff;
  --border:    #e0ddd8;

  --max-w:     1100px;
  --nav-h:     64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul  { list-style: none; }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.eyebrow--accent { color: var(--accent); }

.label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.req { color: var(--accent); }


/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.center { text-align: center; }

.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.section--tight {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav__brand:hover { text-decoration: none; color: var(--accent); }

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  flex-wrap: wrap;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--accent);
  text-decoration: none;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Full-bleed image hero (home page) */
.hero--image {
  min-height: 70vh;
  background: #222;
}

.hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.85;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  padding-top: 2rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

/* ============================================================
   BOOK HERO (home page — photo + pills)
   ============================================================ */
.book-hero {
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-hero__photo-wrap {
  width: 100%;
  order: -1;
}

.book-hero__img {
  width: 100%;
  max-height: 65vw;
  object-fit: contain;
  display: block;
  opacity: 0.88;
}

.book-hero__pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 700px) {
  .book-hero {
    flex-direction: row;
    align-items: center;
    min-height: 80vh;
  }
  .book-hero__photo-wrap {
    order: 0;
    flex: 0 0 42%;
    max-width: 42%;
  }
  .book-hero__img {
    max-height: 80vh;
    width: 100%;
  }
  .book-hero__pills {
    flex: 1;
    gap: 1rem;
    padding: 2rem 1.5rem;
    width: auto;
  }
  .book-hero__pills--left {
    order: -1;
  }
  .book-hero__pills--right {
    order: 1;
  }
}

/* ============================================================
   PILL
   ============================================================ */
.pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.5rem 0.6rem 0.6rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-style: italic;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
  min-height: 100px;
  justify-content: flex-start;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.3s ease;
}
.pill:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
}
.pill:active {
  transform: translateY(-2px) scale(1.01);
}

.pill__cover {
  width: 86px;
  height: 86px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.pill span {
  flex: 1;
  text-align: center;
}

/* Colour variants */
.pill--amber {
  border-color: rgba(210,148,40,0.6);
  background: rgba(210,148,40,0.12);
}
.pill--amber:hover {
  background: rgba(210,148,40,0.28);
  border-color: rgba(210,148,40,0.9);
  box-shadow: 0 14px 36px rgba(210,148,40,0.25);
}

.pill--crimson {
  border-color: rgba(180,40,60,0.6);
  background: rgba(180,40,60,0.12);
}
.pill--crimson:hover {
  background: rgba(180,40,60,0.28);
  border-color: rgba(180,40,60,0.9);
  box-shadow: 0 14px 36px rgba(180,40,60,0.25);
}

.pill--indigo {
  border-color: rgba(80,100,210,0.6);
  background: rgba(80,100,210,0.12);
}
.pill--indigo:hover {
  background: rgba(80,100,210,0.28);
  border-color: rgba(80,100,210,0.9);
  box-shadow: 0 14px 36px rgba(80,100,210,0.25);
}

.pill--bronze {
  border-color: rgba(180,120,50,0.6);
  background: rgba(180,120,50,0.12);
}
.pill--bronze:hover {
  background: rgba(180,120,50,0.28);
  border-color: rgba(180,120,50,0.9);
  box-shadow: 0 14px 36px rgba(180,120,50,0.25);
}

.pill--teal {
  border-color: rgba(30,160,160,0.6);
  background: rgba(30,160,160,0.12);
}
.pill--teal:hover {
  background: rgba(30,160,160,0.28);
  border-color: rgba(30,160,160,0.9);
  box-shadow: 0 14px 36px rgba(30,160,160,0.25);
}

/* Simple band hero (inner pages) */
.hero--band {
  min-height: clamp(120px, 18vw, 200px);
  background: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-block: 2rem;
}
.hero--band .hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
}
.hero--band p {
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  margin-bottom: 0;
}


/* ============================================================
   FEATURE BLOCK (book spotlight)
   ============================================================ */
.feature {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.feature__cover {
  width: clamp(180px, 40%, 320px);
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.feature__tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.5rem;
}


/* ============================================================
   WORK ROWS (two-column book listings)
   ============================================================ */
.work {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
}

.work--reverse {
  grid-template-columns: 280px 1fr;
}
.work--reverse .work__text  { order: 2; }
.work--reverse .work__media { order: 1; }

.work__title {
  margin-bottom: 0.35rem;
}

.work__cover {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}


/* ============================================================
   COVER GRID (3-up thumbnails on Works page)
   ============================================================ */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cover-grid figure {
  text-align: center;
}
.cover-grid img {
  margin-inline: auto;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.cover-grid figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ============================================================
   PULL QUOTE
   ============================================================ */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  background: var(--grey-bg);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
  color: var(--ink);
}
.pullquote p { margin-bottom: 0.75rem; }
.pullquote p:last-child { margin-bottom: 0; }
.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
}


/* ============================================================
   REVIEW LIST (home page inline list)
   ============================================================ */
.review-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.8;
}


/* ============================================================
   REVIEWS SECTION (dark with background portrait)
   ============================================================ */
.reviews {
  position: relative;
  background: #111;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.reviews__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

.reviews__content {
  position: relative;
  z-index: 2;
}

.reviews h2 {
  color: var(--white);
  margin-bottom: 2.5rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.review-block {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-block: 1.75rem;
}
.review-block h4 {
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.review-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 820px;
  margin-bottom: 0;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}


/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.post {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.post:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.post__title {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  margin-bottom: 0.35rem;
}

.post__date {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--grey-bg);
  border-radius: 4px;
}
.sidebar h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-block: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.sidebar li:last-child { border-bottom: none; }


/* ============================================================
   RESEARCH PAGE
   ============================================================ */
.research h3 {
  font-size: 1.15rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border);
  color: var(--accent);
}
.research h3:first-child { margin-top: 0; }

.research ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.research li {
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
  line-height: 1.6;
}

.research p strong { color: var(--ink); }

.intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}


/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  background: #6e1515;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--amazon {
  background: #FF9900;
  color: #111 !important;
}
.btn--amazon:hover {
  background: #e68a00;
  color: #111 !important;
}


/* ============================================================
   IMAGE PLACEHOLDERS (.ph)
   ============================================================ */
.ph {
  background: var(--grey-bg);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--sans);
  padding: 1rem;
  min-height: 200px;
  border-radius: 3px;
  word-break: break-all;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding-block: 2.5rem;
  margin-top: auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.25rem;
  list-style: none;
}
.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer__note {
  font-size: 0.78rem;
  margin-bottom: 0;
}


/* ============================================================
   BOOK PAGE HEADER (.bph)
   ============================================================ */
.bph {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.bph__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.bph__cover {
  width: 100%;
  max-width: 260px;
  flex-shrink: 0;
}
.bph__cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.bph__genre {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}
.bph__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.bph__lead {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .bph__inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .bph__cover { max-width: 280px; }
  .bph__meta { flex: 1; padding-top: 0.5rem; }
}

/* Stacked variant — large cover on top, text below */
.bph--stacked {
  padding: 0 0 clamp(2rem, 4vw, 3.5rem);
}
.bph--stacked .bph__inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 0;
}
.bph--stacked .bph__cover {
  width: 100%;
  max-width: 100%;
}
.bph--stacked .bph__cover img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  object-position: center top;
  box-shadow: 0 32px 80px rgba(0,0,0,0.9);
}
.bph--stacked .bph__meta {
  max-width: 760px;
  width: 100%;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 0;
}
@media (min-width: 700px) {
  .bph--stacked .bph__inner { flex-direction: column; align-items: center; }
  .bph--stacked .bph__cover img { max-height: 90vh; }
}

/* ============================================================
   BOOK PAGE CONTENT (.bpc)
   ============================================================ */
.bpc {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.bpc__body { flex: 1; }
.bpc__body p { text-align: left; }
.bpc__sidebar { }
@media (min-width: 700px) {
  .bpc { flex-direction: row; gap: 4rem; }
  .bpc__sidebar { flex: 0 0 280px; }
}

/* ============================================================
   LANDING PAGE OVERLAY
   ============================================================ */
.book-hero__photo-wrap { position: relative; }
.book-hero__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4rem 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  text-align: center;
  pointer-events: none;
}
.book-hero__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.book-hero__tagline-text {
  color: rgba(255,255,255,0.65);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */
.newsletter-band {
  background: var(--grey-bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.newsletter-band h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.newsletter-band p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ============================================================
   FOOTER SOCIAL
   ============================================================ */
.footer__social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer__social a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer__links { justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
@media (min-width: 700px) {
  .about-grid { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .about-photo { flex: 0 0 260px; }
  .about-text { flex: 1; }
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { text-align: left; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   CONSENT BANNER
   ============================================================ */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 25, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.consent-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.consent-banner__text {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

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

.consent-banner__btn {
  font-family: var(--sans);
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.consent-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}
.consent-banner__btn--accept:hover {
  background: #FF8C00;
  transform: translateY(-1px);
}

.consent-banner__btn--decline {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.consent-banner__btn--decline:hover {
  background: rgba(255,255,255,0.25);
}

.consent-banner__link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.consent-banner__link:hover {
  color: #FF8C00;
}

/* GDPR variant - more prominent */
.consent-banner--gdpr .consent-banner__btn--decline {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

/* North America variant - softer */
.consent-banner--na {
  background: rgba(20, 20, 25, 0.95);
}
.consent-banner--na .consent-banner__text {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .consent-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .consent-banner__btns {
    justify-content: flex-start;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .work,
  .work--reverse {
    grid-template-columns: 1fr;
  }
  .work--reverse .work__text,
  .work--reverse .work__media { order: unset; }

  .work__media { max-width: 280px; }

  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav__links {
    display: none;
  }
  .nav__brand { font-size: 1.1rem; }

  .hero--image { min-height: 260px; }

  .cover-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
  }
}
