    :root {
      --paper: #f1ede4;
      --paper-deep: #e7dfd3;
      --ink: #11100f;
      --muted-ink: #514c48;
      --pink: #bd6876;
      --pink-deep: #a65463;
      --rule: rgba(17, 16, 15, 0.58);
      --thin-rule: rgba(17, 16, 15, 0.22);
      --max: 1160px;
      --gutter: clamp(22px, 4vw, 56px);
      --display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
      --mono: "Courier New", Courier, monospace;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: #d8d0c5;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(circle at 18% 10%, rgba(255,255,255,0.52), transparent 28%),
        radial-gradient(circle at 72% 8%, rgba(255,255,255,0.36), transparent 26%),
        linear-gradient(180deg, var(--paper), var(--paper-deep));
      font-family: var(--mono);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 100;
    }

    body::before {
      opacity: 0.055;
      mix-blend-mode: multiply;
      background-image:
        radial-gradient(circle at 12% 21%, rgba(0,0,0,0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 43% 62%, rgba(0,0,0,0.35) 0 1px, transparent 1.4px),
        radial-gradient(circle at 78% 30%, rgba(0,0,0,0.34) 0 1px, transparent 1.2px);
      background-size: 140px 150px, 220px 210px, 320px 290px;
    }

    body::after {
      opacity: 0.028;
      background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.4) 0,
        rgba(0,0,0,0.4) 1px,
        transparent 1px,
        transparent 5px
      );
    }

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

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 4px;
    }

    .page {
      width: min(100%, 1480px);
      margin: 0 auto;
      position: relative;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.15), transparent 14%, transparent 86%, rgba(255,255,255,0.12)),
        transparent;
      box-shadow: 0 0 90px rgba(0,0,0,0.13);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(100%, 1480px);
      z-index: 20;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      padding: 38px var(--gutter) 20px;
      pointer-events: none;
    }

    .brand,
    .nav {
      pointer-events: auto;
    }

    .brand {
      font-family: var(--display);
      font-size: clamp(34px, 4.8vw, 66px);
      line-height: 0.86;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      gap: clamp(18px, 3vw, 42px);
      padding-top: 18px;
      font-family: var(--display);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: clamp(12px, 1vw, 16px);
    }

    .nav a {
      position: relative;
      padding-bottom: 8px;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-bottom: 2px dotted rgba(17,16,15,0.44);
      transform: scaleX(0.72);
      transform-origin: left;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .nav a:hover::after {
      transform: scaleX(1);
      border-color: var(--pink);
    }

    section {
      scroll-margin-top: 100px;
    }

    .hero {
      min-height: 100svh;
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.92fr);
      align-items: center;
      gap: clamp(12px, 2vw, 38px);
      padding: 118px var(--gutter) 58px;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: clamp(92px, 10vw, 138px) var(--gutter) clamp(62px, 8vw, 96px);
      z-index: -2;
      border: 1px solid rgba(17,16,15,0.12);
      background:
        linear-gradient(90deg, transparent 0 46%, rgba(189,104,118,0.07) 46% 46.22%, transparent 46.22%),
        linear-gradient(0deg, transparent 0 68%, rgba(17,16,15,0.045) 68% 68.18%, transparent 68.18%);
    }

    .hero::after {
      content: "SAD MUMS / CARE INSTRUCTIONS / DO NOT TUMBLE DRY / KEEP AWAY FROM ORDINARY DAYLIGHT";
      position: absolute;
      left: var(--gutter);
      bottom: clamp(74px, 8vw, 110px);
      z-index: -1;
      width: calc(100% - (var(--gutter) * 2));
      overflow: hidden;
      white-space: nowrap;
      font-family: var(--mono);
      font-weight: 800;
      font-size: clamp(10px, 1vw, 13px);
      letter-spacing: 0.18em;
      color: rgba(17,16,15,0.18);
      border-top: 1px dashed rgba(17,16,15,0.18);
      border-bottom: 1px dashed rgba(17,16,15,0.13);
      padding: 10px 0;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding-left: clamp(68px, 6vw, 118px);
      transform: translateY(-18px);
    }

    .side-code {
      position: absolute;
      top: 24%;
      left: var(--gutter);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-weight: 800;
      font-size: clamp(13px, 1.4vw, 18px);
      letter-spacing: 0.12em;
    }

    .side-code::before,
    .side-code::after,
    .measure-line::before,
    .measure-line::after {
      content: "+";
      color: var(--pink);
      position: absolute;
      font-size: 30px;
      font-weight: 400;
    }

    .side-code::before { top: -84px; left: -6px; }
    .side-code::after { bottom: -84px; left: -6px; }

    .side-code span {
      display: inline-block;
      border-left: 1px dashed rgba(17,16,15,0.5);
      padding-left: 16px;
    }

    .measure-line {
      position: absolute;
      right: var(--gutter);
      top: 24%;
      height: 60%;
      border-right: 1px dashed rgba(189,104,118,0.62);
      opacity: 0.82;
    }

    .measure-line::before { top: -20px; right: -10px; }
    .measure-line::after { bottom: -20px; right: -10px; }

    .hero-title {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(64px, 8.6vw, 128px);
      line-height: 0.9;
      letter-spacing: 0.035em;
      text-transform: uppercase;
      max-width: 760px;
      white-space: nowrap;
      transform: scaleY(1.18);
      text-shadow:
        1px 0 0 rgba(0,0,0,0.22),
        -1px 0 0 rgba(189,104,118,0.08);
    }

    .tagline {
      margin: clamp(18px, 2.4vw, 28px) 0 0;
      color: var(--pink);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.48;
      font-size: clamp(15px, 1.55vw, 22px);
      max-width: 560px;
    }

    .bunny-wrap {
      position: relative;
      z-index: 1;
      align-self: end;
      min-height: 660px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 22px;
    }

    .bunny-wrap::before {
      content: "";
      position: absolute;
      left: 49%;
      bottom: 72px;
      width: min(62%, 330px);
      height: 56px;
      transform: translateX(-50%);
      border-radius: 50%;
      background: radial-gradient(
        ellipse,
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.03) 62%,
        transparent 72%
      );
      filter: blur(10px);
      opacity: 0.5;
    }

    .bunny {
      width: min(100%, 645px);
      aspect-ratio: 0.82 / 1;
      position: relative;
      filter: sepia(0.08) contrast(1.02) saturate(0.82);
      transform: translate(-11%, -6%) rotate(-0.5deg);
    }

    .bunny img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0.96;
      filter: sepia(0.08) saturate(0.78) contrast(1.01) brightness(1.01);
    }

    .scroll-mark {
      position: absolute;
      left: 50%;
      bottom: 52px;
      transform: translateX(-50%);
      font-size: 32px;
      line-height: 1;
      animation: pulseDown 1.8s ease-in-out infinite;
    }

    @keyframes pulseDown {
      0%, 100% { transform: translate(-50%, 0); opacity: 0.42; }
      50% { transform: translate(-50%, 8px); opacity: 1; }
    }

    .rule {
      width: calc(100% - (var(--gutter) * 2));
      margin: 0 auto;
      border-top: 2px solid var(--rule);
    }

    .section {
      padding: clamp(56px, 8vw, 96px) var(--gutter);
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-title {
      margin: 0 0 34px;
      color: var(--pink);
      font-family: var(--mono);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-size: clamp(22px, 2.2vw, 30px);
    }

    .release-card {
      display: grid;
      grid-template-columns: minmax(220px, 360px) 1fr;
      border: 2px solid rgba(17,16,15,0.55);
      min-height: 340px;
      background: rgba(239,234,224,0.42);
    }

    .cover {
      position: relative;
      min-height: 280px;
      background:
        linear-gradient(rgba(189,104,118,0.76), rgba(189,104,118,0.76)),
        radial-gradient(circle at 35% 55%, #d9b6b8 0 12%, transparent 13%),
        radial-gradient(circle at 52% 48%, #d7c2bc 0 13%, transparent 14%),
        linear-gradient(135deg, #5f4d4f, #ddd4c8);
      filter: saturate(0.8);
    }

    .play {
      position: absolute;
      left: 32px;
      bottom: 34px;
      width: 72px;
      height: 72px;
      border: 0;
      border-radius: 50%;
      background: rgba(248,244,236,0.92);
      color: #0d0d0d;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

    .play::before {
      content: "";
      margin-left: 5px;
      border-left: 20px solid currentColor;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
    }

    .track-list {
      padding: clamp(28px, 4vw, 46px) clamp(26px, 4vw, 58px);
      align-self: center;
    }

    .album-title {
      margin: 0 0 8px;
      font-weight: 800;
      font-size: clamp(18px, 1.8vw, 24px);
    }

    .artist {
      margin: 0 0 34px;
      font-size: clamp(16px, 1.6vw, 20px);
    }

    .tracks {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 16px;
      font-size: clamp(15px, 1.5vw, 18px);
    }

    .tracks li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
    }

    .release-actions {
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(17,16,15,0.42);
      display: flex;
      gap: 34px;
      font-weight: 800;
      text-transform: lowercase;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr minmax(260px, 0.78fr);
      align-items: center;
      gap: clamp(32px, 6vw, 86px);
      min-height: 350px;
    }

    .about-copy {
      font-size: clamp(17px, 1.7vw, 22px);
      line-height: 2;
      max-width: 560px;
    }

    .bottle {
      justify-self: center;
      width: min(100%, 360px);
      aspect-ratio: 1 / 0.95;
      position: relative;
      opacity: 0.92;
      filter: sepia(0.12) saturate(0.88);
    }

    .bottle::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 12%;
      transform: translateX(-50%);
      width: 72%;
      height: 30%;
      border-radius: 50% 50% 34% 34%;
      background: linear-gradient(135deg, #c9bfb1, #eee4d5 56%, #9f9588);
      box-shadow: inset 12px -18px 28px rgba(0,0,0,0.2), 14px 22px 26px rgba(0,0,0,0.14);
    }

    .bottle::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 35%;
      transform: translateX(-50%);
      width: 32%;
      height: 50%;
      border-radius: 44% 44% 16% 16%;
      background: linear-gradient(135deg, rgba(211,113,129,0.72), rgba(225,154,166,0.86));
      box-shadow: inset 7px -16px 18px rgba(130,54,67,0.18);
    }

    .links-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(18px, 4vw, 52px);
      align-items: start;
      text-align: center;
      padding: 18px 0 8px;
    }

    .link-card {
      display: grid;
      gap: 18px;
      justify-items: center;
      font-family: var(--display);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: clamp(14px, 1.4vw, 18px);
    }

    .icon {
      width: 70px;
      height: 70px;
      display: grid;
      place-items: center;
      border: 2px solid currentColor;
      border-radius: 14px;
      font-family: var(--mono);
      font-size: 30px;
      background: rgba(255,255,255,0.08);
    }

    .link-card:nth-child(1) .icon { border-radius: 0; transform: skewX(-8deg); }
    .link-card:nth-child(2) .icon { border-radius: 50%; }
    .link-card:nth-child(3) .icon { border-radius: 50%; }

    .footer {
      margin-top: 48px;
      min-height: 180px;
      padding: 46px var(--gutter);
      background: linear-gradient(135deg, #c47380, #ad5d6c);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      color: #111;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .seal {
      width: 96px;
      height: 96px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 34px;
      letter-spacing: 0;
    }

    .barcode {
      width: 245px;
      height: 96px;
      background: repeating-linear-gradient(
        90deg,
        #111 0 3px,
        transparent 3px 7px,
        #111 7px 9px,
        transparent 9px 15px
      );
      opacity: 0.92;
    }

    @media (max-width: 860px) {
      .site-header {
        position: absolute;
        padding: 30px var(--gutter) 18px;
        align-items: flex-start;
      }

      .brand {
        font-size: clamp(34px, 9vw, 48px);
      }

      .nav {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        padding-top: 4px;
        font-size: clamp(16px, 4.8vw, 24px);
      }

      .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 112px var(--gutter) 78px;
      }

      .hero::before {
        inset: 106px 18px 48px;
      }

      .hero::after {
        left: 18px;
        bottom: 32px;
        width: calc(100% - 36px);
        font-size: 10px;
        opacity: 0.62;
      }

      .side-code,
      .measure-line {
        display: none;
      }

      .bunny-wrap {
        order: 1;
        min-height: auto;
        width: 100%;
        margin-top: 18px;
        padding-bottom: 0;
        align-self: center;
        justify-content: center;
        opacity: 0.98;
      }

      .bunny-wrap::before {
        left: 50%;
        bottom: 8px;
        width: min(42vw, 210px);
        height: 30px;
        filter: blur(9px);
        opacity: 0.34;
      }

      .bunny {
        width: min(62vw, 300px);
        aspect-ratio: 0.82 / 1;
        transform: translate(0, 8px) rotate(-0.45deg);
      }

      .hero-inner {
        order: 2;
        padding-left: 0;
        margin-top: 8px;
        transform: none;
      }

      .hero-title {
        font-size: clamp(52px, 15.5vw, 86px);
        line-height: 0.92;
        max-width: none;
        white-space: nowrap;
        transform: scaleY(1.16);
      }

      .tagline {
        margin-top: clamp(16px, 4vw, 24px);
        max-width: 92vw;
        font-size: clamp(16px, 4.5vw, 22px);
        line-height: 1.45;
        letter-spacing: 0.06em;
      }

      .care-mark {
        margin-top: 26px;
        margin-bottom: 44px;
      }

      .release-card,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .links-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 42px;
      }

      .footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .barcode {
        width: min(100%, 260px);
      }
    }

    @media (max-width: 560px) {
      :root {
        --gutter: clamp(22px, 5vw, 36px);
      }

      .site-header {
        gap: 14px;
        padding-top: 28px;
      }

      .brand {
        font-size: clamp(34px, 10vw, 44px);
      }

      .nav {
        gap: 11px;
        font-size: clamp(16px, 5.1vw, 22px);
      }

      .hero {
        padding-top: 104px;
        padding-bottom: 76px;
      }

      .hero::before {
        inset: 98px 18px 46px;
      }

      .hero::after {
        bottom: 28px;
        font-size: 9px;
      }

      .bunny-wrap {
        margin-top: 12px;
      }

      .bunny {
        width: min(64vw, 290px);
        transform: translate(0, 6px) rotate(-0.45deg);
      }

      .hero-inner {
        margin-top: 8px;
      }

      .hero-title {
        font-size: clamp(50px, 16vw, 78px);
        letter-spacing: 0.025em;
      }

      .tagline {
        max-width: 100%;
        font-size: clamp(16px, 5vw, 21px);
        letter-spacing: 0.052em;
      }

      .care-mark {
        margin-top: 26px;
        margin-bottom: 42px;
      }

      .track-list {
        padding: 28px 22px;
      }

      .tracks li {
        grid-template-columns: 1fr;
        gap: 4px;
      }
    }


/* --- Music section: Bandcamp hybrid release card --- */

.release-card.bandcamp-card {
  grid-template-columns: minmax(260px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(24px, 3.6vw, 48px);
  align-items: stretch;
  padding: clamp(22px, 3.4vw, 36px);
  min-height: auto;
}

.release-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 390px;
}

.release-note {
  margin: 28px 0 0;
  max-width: 34ch;
  color: var(--muted-ink);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
}

.release-meta {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(17,16,15,0.28);
  display: grid;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17,16,15,0.72);
}

.release-meta a {
  color: var(--ink);
  font-weight: 800;
}

.release-meta a:hover {
  color: var(--pink);
}

.release-meta a {
  width: fit-content;
  border-bottom: 1px dotted rgba(17,16,15,0.52);
  padding-bottom: 4px;
}

.bandcamp-frame {
  position: relative;
  border: 1px solid rgba(17,16,15,0.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(241,237,228,0.36)),
    rgba(255,255,255,0.28);
  padding: clamp(12px, 1.8vw, 18px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.24),
    14px 18px 30px rgba(17,16,15,0.065);
}

.bandcamp-frame::before,
.bandcamp-frame::after {
  content: "+";
  position: absolute;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 24px;
  line-height: 1;
  opacity: 0.72;
}

.bandcamp-frame::before {
  top: -14px;
  left: -10px;
}

.bandcamp-frame::after {
  right: -10px;
  bottom: -14px;
}

.bandcamp-embed {
  width: 100%;
}

.bandcamp-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 472px;
  border: 0;
  background: transparent;
}

@media (max-width: 860px) {
  .release-card.bandcamp-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    border-color: rgba(17,16,15,0.44);
  }

  .release-intro {
    min-height: auto;
    gap: 20px;
  }

  .release-note {
    max-width: none;
    margin-top: 22px;
  }

  .release-meta {
    margin-top: 8px;
  }

  .bandcamp-frame {
    padding: 10px;
    border-color: rgba(17,16,15,0.28);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.18),
      10px 12px 22px rgba(17,16,15,0.045);
  }

  .bandcamp-embed iframe {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .release-card.bandcamp-card {
    padding: 16px;
    border-color: rgba(17,16,15,0.42);
  }

  .bandcamp-frame {
    padding: 7px;
  }

  .bandcamp-frame::before,
  .bandcamp-frame::after {
    font-size: 20px;
  }

  .bandcamp-embed iframe {
    min-height: 500px;
  }
}


/* --- About section: lyric artefact --- */

.about-section {
  max-width: min(1180px, calc(100% - (var(--gutter) * 2)));
}

.about-section .about-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid rgba(17,16,15,0.44);
  background: rgba(239,234,224,0.22);
}

.about-section .about-grid::before {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 58px);
  right: clamp(28px, 5vw, 58px);
  bottom: clamp(28px, 5vw, 58px);
  border-bottom: 1px dashed rgba(17,16,15,0.26);
}

.about-section .about-copy {
  max-width: 720px;
  align-self: center;
}

.about-kicker {
  margin: 0 0 clamp(18px, 3vw, 34px);
  color: var(--pink);
  font-family: var(--mono);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-lyric {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  max-width: 820px;
}

.bottle-wrap {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(100%, 420px);
  min-height: 430px;
  display: grid;
  place-items: end center;
}

.bottle-wrap::before,
.bottle-wrap::after {
  content: "+";
  position: absolute;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 24px;
  opacity: 0.72;
}

.bottle-wrap::before {
  top: 10px;
  right: 10px;
}

.bottle-wrap::after {
  bottom: 10px;
  left: 10px;
}

.bottle-wrap .bottle {
  width: min(100%, 380px);
}

.bottle-code {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: rgba(17,16,15,0.58);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .about-section {
    max-width: none;
  }

  .about-section .about-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
    gap: 36px;
  }

  .about-section .about-copy {
    max-width: none;
  }

  .about-lyric {
    font-size: clamp(42px, 12vw, 72px);
    line-height: 0.98;
  }

  .bottle-wrap {
    width: 100%;
    min-height: 300px;
    place-items: center;
  }

  .bottle-wrap .bottle {
    width: min(78vw, 340px);
  }

  .bottle-code {
    right: -40px;
    font-size: 10px;
    opacity: 0.48;
  }
}

@media (max-width: 560px) {
  .about-section .about-grid {
    padding: 20px;
  }

  .about-kicker {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .about-lyric {
    font-size: clamp(34px, 10.8vw, 54px);
    letter-spacing: 0.028em;
  }

  .bottle-wrap {
    min-height: 260px;
  }

  .bottle-wrap .bottle {
    width: min(80vw, 300px);
  }
}


/* --- Real baby bottle image in About section --- */

.bottle-photo {
  width: min(100%, 420px);
  display: grid;
  place-items: end center;
}

.bottle-photo img {
  display: block;
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17,16,15,0.12));
}

/* Make sure legacy placeholder doesn't interfere */
.bottle-wrap .bottle {
  display: none;
}

@media (max-width: 860px) {
  .bottle-photo {
    width: 100%;
  }

  .bottle-photo img {
    width: min(78vw, 340px);
  }
}

@media (max-width: 560px) {
  .bottle-photo img {
    width: min(80vw, 300px);
  }
}

