:root {
  --red: #e13223;
  --red-dark: #b41f14;
  --yellow: #ffdd02;
  --yellow-soft: #ffe566;
  --black: #0c0a09;
  --ink: #1a1412;
  --wood: #2a1c16;
  --panel: #fffaf6;
  --muted: #5c514a;
  --line: rgba(26, 20, 18, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 14px;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(225, 50, 35, 0.12), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(255, 221, 2, 0.1), transparent 45%),
    linear-gradient(180deg, #1a100e 0 420px, #f3ebe3 420px);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-dark); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 221, 2, 0.35);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 9, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 221, 2, 0.55);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
  transition: transform 0.25s ease;
}
.brand:hover { transform: translateY(-1px); }

.brand-logo {
  height: 78px;
  width: auto;
  max-width: min(340px, 58vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(255, 221, 2, 0.25));
}
@media (max-width: 760px) {
  .brand-logo {
    height: 56px;
    max-width: min(220px, 58vw);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: var(--yellow);
  border: 2px solid var(--yellow);
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 0 0 3px rgba(255, 221, 2, 0.25);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-text em {
  font-style: normal;
  color: var(--yellow);
}

.header-cta {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(255, 221, 2, 0.25);
}
.btn-yellow:hover {
  background: var(--yellow-soft);
  box-shadow: 0 12px 28px rgba(255, 221, 2, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 221, 2, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}
.btn-ghost:hover {
  background: rgba(225, 50, 35, 0.55);
  border-color: #fff;
  box-shadow: 0 8px 22px rgba(225, 50, 35, 0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.2) 35%, rgba(12, 10, 9, 0.88) 100%),
    linear-gradient(90deg, rgba(225, 50, 35, 0.28), transparent 55%);
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1rem 3.25rem;
}
.hero-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  animation: riseIn 0.8s ease both;
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: riseIn 0.9s ease 0.08s both;
}
.hero-sub {
  max-width: 34rem;
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  animation: riseIn 1s ease 0.14s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: riseIn 1.05s ease 0.2s both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sticky TOC dropdown */
.toc-bar {
  position: sticky;
  top: 62px;
  z-index: 45;
  background: linear-gradient(180deg, #1a100e, #120c0a);
  border-bottom: 2px solid rgba(255, 221, 2, 0.35);
}
.toc-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1rem;
  position: relative;
}
.toc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 221, 2, 0.35);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225, 50, 35, 0.92), rgba(180, 31, 20, 0.95));
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.toc-trigger:hover {
  transform: translateY(-1px);
  border-color: var(--yellow);
  box-shadow: 0 12px 28px rgba(225, 50, 35, 0.35);
}
.toc-trigger[aria-expanded="true"] {
  border-color: var(--yellow);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.toc-trigger-label { min-width: 0; }
.toc-trigger-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 221, 2, 0.9);
  font-weight: 700;
}
.toc-trigger-current {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toc-trigger-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  flex: 0 0 auto;
  position: relative;
  transition: transform 0.25s ease;
}
.toc-trigger-chevron::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -60%) rotate(45deg);
}
.toc-trigger[aria-expanded="true"] .toc-trigger-chevron {
  transform: rotate(180deg);
}

.toc-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% - 2px);
  background: #fffaf6;
  border: 2px solid var(--yellow);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  max-height: min(70vh, 480px);
  overflow: auto;
  z-index: 50;
  transform-origin: top center;
  animation: tocDrop 0.22s ease;
}
@keyframes tocDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.toc-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.55rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fffaf6;
  z-index: 1;
}
.toc-panel-head strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-dark);
  font-size: 1rem;
}
.toc-panel-head span {
  font-size: 0.82rem;
  color: var(--muted);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.75rem;
}
@media (min-width: 720px) {
  .toc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .toc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.toc-grid a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(26, 20, 18, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.toc-grid a:hover {
  background: rgba(225, 50, 35, 0.1);
  border-color: rgba(225, 50, 35, 0.35);
  color: var(--red-dark);
  transform: translateY(-1px);
}
.toc-grid a.active {
  background: var(--red);
  border-color: var(--yellow);
  color: #fff;
}

/* In-article TOC duplicate removed — sticky .toc-bar only */

/* Main content */
.main {
  max-width: var(--max);
  margin: -1.5rem auto 0;
  padding: 0 1rem 4rem;
  position: relative;
  z-index: 2;
}
.article {
  background: var(--panel);
  border-radius: 22px 22px 0 0;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.15rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
@media (min-width: 800px) {
  .article { padding: 2.4rem 2.4rem 3rem; }
}

.content-section {
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.content-section:last-child { border-bottom: 0; }

/* Section images: medium food shots above each heading */
.section-head {
  display: block;
  margin: 0 0 1rem;
}
.section-head h2 {
  margin: 0.9rem 0 0;
}
.section-media {
  margin: 0;
  max-width: 720px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(225, 50, 35, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.section-media:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 50, 35, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.section-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.section-media:hover img {
  transform: scale(1.03);
}
.inline-media {
  max-width: 560px;
  width: 100%;
  margin: 1rem auto 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 221, 2, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.inline-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.inline-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.inline-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 720px) {
  .section-media,
  .inline-media {
    max-width: 100%;
  }
  .section-media img,
  .inline-media img {
    max-height: 220px;
  }
}

h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red-dark);
  line-height: 1.15;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}
.content-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 999px;
  transition: width 0.55s ease;
}
.content-section.reveal.in h2::after,
.content-section:hover h2::after {
  width: 72px;
}

h3 {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wood);
}
h4 {
  margin: 1rem 0 0.4rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.content-section > p { color: var(--muted); }
.article p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
}
ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
li { margin: 0.25rem 0; }

.article a:not(.btn) {
  transition: color 0.2s ease, background-size 0.25s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  text-decoration: none;
}
.article a:not(.btn):hover {
  color: var(--red);
  background-size: 100% 2px;
}

.table-wrap {
  overflow-x: auto;
  margin: 0.85rem 0 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.table-wrap:hover {
  border-color: rgba(225, 50, 35, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.95rem;
}
th, td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}
tr:nth-child(even) td { background: rgba(225, 50, 35, 0.04); }
tbody tr { transition: background 0.2s ease; }
tbody tr:hover td { background: rgba(255, 221, 2, 0.18); }

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  font-size: 0.92rem;
}
.site-footer strong { color: var(--yellow); }

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
  z-index: 60;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.to-top:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(255, 221, 2, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }

@media (max-width: 760px) {
  .header-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img,
  .reveal,
  .hero-brand,
  .hero h1,
  .hero-sub,
  .hero-actions,
  .btn::after,
  .section-media img,
  .inline-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0 0.25rem;
}
.faq-item {
  border: 1px solid rgba(26, 20, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open],
.faq-item:hover {
  border-color: rgba(225, 50, 35, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wood, #2a1c16);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text { flex: 1; min-width: 0; line-height: 1.25; }
.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red, #e13223);
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.faq-item[open] .faq-icon {
  background: var(--yellow, #ffdd02);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #0c0a09;
}
.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(26, 20, 18, 0.08);
}
.faq-a p {
  margin: 0.75rem 0 0;
  color: var(--muted, #5c514a);
  font-size: 1rem;
  line-height: 1.65;
}

/* Conclusion */
#conclusion {
  background:
    linear-gradient(135deg, rgba(255, 221, 2, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(225, 50, 35, 0.06), transparent 70%);
  border: 2px solid rgba(225, 50, 35, 0.22);
  border-radius: 16px;
  padding: 1.35rem 1.2rem 1.5rem;
  margin-top: 1.25rem;
}
#conclusion h2 {
  color: var(--red-dark, #b41f14);
}


/* Legal pages */
.legal-body {
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(225, 50, 35, 0.1), transparent 55%),
    linear-gradient(180deg, #1a100e 0 180px, #f3ebe3 180px);
}
.legal-main {
  margin-top: 1rem;
  padding-bottom: 3rem;
}
.legal-article {
  max-width: 760px;
}
.legal-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red-dark);
}
.legal-article h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--red-dark);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.legal-article h2 {
  margin-top: 1.6rem;
}
.legal-email {
  font-size: 1.15rem;
  font-weight: 700;
}
.site-footer .footer-links {
  margin: 0.85rem 0;
}
.site-footer .footer-links a,
.site-footer a {
  color: var(--yellow);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}


/* PDF download CTAs */
.pdf-cta {
  margin: 0.9rem 0 1.2rem;
}
.pdf-cta .pdf-download-btn {
  display: inline-flex;
  gap: 0.45rem;
  font-size: 1rem;
  padding: 0.8rem 1.35rem;
}
.pdf-cta .btn-pdf-lg {
  font-size: 1.08rem;
  padding: 0.95rem 1.55rem;
  box-shadow: 0 10px 26px rgba(255, 221, 2, 0.35);
}
.pdf-cta .pdf-download-btn::before {
  content: "↓";
  font-weight: 800;
}
