/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --snow:        #ffffff;
  --licorice:    #000000;
  --candy:       #b00e2f;
  --peach:       #fee5ca;

  --f-display:   'Bebas Neue', Georgia, serif;
  --f-body:      'Inter', Arial, sans-serif;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--snow);
  color: var(--licorice);
  overflow-x: hidden;
}

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--licorice);
  text-decoration: none;
}
.nav-link {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--licorice);
  text-decoration: none;
  border: 1px solid var(--licorice);
  padding: 9px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--licorice); color: var(--snow); }

/* ─── REVEAL CLIP ────────────────────────────────────────────────── */
.rc {
  display: block;
  overflow: hidden;
  line-height: inherit;
}
.rc i {
  display: block;
  font-style: normal;
  will-change: transform;
  transform: translateY(105%);
  transition: transform 1s var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.rc.revealed i { transform: translateY(0); }
html.hero-go .hero .rc i { transform: translateY(0); }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 48%, rgba(176,14,47,0.08) 0%, transparent 65%);
  animation: heroBgPulse 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroBgPulse {
  from { opacity: 0.35; transform: scale(0.9); }
  to   { opacity: 1;    transform: scale(1.15); }
}

@keyframes heroTagFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

html.hero-go .hero-tag {
  animation-delay: 1.5s;
}

@keyframes heroLinePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

html.hero-go .hero-line {
  animation: heroLinePulse 3.5s ease-in-out infinite;
  animation-delay: 2.2s;
}

.hero-inner {
  will-change: transform;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--candy);
  margin-bottom: 20px;
}
.hero-tag .rc { line-height: 1.8; }

.hero-name {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(88px, 15vw, 168px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-name .rc { line-height: 0.88; padding-bottom: 0.08em; }
.hero-name--black { color: var(--licorice); }
.hero-name--red   { color: var(--candy); }

.hero-sub {
  margin-top: 28px;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(0,0,0,0.45);
  max-width: 360px;
  margin-inline: auto;
}
.hero-sub .rc { line-height: 1.55; }

.hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--candy);
  height: 0;
  transition: height 1.2s var(--ease-expo);
  transition-delay: 0.8s;
}
html.hero-go .hero-line { height: 56px; }

/* ─── SHARED SECTION ATOMS ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--candy);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--f-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.88;
}

/* ─── FADE-UP ────────────────────────────────────────────────────── */
.fu {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.fu.visible { opacity: 1; transform: translateY(0); }

/* ─── COUNTDOWN SECTION ──────────────────────────────────────────── */
.countdown-section {
  background: var(--peach);
  padding: 90px 48px;
  text-align: center;
}

.mystery-text-wrap {
  min-height: 4.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
}

.mystery-text {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--licorice);
  opacity: 1;
  transition: opacity 0.7s var(--ease-std);
  max-width: 700px;
}
.mystery-text.fade-out { opacity: 0; }
.mystery-text em { color: var(--candy); font-style: normal; }

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.cd-card {
  background: var(--snow);
  border-radius: 36px;
  padding: 32px 36px;
  min-width: 128px;
}
.cd-num {
  display: block;
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--licorice);
}
.cd-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-top: 8px;
}

.cd-expired {
  display: none;
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cd-expired em { color: var(--candy); font-style: normal; }

/* ─── BOOK SECTION ───────────────────────────────────────────────── */
.book-section {
  background: var(--snow);
  padding: 100px 48px;
  text-align: center;
}
.book-title {
  font-size: clamp(56px, 8vw, 104px);
  max-width: 760px;
  margin: 0 auto 28px;
}
.book-title .accent { color: var(--candy); }
.book-title .rc { padding-bottom: 0.06em; }

.book-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.45);
  max-width: 400px;
  margin: 0 auto 48px;
}

.btn-pill {
  display: inline-block;
  background: var(--candy);
  color: var(--snow);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  border-radius: 9999px;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}
.btn-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(176,14,47,0.28);
}

/* ─── RECOMMENDED BOOKS SECTION ─────────────────────────────────── */
.books-section {
  background: var(--peach);
  padding: 100px 48px;
  text-align: center;
}
.books-title {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 760px;
  margin: 0 auto 56px;
}
.books-title .rc     { padding-bottom: 0.06em; }
.books-title .accent { color: var(--candy); }

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.book-card {
  background: var(--snow);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--licorice);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
  text-align: left;
}
.book-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13);
}

.book-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.book-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-card-title {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--licorice);
}

.book-card-desc {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0,0,0,0.45);
}

/* ─── NAV LINKS WRAPPER ──────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── GHOST BUTTON ───────────────────────────────────────────────── */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--licorice);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--licorice);
  padding: 16px 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--licorice); color: var(--snow); }

/* ─── BLOG SECTION (home) ────────────────────────────────────────── */
.blog-section {
  background: var(--peach);
  padding: 100px 48px;
  text-align: center;
  min-height: 200px;
}

.blog-title {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 760px;
  margin: 0 auto 56px;
}
.blog-title .accent { color: var(--candy); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: var(--snow);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  color: var(--licorice);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
  text-align: left;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-date {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--candy);
}

.blog-card-title {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--licorice);
}

.blog-card-desc {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0,0,0,0.5);
  flex: 1;
}

.blog-more-wrap {
  margin-top: 48px;
}

/* ─── BLOG MODE (hide home sections) ────────────────────────────── */
body.blog-mode .hero,
body.blog-mode .countdown-section,
body.blog-mode .book-section,
body.blog-mode .blog-section {
  display: none;
}

#blog-view {
  min-height: 100vh;
  background: var(--snow);
}

/* ─── BLOG LISTING ───────────────────────────────────────────────── */
.blog-listing {
  padding: 140px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-listing-header {
  text-align: center;
  margin-bottom: 64px;
}

.blog-listing-title {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.88;
  margin-top: 16px;
}
.blog-listing-title .accent { color: var(--candy); }

/* ─── POST DETAIL ────────────────────────────────────────────────── */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 48px 120px;
}

.post-back-link {
  display: inline-block;
  background: transparent;
  border: none;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--candy);
  cursor: pointer;
  padding: 0;
  margin-bottom: 48px;
  transition: opacity 0.2s;
}
.post-back-link:hover { opacity: 0.6; }

.post-hero {
  margin-bottom: 48px;
  border-radius: 24px;
  overflow: hidden;
}
.post-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.post-header { margin-bottom: 52px; }

.post-date {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--candy);
  margin-bottom: 16px;
}

.post-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--licorice);
  margin-bottom: 20px;
}

.post-subtitle {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.45);
  max-width: 560px;
}

/* ─── POST BODY (Markdown) ───────────────────────────────────────── */
.post-body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.8);
}
.post-body h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--licorice);
  margin: 52px 0 20px;
}
.post-body h3 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--candy);
  margin: 36px 0 12px;
}
.post-body p { margin-bottom: 24px; }
.post-body ul,
.post-body ol { margin: 0 0 24px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--candy); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { opacity: 0.75; }
.post-body strong { font-weight: 500; color: var(--licorice); }
.post-body blockquote {
  border-left: 3px solid var(--candy);
  padding-left: 24px;
  margin: 32px 0;
  color: rgba(0,0,0,0.55);
  font-style: italic;
}
.post-body img {
  border-radius: 16px;
  display: block;
  margin: 36px auto;
  box-shadow: 0 8px 36px rgba(0,0,0,0.14);
  max-width: 100%;
}
/* Book covers from /images/ — portrait, kept narrow */
.post-body img[src^="/images/"] {
  max-width: 260px;
  width: 100%;
}
/* Game screenshots & tech photos from /blog/images/ — full width */
.post-body img[src^="/blog/images/"] {
  max-width: 100%;
  width: 100%;
  border-radius: 20px;
}

.post-body hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 48px 0;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}
.post-body th {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--licorice);
}
.post-body td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.75);
}

/* ─── POST STATES ────────────────────────────────────────────────── */
.post-loading,
.post-error {
  text-align: center;
  padding: 140px 48px 100px;
  font-family: var(--f-body);
}
.post-error h2 {
  font-family: var(--f-display);
  font-size: 42px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-error p {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  margin-bottom: 32px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--licorice);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--snow);
  text-decoration: none;
}
.footer-copy {
  font-family: var(--f-body);
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

/* ─── PAGINATION ─────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 24px 64px;
}
.pagination-btn {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--licorice);
  background: transparent;
  border: 1.5px solid var(--licorice);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.pagination-btn:hover:not(:disabled) {
  background: var(--licorice);
  color: var(--snow);
}
.pagination-btn:disabled {
  opacity: 0.25;
  cursor: default;
}
.pagination-info {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--candy);
  min-width: 60px;
  text-align: center;
}
.pagination-sep {
  color: rgba(0,0,0,0.3);
}

/* ─── AMAZON PRODUCT CARD ────────────────────────────────────────── */
.post-body .amazon-card {
  display: flex;
  align-items: stretch;
  border-radius: 40px;               /* --radius-default */
  margin: 40px 0;                    /* --section-gap */
  min-height: 220px;
  justify-content: center;
}
.amazon-card-img {
  align-self: center;
  width: 180px;
  min-width: 180px;
  max-width: 220px !important;
  object-fit: cover;
  display: block;
  margin: 16px 0 16px 16px !important;
  border-radius: 24px;
  height: auto !important;
}
.amazon-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;                         /* --element-gap */
  padding: 30px;                     /* --card-padding */
  justify-content: center;
}
.amazon-card-title {
  font-family: var(--f-display);     /* Bebas Neue / heading font */
  font-size: 22px;                   /* heading-sm scale */
  font-weight: 500;
  color: var(--licorice);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
/* Specificity override: .post-body a sets color:var(--candy) */
.post-body .amazon-card .amazon-card-btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--snow);                /* Snow on Candy Apple per Do's */
  background: var(--candy);
  padding: 16px 30px;               /* primary button padding */
  border-radius: 9999px;            /* pill — 50% per design */
  text-decoration: none;
  letter-spacing: 0.03em;
  align-self: center;
  transition: opacity 0.15s;
  text-align: center;
}
.post-body .amazon-card .amazon-card-btn:hover { opacity: 0.82; color: var(--snow); }

/* ─── TAG PANEL ──────────────────────────────────────────────────── */
.tag-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 40px;
}
.tag-panel-chip {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--licorice);
  background: transparent;
  border: 1.5px solid var(--licorice);
  border-radius: 100px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.tag-panel-chip:hover {
  background: var(--licorice);
  color: var(--snow);
}
.tag-panel-chip.active {
  background: var(--candy);
  border-color: var(--candy);
  color: var(--snow);
}
.tag-count {
  opacity: 0.65;
  font-size: 11px;
}
.tag-panel-clear {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--candy);
  background: transparent;
  border: none;
  padding: 5px 4px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
}
.tag-panel-clear:hover { opacity: 0.7; }
.tag-empty {
  font-family: var(--f-body);
  font-size: 16px;
  color: rgba(0,0,0,0.5);
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* ─── TAG CHIPS (cards & post header) ───────────────────────────── */
.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.tag-chip {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--candy);
  background: transparent;
  border: 1.5px solid var(--candy);
  border-radius: 100px;
  padding: 2px 10px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  transition: background 0.12s, color 0.12s;
}
.tag-chip:hover {
  background: var(--candy);
  color: var(--snow);
}
.tag-chip--post {
  font-size: 12px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

/* ─── SHARE BUTTONS ──────────────────────────────────────────────── */
.share-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(0,0,0,0.1);
}
.share-label {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-right: 4px;
}
.share-btn {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.share-btn--twitter {
  background: #000;
  color: #fff;
  border: none;
}
.share-btn--twitter:hover { opacity: 0.8; }
.share-btn--linkedin {
  background: #0077b5;
  color: #fff;
  border: none;
}
.share-btn--linkedin:hover { opacity: 0.8; }
.share-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}
.share-btn--whatsapp:hover { opacity: 0.8; }
.share-btn--copy {
  background: transparent;
  color: var(--licorice);
  border: 1.5px solid var(--licorice);
}
.share-btn--copy:hover { background: var(--licorice); color: var(--snow); }
.share-btn--copy.copied {
  background: var(--candy);
  border-color: var(--candy);
  color: var(--snow);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav, .nav.scrolled { padding: 16px 24px; }
  .nav-links { gap: 8px; }
  .hero { padding: 80px 24px 70px; }
  .countdown-section, .book-section { padding: 64px 24px; }
  .blog-section { padding: 64px 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .blog-listing { padding: 100px 24px 64px; }
  .post { padding: 80px 24px 80px; }
  .footer { padding: 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .countdown-grid { gap: 6px; }
  .cd-card { min-width: 0; flex: 1; padding: 16px 8px; border-radius: 16px; }
  .cd-num  { font-size: clamp(28px, 8vw, 48px); }
  .cd-lbl  { font-size: 8px; letter-spacing: 0.1em; }
  .blog-grid        { grid-template-columns: 1fr; gap: 12px; }
  .blog-card-title  { font-size: 16px; }
  .post-title       { font-size: clamp(32px, 8vw, 48px); }
  .post-body h2     { font-size: clamp(24px, 6vw, 36px); }
  .post-body .amazon-card { flex-direction: column; min-height: unset; }
  .amazon-card-img  { width: calc(100% - 32px); min-width: unset; height: 220px; margin: 16px 16px 0; }
  .amazon-card-info { padding: 16px 20px 24px; }
}
