/* ============================================
   THE DANK DUCKERY — Stylesheet
   ============================================
   Edit colors here: search for "COLOR TOKENS" below.
   Edit fonts here: search for "TYPE TOKENS" below.
   ============================================ */

/* ---- COLOR TOKENS ---- */
:root {
  --eggshell: #FAF7F0;
  --eggshell-deep: #F1ECE0;
  --moss: #2D4034;
  --moss-deep: #1F2D25;
  --sage: #4A5D3A;
  --straw: #C9A66B;
  --straw-light: #E3CFA0;
  --plum: #8B7D9B;
  --ink: #1A1A1A;
  --ink-soft: #4A4640;
  --white: #FFFFFF;
  --line: rgba(26, 26, 26, 0.12);

  /* TYPE TOKENS */
  --font-display: 'Roboto Slab', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--eggshell);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--moss-deep);
  letter-spacing: -0.01em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

/* ---- NAV ---- */
/*
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
*/

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--moss-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-brand img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.nav-brand .brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--moss);
  border-bottom-color: var(--straw);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 26px; height: 26px; color: var(--moss-deep); }

/* ---- INSTAGRAM NAV ICON ---- */
.nav-ig {
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  padding: 4px 2px;
  border-bottom: none !important;
}
.nav-ig:hover { color: var(--plum); border-bottom-color: transparent !important; }

/*
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--eggshell);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    height: auto;
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 16px 28px;
    width: 100%;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .nav-toggle { display: block; }
  .nav-ig {
    padding: 16px 28px;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-ig::after { content: "Instagram"; }
}
*/

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--eggshell);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    height: calc(100vh - var(--nav-height, 72px));
    height: calc(100dvh - var(--nav-height, 72px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 16px 28px;
    width: 100%;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .nav-toggle { display: block; }
  .nav-ig {
    padding: 16px 28px;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-ig::after { content: "Instagram"; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 85% -10%, rgba(201,166,107,0.18), transparent 55%),
    radial-gradient(circle at -5% 100%, rgba(139,125,155,0.14), transparent 50%),
    var(--eggshell);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--sage); }

.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--moss);
  color: var(--white);
}
.btn-primary:hover { background: var(--moss-deep); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border-color: var(--moss);
  color: var(--moss);
}
.btn-secondary:hover { background: var(--moss); color: var(--white); }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: var(--straw-light);
  border: 3px solid var(--white);
  box-shadow: 0 24px 48px -16px rgba(45, 64, 52, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-placeholder {
  text-align: center;
  color: var(--moss-deep);
  padding: 20px;
}
.photo-placeholder svg { width: 56px; height: 56px; margin: 0 auto 12px; opacity: 0.5; }
.photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 13px;
  display: block;
  opacity: 0.7;
}

.hero-stat-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-card .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--moss);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-card .label {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .hero-stat-card { left: 50%; transform: translateX(-50%); }
}

/* ---- SECTION SCAFFOLDING ---- */
section { padding: 96px 0; }
section:nth-of-type(even) { background: var(--eggshell-deep); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 12px;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p { margin-bottom: 18px; color: var(--ink-soft); }
.about-text p:last-child { margin-bottom: 0; }

.about-text strong { color: var(--moss-deep); }

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-photo-grid .ph-box:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.ph-box {
  aspect-ratio: 1;
  background: var(--straw-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ph-box img { width: 100%; height: 100%; object-fit: cover; }
.ph-box .photo-placeholder svg { width: 36px; height: 36px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- FLOCK LEDGER (signature element) ---- */
.ledger {
  background: var(--moss-deep);
  color: var(--eggshell);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(31, 45, 37, 0.5);
}

.ledger-header {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 70px;
  gap: 16px;
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--straw-light);
  border-bottom: 1px solid rgba(250,247,240,0.15);
}

.ledger-rows { padding: 4px 0; }

.ledger-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 70px;
  gap: 16px;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(250,247,240,0.08);
  transition: background 0.15s ease;
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row:hover { background: rgba(250,247,240,0.05); }

.ledger-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(250,247,240,0.3);
}

.ledger-name {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 17px;
}
.ledger-name .duck-given-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--straw-light);
  opacity: 0.85;
  margin-top: 2px;
}

.ledger-note { font-size: 14px; color: rgba(250,247,240,0.75); }

.ledger-count {
  font-family: var(--font-mono);
  text-align: right;
  font-size: 15px;
  color: var(--straw-light);
}

@media (max-width: 700px) {
  .ledger-header { display: none; }
  .ledger-row {
    grid-template-columns: 50px 1fr;
    grid-template-areas:
      "swatch name"
      "note note"
      "count count";
    row-gap: 6px;
    padding: 18px 20px;
  }
  .ledger-swatch { grid-area: swatch; width: 30px; height: 30px; }
  .ledger-name { grid-area: name; }
  .ledger-note { grid-area: note; }
  .ledger-count { grid-area: count; text-align: left; }
  .ledger-count::before { content: "Count: "; opacity: 0.6; }
}

.ledger-footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---- FSA / FARM PRACTICES ---- */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(45,64,52,0.25);
}

.practice-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--eggshell-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--moss);
}
.practice-icon svg { width: 24px; height: 24px; }

.practice-card h3 { font-size: 19px; margin-bottom: 10px; }
.practice-card p { color: var(--ink-soft); font-size: 15px; }

.fsa-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--sage), var(--moss-deep));
  border-radius: 16px;
  padding: 36px 40px;
  color: var(--eggshell);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fsa-banner-text h3 { color: var(--eggshell); font-size: 21px; margin-bottom: 6px; }
.fsa-banner-text p { color: rgba(250,247,240,0.85); font-size: 15px; max-width: 460px; }

.fsa-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(250,247,240,0.15);
  border: 1px solid rgba(250,247,240,0.35);
  padding: 10px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .practices-grid { grid-template-columns: 1fr; }
}

/* ---- MERCH ---- */
.merch-feature { max-width: 780px; margin: 0 auto; }

.merch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px -16px rgba(45,64,52,0.18);
}

.merch-card-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 48px 40px;
}

.merch-duck-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--eggshell-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-card-text h3 { font-size: 26px; margin-bottom: 10px; }
.merch-card-text p { color: var(--ink-soft); margin-bottom: 24px; font-size: 16px; }
.merch-btn { display: inline-flex; }

.merch-ig-strip {
  background: var(--eggshell-deep);
  border-top: 1px solid var(--line);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--plum);
  font-size: 14px;
  transition: color 0.15s ease;
}
.ig-link:hover { color: var(--moss); }

@media (max-width: 640px) {
  .merch-card-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 28px;
    gap: 24px;
  }
  .merch-ig-strip { padding: 16px 28px; }
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info-list { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--moss);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-item h4 { font-size: 16px; margin-bottom: 2px; }
.contact-info-item p { color: var(--ink-soft); font-size: 15px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--moss-deep);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--eggshell);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- FOOTER ---- */
footer {
  background: var(--moss-deep);
  color: rgba(250,247,240,0.7);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250,247,240,0.12);
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--eggshell);
  font-size: 18px;
  font-weight: 700;
}

.footer-links { display: flex; gap: 24px; font-size: 14px; flex-wrap: wrap; align-items: center; }
.footer-links a:hover { color: var(--eggshell); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- FOOTER INSTAGRAM LINK ---- */
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250,247,240,0.7);
  transition: color 0.15s ease;
}
.footer-ig:hover { color: var(--eggshell); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

/* ================================================
   DUCK LAB SECTION — the easter egg
   ================================================ */

.ducklab-section {
  background: var(--moss-deep);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}

/* starfield dots — just vibes */
.ducklab-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 20%, rgba(227,207,160,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 65%, rgba(227,207,160,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 44% 15%, rgba(227,207,160,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 78%, rgba(227,207,160,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(227,207,160,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 58%, rgba(227,207,160,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 88%, rgba(139,125,155,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 12%, rgba(139,125,155,0.35) 0%, transparent 100%),
    radial-gradient(circle at 20% 80%, rgba(139,125,155,0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(201,166,107,0.1), transparent 40%);
  pointer-events: none;
}

/* the pond — a wobbling oval */
.ducklab-pond {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ripple rings radiating outward */
.pond-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201,166,107,0.2);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 4s ease-out infinite;
}
.pond-ring-1 { width: 260px; height: 130px; animation-delay: 0s; }
.pond-ring-2 { width: 420px; height: 210px; animation-delay: 1.2s; }
.pond-ring-3 { width: 580px; height: 290px; animation-delay: 2.4s; }

@keyframes ripple {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.85); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.1); }
}

/* the duck floating above */
.pond-duck {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  animation: bob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
  cursor: default;
  user-select: none;
}

@keyframes bob {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

/* speech bubble */
.ducklab-bubble {
  position: relative;
  z-index: 2;
  background: rgba(250,247,240,0.06);
  border: 1px solid rgba(201,166,107,0.25);
  border-radius: 24px;
  padding: 36px 40px 32px;
  text-align: center;
  backdrop-filter: blur(6px);
  /* little triangle pointing up to the duck */
}
.ducklab-bubble::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(201,166,107,0.25);
}
.ducklab-bubble::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(31,45,37,0.85);
}

.dl-whisper {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--straw);
  margin-bottom: 12px;
}

.dl-title {
  color: var(--eggshell);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.dl-body {
  color: rgba(250,247,240,0.65);
  font-size: 15px;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 28px;
}

/* the CTA — casual, not a button */
.dl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--straw-light);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(201,166,107,0.4);
  transition: all 0.2s ease;
  background: rgba(201,166,107,0.08);
}
.dl-cta:hover {
  background: rgba(201,166,107,0.18);
  border-color: var(--straw);
  color: var(--eggshell);
  gap: 14px;
}
.dl-cta-duck {
  font-size: 16px;
  animation: waddle 1.8s ease-in-out infinite;
  display: inline-block;
}
@keyframes waddle {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}
.dl-cta-arrow {
  transition: transform 0.2s ease;
}
.dl-cta:hover .dl-cta-arrow { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .pond-duck { animation: none; }
  .pond-ring { animation: none; opacity: 0.2; }
  .dl-cta-duck { animation: none; }
}

@media (max-width: 600px) {
  .ducklab-bubble { padding: 28px 24px 24px; }
  .pond-ring-3 { display: none; }
}
