/* Лелія — shoppers.com.ua (mobile-first, PDF poster) */
:root {
  --pdf-dark: #18575b;
  --pdf-olive: #8aaa87;
  --pdf-beige: #f5f1ec;
  --pdf-cream: #f7f3ee;
  --pdf-text: #153235;
  --pdf-footer-gray: #b8b8b8;
  --bg: #f4f1ec;
  --bg-elevated: #ffffff;
  --ink: #153235;
  --muted: #4a5f62;
  --line: #d4ddd6;
  --accent: #174f53;
  --accent-soft: #e3ebe4;
  --sun: #c9b87a;
  --sky: #174f53;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(23, 79, 83, 0.08);
  --container: min(1100px, calc(100% - 1.25rem));
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

@media (max-width: 899px) {
  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

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

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-width: 0;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo span {
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-desktop a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  cursor: pointer;
  box-sizing: border-box;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  flex-shrink: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(calc(5px + 2px)) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(calc(-5px - 2px)) rotate(-45deg);
}

.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 420px) {
  .header-inner {
    gap: 0.5rem;
  }

  .logo {
    font-size: 0.95rem;
    letter-spacing: -0.03em;
  }

  .header-actions .btn-sm {
    padding: 0.5rem 0.65rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 !important;
  }
}

@media (max-width: 899px) {
  .nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), padding 0.25s var(--ease);
  }

  .nav-mobile.is-open {
    max-height: min(70vh, 560px);
    opacity: 1;
    padding: 0.75rem 0 1.25rem;
    border-top-color: var(--line);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .nav-mobile {
    transition: none;
  }

  .nav-mobile.is-open {
    max-height: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #2a2a2a;
  color: #fff;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 1rem 0 2rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1,
.h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #f0ebe4);
  border: 1px solid var(--line);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  height: 100%;
}

.collage-cell {
  border-radius: var(--radius-md);
  border: 1px dashed color-mix(in srgb, var(--muted) 35%, transparent);
  background: color-mix(in srgb, var(--bg) 70%, white);
  min-height: 120px;
  position: relative;
}

.collage-cell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-sm);
  opacity: 0.35;
}

.collage-cell.c-red::after {
  background: radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%),
    linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.collage-cell.c-yellow::after {
  background: radial-gradient(circle at 70% 40%, rgba(232, 185, 49, 0.35), transparent 55%),
    linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.collage-cell.c-blue::after {
  background: radial-gradient(circle at 40% 60%, rgba(42, 122, 185, 0.35), transparent 55%),
    linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.collage-cell.c-light::after {
  background: linear-gradient(180deg, #f6f1ea, #e9dfd3);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-tight {
  padding: 2.25rem 0;
}

.section-muted {
  background: color-mix(in srgb, var(--bg-elevated) 88%, var(--line));
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card:hover {
    border-color: color-mix(in srgb, var(--ink) 22%, var(--line));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
  }
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-thumb {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f3f0eb;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}

.product-thumb img.is-loaded {
  z-index: 2;
}

.product-thumb.is-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ece6de 0%, #f7f4ef 40%, #ece6de 80%);
  background-size: 200% 100%;
  animation: shimmer 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .product-thumb.is-placeholder::before {
    animation: none;
  }
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.handle-dot {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 6px;
  border-radius: 999px;
  opacity: 0.85;
}

.handle-red {
  background: var(--accent);
}

.handle-yellow {
  background: var(--sun);
}

.handle-blue {
  background: var(--sky);
}

.handle-white {
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1px #ddd;
}

.handle-black {
  background: #111;
}

.bag-dark .product-thumb {
  background: linear-gradient(160deg, #1f1f1f, #0f0f0f);
}

.bag-light .product-thumb {
  background: linear-gradient(160deg, #fbf7f1, #e9dfd3);
}

/* Builder (home) */
.builder-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .builder-layout {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
    gap: 2.5rem;
  }
}

.builder-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.builder-block {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.builder-heading {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 600;
}

.builder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.builder-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s;
}

.builder-chip:hover {
  border-color: color-mix(in srgb, var(--ink) 25%, var(--line));
}

.builder-chip.is-selected {
  border-color: var(--ink);
  background: color-mix(in srgb, var(--ink) 6%, white);
  box-shadow: var(--shadow-sm);
}

.builder-chip:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.builder-summary {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.builder-price {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.builder-summary-block .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.builder-preview-wrap {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .builder-preview-wrap {
    margin-inline: 0;
    position: sticky;
    top: 5.5rem;
  }
}

.builder-preview-card {
  max-width: 100%;
}

.builder-preview-caption {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.builder-thumb-inner {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ece6de, #f7f4ef);
}

.builder-thumb-inner .builder-fallback.product-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: unset;
  border-radius: inherit;
  border: none;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}

.builder-thumb-inner.bag-dark-bg {
  background: linear-gradient(160deg, #1f1f1f, #0f0f0f);
}

.builder-thumb-inner.bag-light-bg {
  background: linear-gradient(160deg, #fbf7f1, #e9dfd3);
}

.builder-thumb-inner .product-thumb.is-placeholder::before {
  z-index: 0;
}

.builder-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 2;
}

.builder-product-img.is-visible {
  display: block;
}

/* Feature list */
.features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Two column */
.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.pill {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a1024;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Reviews */
.reviews-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--line);
  background: #fff;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.review-card strong {
  font-weight: 600;
}

.review-city {
  color: var(--muted);
  font-size: 0.85rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 1rem 1.1rem;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Form */
.order-section {
  scroll-margin-top: 96px;
  scroll-margin-bottom: 5rem;
}

@media (max-width: 899px) {
  .order-section {
    padding-bottom: 5.5rem;
    margin-bottom: 0.5rem;
  }
}

.order-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .order-card {
    padding: 1.75rem;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font: inherit;
  font-size: 1rem;
  background: #fff;
}

@media (max-width: 899px) {
  input,
  select,
  textarea {
    padding: 0.95rem 1rem;
    min-height: 3.25rem;
    font-size: 1.05rem;
  }
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.field-error {
  color: #a31212;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border: 1px solid #b7dfc3;
  background: #eefaf1;
  color: #1b4d2a;
}

.form-status.error {
  border: 1px solid #f0c4c4;
  background: #fff5f5;
  color: #6b1d1d;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 2.5rem 0 7.5rem;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, #fff 88%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

.sticky-cta .btn {
  width: min(520px, 100%);
}

/* Inner pages */
.page-hero {
  padding: 2rem 0 1rem;
}

.page-unit-price {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 56ch;
}

.page-unit-price strong {
  color: var(--ink);
  font-weight: 700;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose a {
  color: var(--sky);
}

.related {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.related h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.related ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.related li {
  margin-bottom: 0.35rem;
}

.cta-inline {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inline p {
  margin: 0;
  max-width: 48ch;
  color: color-mix(in srgb, #fff 85%, #ccc);
}

.cta-inline .btn-primary {
  background: #fff;
  color: var(--ink);
}

.cta-inline .btn-primary:hover {
  background: #f2f2f2;
}

/* Motion */
.fade-up {
  opacity: 0;
  transform: translateY(12px);
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ========== PDF / workshop landing (головна + уніфікація) ========== */

.page-home .site-header--pdf,
.site-header--inner-pdf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

/* Мобільна головна: без бургера й випадаючого меню — як у PDF */
@media (max-width: 899px) {
  .page-home .menu-toggle--pdf {
    display: none;
  }

  .page-home #mobile-nav.nav-mobile--pdf {
    display: none;
  }
}

.pdf-header-inner--inner {
  padding-top: 0.45rem;
  padding-bottom: 0.35rem;
}

@media (min-width: 900px) {
  .pdf-header-inner--inner {
    padding-top: 0.65rem;
    padding-bottom: 0.55rem;
  }
}

.pdf-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0 0.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.pdf-header-brand {
  flex: 1 1 100%;
  text-align: center;
  order: 0;
}

.pdf-brand-series {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pdf-olive);
  font-weight: 700;
}

.pdf-brand-logo {
  display: inline-block;
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pdf-dark);
  text-decoration: none;
}

.pdf-brand-logo:hover {
  color: var(--pdf-dark);
  opacity: 0.9;
}

.pdf-brand-strip {
  margin: 0.35rem 0 0;
  padding: 0.35rem 0.75rem;
  display: inline-block;
  background: var(--pdf-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
}

.nav-desktop--pdf {
  display: none;
}

.header-actions--pdf {
  margin-left: auto;
}

.menu-toggle--pdf {
  border-color: rgba(23, 79, 83, 0.25);
  color: var(--pdf-dark);
}

.nav-mobile--pdf {
  border-top-color: var(--line);
}

.nav-mobile--pdf a {
  color: var(--pdf-text);
}

@media (min-width: 900px) {
  .pdf-header-inner {
    flex-wrap: nowrap;
    max-width: 1100px;
    padding: 0.85rem 0;
  }

  .pdf-header-brand {
    flex: 0 1 auto;
    text-align: left;
    order: unset;
  }

  .nav-desktop--pdf {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .nav-desktop--pdf a {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
  }

  .nav-desktop--pdf a:hover {
    color: var(--pdf-dark);
  }
}

.pdf-intro {
  padding: 0.75rem 0 0.25rem;
  text-align: center;
}

.pdf-h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pdf-dark);
  line-height: 1.12;
}

.pdf-lead {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pdf-hero {
  margin: 0;
  padding: 0;
}

.pdf-hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: clamp(220px, 52vw, 280px);
  overflow: hidden;
  background: var(--pdf-beige);
}

@media (min-width: 720px) {
  .pdf-hero-media {
    max-width: 820px;
    border-radius: var(--radius-lg);
    height: clamp(260px, 38vw, 360px);
  }
}

@media (min-width: 1024px) {
  .pdf-hero-media {
    max-width: 960px;
  }
}

.pdf-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.pdf-hero-img[src=""],
.pdf-hero-img:not([src]) {
  opacity: 0;
}

.pdf-hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--pdf-olive) 0%, var(--pdf-dark) 100%);
  opacity: 0.35;
}

.pdf-hero-media:has(.pdf-hero-img[src]:not([src=""])) .pdf-hero-fallback {
  opacity: 0;
}

@supports not selector(:has(*)) {
  .pdf-hero-fallback {
    z-index: 0;
  }
}

.pdf-made-ua {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.pdf-made-ua-inner {
  background: var(--pdf-olive);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 4.5vw, 1.35rem);
  letter-spacing: 0.08em;
  padding: 0.55rem 1.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.pdf-benefits {
  padding: 1.25rem 0 1.5rem;
}

.pdf-benefits-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}

.pdf-benefits-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--pdf-dark);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 0.4rem;
  border-radius: 8px;
  text-align: center;
}

.pdf-benefits-list {
  margin: 0;
  padding-left: 1.15rem;
  font-weight: 700;
  font-size: clamp(0.88rem, 3.6vw, 1rem);
  color: var(--pdf-text);
  line-height: 1.45;
}

.pdf-benefits-list li {
  margin-bottom: 0.35rem;
}

@media (max-width: 359px) {
  .pdf-benefits-grid {
    grid-template-columns: 1fr;
  }

  .pdf-benefits-label {
    writing-mode: horizontal-tb;
    transform: none;
    width: fit-content;
  }
}

.pdf-pick-colors {
  padding: 1.25rem 0 1.5rem;
  background: #fff;
}

.pdf-band-title {
  margin: 0 0 0.5rem;
  text-align: center;
  background: var(--pdf-dark);
  color: #fff;
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
}

.pdf-band-title--left {
  text-align: center;
}

.pdf-pick-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.5rem 0 1rem;
}

.pdf-subtitle {
  margin: 1rem 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pdf-dark);
}

.pdf-swatch-grid {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pdf-swatch-grid--bags {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdf-swatch-grid--handles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 490px) {
  .pdf-swatch-grid--bags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 389px) {
  .pdf-swatch-grid--bags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pdf-swatch {
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.55rem 0.35rem;
  min-height: 3.25rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--pdf-text);
  background: var(--pdf-cream);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.pdf-swatch span {
  display: block;
  line-height: 1.2;
}

.pdf-swatch:hover {
  transform: translateY(-1px);
}

.pdf-swatch.is-selected {
  border-color: var(--pdf-dark);
  box-shadow: 0 0 0 1px var(--pdf-dark);
}

.pdf-swatch--black {
  background: #2a2a2a;
  color: #fff;
}

.pdf-swatch--natural {
  background: #e8e0d4;
}

.pdf-swatch--beige {
  background: #d9c9b0;
}

.pdf-swatch--olive {
  background: var(--pdf-olive);
  color: #fff;
}

.pdf-swatch--print {
  background: linear-gradient(135deg, var(--pdf-olive), var(--pdf-dark));
  color: #fff;
}

.pdf-swatch--brand {
  background: var(--pdf-dark);
  color: #fff;
}

.pdf-swatch--handle {
  background: #fff;
  border: 1px solid var(--line);
}

.pdf-pick-preview {
  margin-top: 1.25rem;
  text-align: center;
}

.pdf-preview-card {
  max-width: 280px;
  margin: 0 auto;
}

.pdf-preview-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 320px;
  margin: 0 auto;
  background: var(--pdf-beige);
  border: 1px solid var(--line);
}

.pdf-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pdf-preview-img.is-visible {
  opacity: 1;
}

.pdf-preview-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--pdf-beige), #dfe8df);
}

.pdf-preview-img.is-visible + .pdf-preview-ph,
.pdf-preview-img.is-visible ~ .pdf-preview-ph {
  opacity: 0;
}

.pdf-preview-thumb:has(.pdf-preview-img.is-visible) .pdf-preview-ph {
  opacity: 0;
}

.pdf-preview-caption {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.pdf-pick-summary {
  font-weight: 700;
  color: var(--pdf-text);
  margin: 0.75rem 0 0.25rem;
}

.pdf-pick-price {
  margin: 0 0 0.75rem;
  color: var(--pdf-dark);
  font-weight: 800;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  background: var(--pdf-dark);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.btn-pdf:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.btn-pdf:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: none;
}

.btn-pdf-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

.btn-pdf-wide {
  width: 100%;
  max-width: 320px;
}

.btn-pdf-cta {
  display: flex;
  width: 100%;
  max-width: 420px;
  margin: 1.25rem auto 0;
  text-align: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.pdf-tech {
  padding: 1.5rem 0;
  background: var(--pdf-cream);
}

.pdf-spec-table {
  margin: 1rem auto 0;
  max-width: 520px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 0.5rem 0;
}

.pdf-spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.pdf-spec-row:last-child {
  border-bottom: 0;
}

.pdf-spec-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.pdf-spec-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--pdf-text);
  text-align: right;
}

.pdf-audience {
  padding: 1.25rem 0;
  background: #e8e8e8;
}

.pdf-audience-text {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  color: var(--pdf-text);
  max-width: 40rem;
  margin-inline: auto;
}

.pdf-section-soft {
  background: #fff;
}

.pdf-order-section .order-card,
.pdf-order-card {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.field-select-pdf select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
  color: var(--pdf-text);
}

.form-price-notice {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  color: var(--pdf-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-price-notice.is-hidden {
  display: none;
}

.site-footer--pdf {
  background: #3a3a3a;
  color: #f0f0f0;
}

.site-footer--pdf a {
  color: #fff;
}

.site-footer--pdf h3 {
  color: #fff;
}

.footer-grid--pdf {
  padding-top: 2rem;
}

.footer-tag {
  margin: 0;
  color: var(--pdf-footer-gray);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-company {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}

.footer-contacts p {
  margin: 0 0 0.5rem;
  color: #ddd;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.footer-contacts li {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.footer-founded {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--pdf-footer-gray);
}

.footer-bottom--pdf {
  color: #aaa;
  border-color: #555;
}

.sticky-cta--pdf .btn-pdf {
  width: min(520px, 100%);
}

.page-home .btn-primary:not(.btn-pdf) {
  background: var(--pdf-dark);
  color: #fff;
  border-color: var(--pdf-dark);
}

.page-home .btn-primary:not(.btn-pdf):hover {
  filter: brightness(1.06);
  color: #fff;
}

/* ========== Головна: постер «Лелія» (PDF) ========== */
.page-home {
  background: #f4f1ec;
  --poster-pad-x: clamp(1rem, 4.2vw, 4rem);
}

.page-home .poster {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 8px 32px rgba(21, 50, 53, 0.07);
  overflow-x: clip;
  box-sizing: border-box;
  padding-left: var(--poster-pad-x);
  padding-right: var(--poster-pad-x);
}

@media (min-width: 768px) {
  .page-home .poster {
    max-width: 900px;
    width: min(100%, 900px);
  }
}

@media (min-width: 1024px) {
  .page-home .poster {
    max-width: 1180px;
    width: min(100%, 1180px);
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
  }
}

.poster-header {
  background: #fff;
  text-align: center;
}

.poster-header-inner {
  padding: 0.85rem 0 0.65rem;
}

.poster-brand-icon {
  color: var(--pdf-olive);
  display: flex;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.poster-bag-svg {
  display: block;
}

.poster-brand-name {
  margin: 0;
  font-size: clamp(2.1rem, 11vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pdf-dark);
  line-height: 1;
}

.poster-strip {
  margin: 0.55rem calc(-1 * var(--poster-pad-x)) 0;
  padding: 0.45rem 0.75rem;
  background: var(--pdf-dark);
  color: #fff;
}

.poster-strip-heading {
  margin: 0;
  font-size: clamp(0.72rem, 3.1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
}

.poster-header-cta {
  margin: 0.55rem 0 0;
}

.poster-header-cta-link {
  display: inline-block;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  background: var(--pdf-dark);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none !important;
}

.poster-header-cta-link:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.poster-main {
  padding: 0;
}

.poster-hero-stack {
  position: relative;
}

.page-home .poster .pdf-hero {
  margin: 0 calc(-1 * var(--poster-pad-x));
  padding: 0;
  width: calc(100% + 2 * var(--poster-pad-x));
  max-width: none;
}

.page-home .poster .pdf-hero-media {
  position: relative;
  width: 100%;
  margin: 0;
  max-width: none;
  height: clamp(260px, 58vw, 320px);
  min-height: 260px;
  overflow: hidden;
  border-radius: 0;
  background: var(--pdf-beige);
}

@media (min-width: 1024px) {
  .page-home .poster .pdf-hero-media {
    height: clamp(420px, 42vh, 520px);
    min-height: 420px;
  }
}

.page-home .poster .pdf-hero-ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(155deg, var(--pdf-olive) 0%, var(--pdf-dark) 52%, #132a2d 100%);
  opacity: 1;
  transition: opacity 0.45s ease;
}

.page-home .poster .pdf-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.page-home .poster .pdf-hero-img.is-loaded {
  opacity: 1;
}

.page-home .poster .pdf-hero-media:has(.pdf-hero-img.is-loaded) .pdf-hero-ph {
  opacity: 0;
}

.poster-hero-stack .pdf-made-ua {
  margin-top: -1.35rem;
  position: relative;
  z-index: 2;
  padding: 0.15rem 0 0.5rem;
  display: flex;
  justify-content: center;
  background: transparent;
}

.poster-hero-stack .pdf-made-ua-inner {
  border-radius: 6px;
  padding: 0.55rem 1.65rem;
  font-size: clamp(1.08rem, 4.5vw, 1.5rem);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
  .poster-hero-stack .pdf-made-ua-inner {
    padding: 0.65rem 2.25rem;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  }
}

.page-home .poster .pdf-benefits {
  padding: 0.65rem 0 0.85rem;
  background: #fff;
}

.page-home .poster .pdf-benefits-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1rem;
  align-items: start;
  padding: 0;
  max-width: min(52rem, 100%);
  margin: 0 auto;
}

.page-home .poster .pdf-benefits-list {
  color: var(--pdf-dark);
  font-weight: 800;
  font-size: clamp(0.82rem, 3.4vw, 0.98rem);
  line-height: 1.38;
}

.page-home .poster .pdf-pick-colors {
  padding: 0.75rem 0 1.1rem;
}

.page-home .poster .pdf-band-title {
  border-radius: 8px;
  margin-bottom: 0.45rem;
  width: 100%;
  box-sizing: border-box;
}

.page-home .poster .pdf-tech--poster {
  background: #fff;
  padding: 0.5rem 0 1rem;
}

.page-home .poster .pdf-tech-banner {
  margin: 0 0 0.75rem;
  padding: 1rem 1rem;
  background: var(--pdf-olive);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.08rem, 4.2vw, 1.45rem);
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0.03em;
  border-radius: 10px;
  box-sizing: border-box;
}

.page-home .poster .pdf-tech-banner-line {
  display: block;
}

.page-home .poster .pdf-tech-rows {
  margin: 0;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.page-home .poster .pdf-tech-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.35rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(21, 50, 53, 0.12);
  align-items: center;
}

.page-home .poster .pdf-tech-row:last-child {
  border-bottom: 0;
}

.page-home .poster .pdf-tech-k {
  margin: 0;
  font-weight: 800;
  color: var(--pdf-dark);
  text-transform: lowercase;
  font-size: clamp(0.85rem, 2.4vw, 1.02rem);
  line-height: 1.25;
}

.page-home .poster .pdf-tech-v {
  margin: 0;
  font-weight: 800;
  color: var(--pdf-olive);
  text-align: right;
  font-size: clamp(0.85rem, 2.4vw, 1.02rem);
  line-height: 1.25;
}

.page-home .poster .pdf-tech-v--sw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.page-home .poster .pdf-tech-mini {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
}

.page-home .poster .tech-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.page-home .poster .tech-dot--bag-black {
  background: #222;
}

.page-home .poster .tech-dot--bag-natural {
  background: #e8e0d4;
}

.page-home .poster .tech-dot--h-black {
  background: #222;
}

.page-home .poster .tech-dot--h-natural {
  background: #e8e0d4;
}

.page-home .poster .tech-dot--h-red {
  background: #c41e3a;
}

.page-home .poster .tech-dot--h-yellow {
  background: #e8b931;
}

.page-home .poster .tech-dot--h-blue {
  background: #2a7ab9;
}

.page-home .poster .pdf-tech-live {
  font-weight: 800;
  color: var(--pdf-olive);
  text-align: right;
  min-width: 0;
  word-break: break-word;
}

.page-home .poster .btn-pdf-cta-lines {
  white-space: normal;
  line-height: 1.15;
  text-transform: lowercase;
  padding: 1rem 1.25rem;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  border-radius: 14px;
  width: 100%;
  max-width: 28rem;
  margin: 0.75rem auto 0;
  box-sizing: border-box;
}

.poster-panel {
  padding: 1rem 0 1.15rem;
  background: #fff;
}

.poster-panel--soft {
  background: var(--pdf-cream);
}

.poster-panel-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  color: var(--pdf-dark);
}

.poster-panel-lead {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.faq--poster .faq-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.faq--poster .faq-item:last-child {
  border-bottom: 0;
}

.page-home .poster .pdf-audience {
  padding: 1rem 0.85rem;
  background: #8a8a8a;
}

.page-home .poster .pdf-audience-text {
  color: #fff;
  font-size: clamp(1rem, 4.2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.poster-footer--full {
  background: #6f706e;
  color: #fff;
  margin: 0 calc(-1 * var(--poster-pad-x)) 0;
  width: calc(100% + 2 * var(--poster-pad-x));
  box-sizing: border-box;
}

.poster-footer-inner {
  padding: 1.75rem var(--poster-pad-x) 0;
}

.poster-footer-grid {
  display: grid;
  gap: 1.5rem 1.75rem;
  text-align: left;
}

@media (max-width: 767px) {
  .poster-footer-grid,
  .poster-footer-col {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .poster-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .poster-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

.poster-footer-col {
  font-size: 0.88rem;
  line-height: 1.5;
}

.poster-footer-col--wide {
  grid-column: span 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .poster-footer-col--wide {
    grid-column: 1 / -1;
  }
}

.poster-footer-brand {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.poster-footer-tagline {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8e8e8;
}

.poster-footer-company {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}

.poster-footer-founded {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--pdf-footer-gray);
}

.poster-footer-h {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8cfc9;
}

.poster-footer-p {
  margin: 0;
  color: #f2f2f2;
}

.poster-footer a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.poster-footer a:hover {
  color: #fff !important;
  filter: brightness(1.08);
}

.poster-footer-bar {
  margin-top: 1.5rem;
  padding: 0.85rem var(--poster-pad-x);
  background: #174f53;
  text-align: center;
  font-size: 0.82rem;
  color: #d5dedf;
}

.poster-footer-bar p {
  margin: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
