/* ============================================================
   Quacktory — visual language: flat-vector editorial on yellow
   Inspired by the 50-best-list poster: huge numeral + offset
   shadow, scattered objects, curved arrows, central cloud,
   handwritten annotations. Brand: rubber ducks, 4 cm → 3 m.
   ============================================================ */

:root {
  --bg: #F4C95C;
  --fg: #1F1F1F;
  --accent: #E8743B;
  --muted: #B8B8B8;
  --ink: #1F1F1F;
  --surface: #F2B33A;
  --blue: #2FAFCF;
  --brown: #6B3E1F;

  --duck-micro: #E8743B;
  --duck-classic: #F2B33A;
  --duck-designer: #2FAFCF;
  --duck-mega: #6B3E1F;
  --duck-architect: #1F1F1F;

  --display: 'Archivo Black', system-ui, sans-serif;
  --hand: 'Caveat', cursive;
  --body: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.45;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(232,116,59,0.08) 0, transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(31,31,31,0.05) 0, transparent 35%);
  background-attachment: fixed;
}

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

a { color: inherit; text-decoration: none; }

.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;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--bg);
  padding: 8px 16px; z-index: 9999;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Handwritten annotation system ---------- */

.hand-note {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  position: relative;
  display: inline-block;
  transform: rotate(-2deg);
}

.hand-note::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  bottom: -2px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  transform: rotate(-1deg);
  opacity: 0.85;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 50;
  background: var(--bg);
}

.wordmark {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.topnav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.topnav a {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.topnav a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.topnote {
  justify-self: end;
  font-size: 20px;
}

/* ============================================================
   HERO — pattern A: duotone field + giant centered headline
   ============================================================ */

.hero {
  position: relative;
  padding: 64px 32px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-num {
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(180px, 30vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.hero-num-shadow {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--accent);
  z-index: 0;
  animation: shadowWiggle 6s ease-in-out infinite;
}

.hero-num-front {
  position: relative;
  z-index: 1;
  color: var(--ink);
  animation: numFloat 7s ease-in-out infinite;
}

@keyframes shadowWiggle {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -3px); }
}

@keyframes numFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, 2px); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  margin: 0 0 24px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.line-best {
  display: block;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.line-site {
  display: block;
  font-size: clamp(48px, 9vw, 110px);
  margin-bottom: -8px;
}

.line-script {
  display: block;
  font-family: var(--hand);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  transform: rotate(-2deg);
  margin-top: 4px;
}

.hero-manifesto {
  font-family: var(--body);
  font-size: clamp(20px, 2vw, 26px);
  max-width: 640px;
  margin: 24px auto 28px;
  line-height: 1.4;
  color: var(--ink);
}

.cta-pill {
  display: inline-block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 32px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--accent);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.cta-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--accent);
}

.cta-pill:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--accent);
}

.hero-annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.note-1 {
  position: absolute;
  top: 22%;
  left: 8%;
  transform: rotate(-8deg);
  font-size: 26px;
  animation: notePop 1.2s 0.3s both;
}

.note-2 {
  position: absolute;
  top: 18%;
  right: 9%;
  transform: rotate(6deg);
  font-size: 26px;
  animation: notePop 1.2s 0.6s both;
}

.note-3 {
  position: absolute;
  bottom: 18%;
  left: 12%;
  transform: rotate(-3deg);
  font-size: 24px;
  animation: notePop 1.2s 0.9s both;
}

.note-4 {
  position: absolute;
  bottom: 12%;
  right: 10%;
  transform: rotate(4deg);
  font-size: 22px;
  animation: notePop 1.2s 1.2s both;
}

@keyframes notePop {
  from { opacity: 0; transform: translateY(8px) rotate(0); }
  to { opacity: 1; }
}

/* ============================================================
   SIZE LADDER — the five lines, scattered composition
   ============================================================ */

.ladder {
  position: relative;
  padding: 80px 32px 60px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.ladder-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 720px;
  margin: 0 auto 48px;
}

.ladder-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.arrow-path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 6;
  opacity: 0.6;
  animation: dashFlow 18s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -560; }
}

.ladder-cloud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: 50% 60% 55% 50% / 60% 50% 60% 45%;
  padding: 38px 64px;
  z-index: 2;
  box-shadow: 8px 8px 0 var(--ink);
  animation: cloudPulse 5s ease-in-out infinite;
  text-align: center;
}

@keyframes cloudPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}

.cloud-text {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  line-height: 0.9;
}

.cloud-tag {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  transform: rotate(-2deg);
}

/* ---- Duck cards ---- */

.duck {
  position: absolute;
  width: 200px;
  z-index: 3;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.duck-micro      { top: 60%;  left: 4%;  --glow: var(--duck-micro); }
.duck-classic    { top: 20%;  left: 22%; --glow: var(--duck-classic); }
.duck-designer   { top: 56%;  left: 38%; --glow: var(--duck-designer); }
.duck-mega       { top: 14%;  left: 58%; --glow: var(--duck-mega); }
.duck-architect  { top: 46%;  left: 76%; --glow: var(--duck-architect); }

.duck-glow {
  position: absolute;
  inset: -20px -10px -30px -10px;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 65%);
  opacity: 0.4;
  filter: blur(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: -1;
}

.duck-photo {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.duck-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(31,31,31,0.06) 100%);
  pointer-events: none;
}

.duck-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--surface);
}

.duck-label {
  margin-top: 12px;
  padding-left: 6px;
}

.duck-num {
  font-size: 20px;
  margin-bottom: 2px;
}

.duck-label h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ink);
  text-transform: uppercase;
}

.duck-size {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}

.duck-aud {
  font-family: var(--body);
  font-size: 16px;
  margin: 2px 0 0;
  color: var(--ink);
  opacity: 0.75;
}

.duck:hover .duck-photo,
.duck:focus-visible .duck-photo {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--ink);
}

.duck:hover .duck-glow,
.duck:focus-visible .duck-glow {
  opacity: 0.75;
  transform: scale(1.05);
}

.duck:hover,
.duck:focus-visible {
  outline: none;
}

.duck:hover .duck-label h3,
.duck:focus-visible .duck-label h3 {
  color: var(--accent);
}

/* Size variation per card to suggest the scale ladder */

.duck-micro .duck-photo     { width: 110px; }
.duck-classic .duck-photo   { width: 150px; }
.duck-designer .duck-photo  { width: 170px; }
.duck-mega .duck-photo      { width: 200px; }
.duck-architect .duck-photo { width: 240px; }

/* Per-card animation: gentle bob, distinct periods */

.duck-micro    { animation: bob 6.0s ease-in-out infinite; }
.duck-classic  { animation: bob 7.0s ease-in-out 0.4s infinite; }
.duck-designer { animation: bob 6.5s ease-in-out 0.8s infinite; }
.duck-mega     { animation: bob 7.5s ease-in-out 1.2s infinite; }
.duck-architect{ animation: bob 8.0s ease-in-out 1.6s infinite; }

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

/* ---- Aside: the list, abridged ---- */

.ladder-aside {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 0;
  border-top: 2px dashed var(--ink);
}

.aside-num {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 6px;
}

.aside-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--ink);
}

.ladder-aside p {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.4;
}

.aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
}

.aside-list li {
  font-family: var(--body);
  font-size: 20px;
  padding: 8px 12px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.aside-list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.aside-list li strong {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

/* ============================================================
   HOW WE MAKE — production fact base
   ============================================================ */

.how {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-num {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.how-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: var(--ink);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.how-card {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 28px 24px 24px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.how-tag {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 16px;
  transform: rotate(4deg);
}

.how-card h3 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}

.how-card p {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
}

/* ============================================================
   B2B / CUSTOM
   ============================================================ */

.b2b {
  padding: 60px 32px 80px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.b2b::before {
  content: '12';
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: var(--display);
  font-size: 320px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.15;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.b2b-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.b2b-tag {
  color: var(--bg);
  font-size: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.b2b-tag::after {
  background: var(--bg);
  opacity: 0.5;
}

.b2b-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--bg);
}

.b2b-lead {
  font-family: var(--body);
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 28px;
  color: var(--bg);
}

.b2b-lead em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.b2b-times {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.b2b-times li {
  background: var(--bg);
  color: var(--ink);
  padding: 12px 14px;
  border: 2px solid var(--bg);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.2;
}

.b2b-times .hand-note {
  font-size: 22px;
  margin-right: 6px;
}

.b2b-times .hand-note::after {
  background: var(--accent);
}

.b2b-times strong {
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
}

.b2b-fine {
  font-family: var(--body);
  font-size: 18px;
  margin: 0 0 28px;
  color: var(--bg);
  opacity: 0.8;
  max-width: 720px;
}

.cta-b2b {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 6px 6px 0 var(--bg);
}

.cta-b2b:hover {
  box-shadow: 10px 10px 0 var(--bg);
}

/* ============================================================
   SCALE PHOTO
   ============================================================ */

.scale-photo {
  padding: 60px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.scale-frame {
  position: relative;
  display: inline-block;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--bg);
  padding: 8px;
  max-width: 100%;
  overflow: hidden;
}

.scale-frame img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 6px;
  display: block;
}

.scale-label {
  display: inline-block;
  margin-top: 16px;
  font-size: 22px;
  transform: rotate(-1deg);
}

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 32px 28px;
  border-top: 3px solid var(--ink);
}

.foot-brand {
  max-width: 1200px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-mark {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--bg);
}

.foot-credo {
  font-family: var(--hand);
  font-size: 26px;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  transform: rotate(-1deg);
  display: inline-block;
}

.foot-url {
  font-family: var(--body);
  font-size: 18px;
  margin: 0;
}

.foot-url a {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}

.foot-cols {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 28px 0;
  border-top: 2px dashed var(--bg);
  border-bottom: 2px dashed var(--bg);
}

.foot-cols h4 {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  color: var(--accent);
}

.foot-cols a {
  display: block;
  font-family: var(--body);
  font-size: 19px;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.foot-cols a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.foot-cols p {
  font-family: var(--body);
  font-size: 18px;
  margin: 0;
  line-height: 1.35;
  color: var(--bg);
  opacity: 0.85;
}

.foot-legal {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.7;
}

/* ============================================================
   MODALS
   ============================================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 31, 0.55);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: scale(0.95);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.modal-card {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 36px 36px 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 10px 10px 0 var(--accent);
  font-family: var(--body);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--bg);
}

.modal-num {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 4px;
}

.modal-card h3 {
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}

.modal-size {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.modal-price {
  font-family: var(--body);
  margin: 0 0 14px;
  line-height: 1;
}

.modal-price strong {
  font-family: var(--display);
  font-size: 36px;
  color: var(--accent);
  margin-right: 6px;
}

.modal-price span {
  font-size: 18px;
  font-weight: 700;
  margin-right: 6px;
}

.modal-price em {
  font-style: normal;
  font-size: 16px;
  opacity: 0.75;
}

.modal-body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 14px;
}

.modal-meta {
  font-family: var(--body);
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
  border-top: 2px dashed var(--ink);
  opacity: 0.85;
}

/* ============================================================
   MOBILE — single breakpoint
   ============================================================ */

@media (max-width: 720px) {
  body { font-size: 18px; }

  .topbar {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }
  .topnote { display: none; }
  .topnav { gap: 14px; }
  .topnav a { font-size: 11px; }

  .hero { padding: 36px 18px 60px; }
  .hero-num { font-size: 180px; }
  .hero-num-shadow { top: 8px; left: 8px; }
  .hero-manifesto { font-size: 19px; }

  .note-1, .note-2, .note-3, .note-4 {
    font-size: 18px;
  }

  .ladder {
    padding: 50px 18px 40px;
  }

  .ladder-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }

  .ladder-arrows { display: none; }
  .ladder-cloud { display: none; }

  .duck {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
  }

  .duck-photo {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .duck-micro .duck-photo,
  .duck-classic .duck-photo,
  .duck-designer .duck-photo,
  .duck-mega .duck-photo,
  .duck-architect .duck-photo {
    width: 100px;
  }

  .duck-label { margin-top: 0; }
  .duck-label h3 { font-size: 20px; }

  .how { padding: 50px 18px; }
  .b2b { padding: 50px 18px 60px; }
  .b2b::before { font-size: 200px; }
  .b2b-lead { font-size: 19px; }

  .scale-photo { padding: 40px 18px 60px; }

  .foot { padding: 40px 18px 20px; }
  .foot-mark { font-size: 32px; }
  .foot-credo { font-size: 22px; }

  .modal-card { padding: 28px 22px; }
  .modal-card h3 { font-size: 28px; }
  .modal-price strong { font-size: 30px; }
}
