.duckuma-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.75rem) 0 clamp(3.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 5% 10%, rgb(247 187 194 / 24%), transparent 24rem),
    radial-gradient(circle at 92% 85%, rgb(106 190 196 / 16%), transparent 26rem);
}

.duckuma-hero__container {
  width: min(100% - 2rem, 76rem);
  margin-inline: auto;
}

.duckuma-hero__shell {
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(99 73 53 / 13%);
  border-radius: clamp(1.6rem, 4vw, 2.6rem);
  background: rgb(255 253 249 / 94%);
  box-shadow: 0 24px 70px rgb(61 40 26 / 12%);
}

.duckuma-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.25rem, 6vw, 5rem);
}

.duckuma-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgb(217 111 101 / 24%);
  border-radius: 999px;
  background: #fff5f1;
  color: #bb6259;
  font: 700 0.65rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.15em;
}

.duckuma-hero h1 {
  max-width: 10ch;
  margin-top: 1.35rem;
  color: #38251d;
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.duckuma-hero__japanese {
  margin-top: 1.4rem;
  color: #4d362b;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
}

.duckuma-hero__description {
  max-width: 34rem;
  margin-top: 1rem;
  color: #725f53;
  font-size: 0.85rem;
  line-height: 1.9;
}

.duckuma-hero__description--english {
  margin-top: 0.55rem;
  color: #87766b;
  font-family: "Quicksand", sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
}

.duckuma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.duckuma-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.duckuma-hero__button:hover {
  transform: translateY(-2px);
}

.duckuma-hero__button--primary {
  background: #da7065;
  color: white;
  box-shadow: 0 10px 24px rgb(218 112 101 / 26%);
}

.duckuma-hero__button--primary:hover {
  box-shadow: 0 14px 28px rgb(218 112 101 / 34%);
}

.duckuma-hero__button--secondary {
  border: 1px solid rgb(70 49 38 / 17%);
  background: white;
  color: #4b3429;
}

.duckuma-hero__button--secondary:hover {
  background: #fbf5ec;
}

.duckuma-hero__notes {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: #a48979;
  font: 700 0.58rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.16em;
}

.duckuma-hero__notes i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #e6a79b;
}

.duckuma-hero__visual {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 2.3vw, 1.75rem);
}

.duckuma-hero__image-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 18px 45px rgb(52 84 97 / 18%);
}

.duckuma-hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: inherit;
  pointer-events: none;
}

.duckuma-hero__image-frame img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
  object-position: center;
}

.duckuma-hero__stamp {
  position: absolute;
  right: clamp(1.6rem, 4vw, 3rem);
  bottom: clamp(1.6rem, 4vw, 3rem);
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 2px dashed rgb(255 255 255 / 86%);
  border-radius: 50%;
  background: rgb(206 93 88 / 88%);
  color: white;
  font: 700 0.68rem/1.15 "Quicksand", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 8px 24px rgb(76 44 35 / 20%);
}

.duckuma-discover {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  scroll-margin-top: 5rem;
}

.duckuma-discover::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto;
  height: 74%;
  background:
    radial-gradient(circle at 18% 25%, rgb(246 189 179 / 22%), transparent 26%),
    radial-gradient(circle at 80% 64%, rgb(110 190 179 / 16%), transparent 28%);
  pointer-events: none;
}

.duckuma-discover__container {
  position: relative;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.duckuma-discover__intro {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.duckuma-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgb(108 80 57 / 16%);
  border-radius: 999px;
  background: rgb(255 255 255 / 76%);
  color: #8b654c;
  font: 700 0.65rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.16em;
  box-shadow: 0 6px 18px rgb(78 50 31 / 7%);
}

.duckuma-discover h2 {
  margin-top: 1.25rem;
  color: #422b21;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.duckuma-discover__lead {
  max-width: 37rem;
  margin: 1rem auto 0;
  color: #6c574b;
  font-size: 0.9rem;
  line-height: 1.9;
}

.duckuma-discover__layout {
  display: grid;
  gap: 1.5rem;
}

.duckuma-discover__journal,
.duckuma-coloring-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(108 80 57 / 14%);
  border-radius: 1.75rem;
  background: #fffdf9;
  box-shadow: 0 18px 50px rgb(61 40 26 / 10%);
}

.duckuma-discover__journal {
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.duckuma-discover__journal img {
  width: 100%;
  border-radius: 1.15rem;
}

.duckuma-discover__tape {
  position: absolute;
  z-index: 2;
  top: 0.4rem;
  left: 50%;
  width: 6.25rem;
  height: 1.2rem;
  border-radius: 0.15rem;
  background: repeating-linear-gradient(45deg, rgb(236 148 120 / 52%) 0 4px, rgb(236 148 120 / 24%) 4px 8px);
  transform: translateX(-50%) rotate(-1deg);
}

.duckuma-discover__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.duckuma-discover__chips span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f7eee4;
  color: #7d5944;
  font: 700 0.6rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.12em;
}

.duckuma-coloring-feature {
  display: grid;
  align-items: center;
  background: linear-gradient(145deg, #fff9f4, #f8f3e8);
}

.duckuma-coloring-feature__copy {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.duckuma-coloring-feature__number {
  color: #d36d61;
  font: 700 0.65rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.15em;
}

.duckuma-coloring-feature h3 {
  margin-top: 0.75rem;
  color: #422b21;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
}

.duckuma-coloring-feature p {
  margin-top: 1rem;
  color: #6c574b;
  font-size: 0.85rem;
  line-height: 1.9;
}

.duckuma-coloring-feature a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: #d96f65;
  color: white;
  font: 700 0.8rem/1 "Quicksand", sans-serif;
  box-shadow: 0 9px 20px rgb(217 111 101 / 22%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.duckuma-coloring-feature a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgb(217 111 101 / 30%);
}

.duckuma-coloring-feature__art {
  display: grid;
  min-height: 24rem;
  place-items: center;
  padding: 1.5rem 1.5rem 0;
  background: linear-gradient(180deg, rgb(207 233 245 / 55%), rgb(255 255 255 / 10%));
}

.duckuma-coloring-feature__art img {
  max-height: 34rem;
  width: auto;
  border: 8px solid white;
  border-bottom: 0;
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 18px 34px rgb(61 40 26 / 16%);
}

#story video[poster] {
  background: #f8efe4;
}

@media (min-width: 800px) {
  .duckuma-hero__shell {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .duckuma-discover__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .duckuma-coloring-feature {
    grid-template-rows: auto 1fr;
  }
}

@media (max-width: 799px) {
  .duckuma-hero {
    padding-top: 1.25rem;
  }

  .duckuma-hero__visual {
    padding-top: 0;
  }

  .duckuma-hero__image-frame img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .duckuma-hero__actions {
    flex-direction: column;
  }

  .duckuma-hero__button {
    width: 100%;
  }

  .duckuma-discover {
    padding: 4rem 0;
  }

  .duckuma-coloring-feature__art {
    min-height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .duckuma-hero__button,
  .duckuma-coloring-feature a {
    transition: none;
  }
}

/* v6: denser travel-magazine rhythm inspired by the supplied references. */
.duckuma-hero {
  padding-block: clamp(1.25rem, 3vw, 2.75rem) clamp(2rem, 4vw, 3.5rem);
}

.duckuma-hero__copy {
  padding: clamp(1.75rem, 4vw, 3.75rem);
}

.duckuma-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
}

.duckuma-hero__japanese {
  margin-top: 1rem;
}

.duckuma-hero__description {
  margin-top: 0.7rem;
  line-height: 1.75;
}

.duckuma-hero__actions {
  margin-top: 1.3rem;
}

.duckuma-hero__notes {
  margin-top: 1.1rem;
}

.duckuma-hero__image-frame img {
  min-height: 25rem;
}

.duckuma-magazine-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 72rem);
  margin: -1.35rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgb(99 73 53 / 12%);
  border-radius: 1.25rem;
  background: linear-gradient(100deg, #fff3f1, #f5faff 56%, #eef8fb);
  box-shadow: 0 12px 30px rgb(61 40 26 / 8%);
}

.duckuma-magazine-strip__title {
  flex: 0 0 auto;
  color: #b95f59;
  font: 700 0.65rem/1.2 "Quicksand", sans-serif;
  letter-spacing: 0.13em;
}

.duckuma-magazine-strip__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.duckuma-magazine-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #574136;
  font: 700 0.68rem/1 "Quicksand", sans-serif;
  transition: background-color 160ms ease, transform 160ms ease;
}

.duckuma-magazine-strip a:hover {
  background: rgb(255 255 255 / 76%);
  transform: translateY(-1px);
}

.duckuma-magazine-strip b {
  color: #d66e66;
  font-size: 0.6rem;
}

#links {
  position: relative;
  padding-block: clamp(3rem, 5vw, 4rem) !important;
  background:
    linear-gradient(180deg, transparent 0 8%, rgb(233 246 250 / 70%) 8% 92%, transparent 92%),
    radial-gradient(circle at 7% 42%, rgb(247 194 203 / 22%), transparent 22rem);
}

#links .max-w-2xl > .mt-5 {
  margin-top: 0.9rem;
}

#links .max-w-2xl > .mt-3 {
  margin-top: 0.45rem;
}

#links .max-w-2xl > .mt-4 {
  margin-top: 0.65rem;
}

#links .duckuma-links-grid {
  gap: 1rem;
  margin-top: 1.75rem;
}

#links .duckuma-link-card {
  padding: 1rem;
  border-radius: 1.35rem;
  box-shadow: 0 12px 30px rgb(61 40 26 / 9%);
}

#links .duckuma-link-card:nth-child(1) {
  background: linear-gradient(155deg, #fffdf9, #eef9fb);
}

#links .duckuma-link-card:nth-child(2) {
  background: linear-gradient(155deg, #fffdf9, #fff0f2);
}

#links .duckuma-link-card:nth-child(3) {
  background: linear-gradient(155deg, #fffdf9, #f1f8fb);
}

#links .duckuma-link-card::before {
  position: absolute;
  z-index: 3;
  top: 1.65rem;
  left: 1.65rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 90%);
  color: #775a49;
  font: 700 0.58rem/1 "Quicksand", sans-serif;
  letter-spacing: 0.1em;
  box-shadow: 0 5px 16px rgb(61 40 26 / 10%);
}

#links .duckuma-link-card:nth-child(1)::before { content: "01 · TRAVEL HELP"; }
#links .duckuma-link-card:nth-child(2)::before { content: "02 · CREATE & PLAY"; }
#links .duckuma-link-card:nth-child(3)::before { content: "03 · EVERYDAY SMILES"; }

#links .duckuma-link-card > div:last-child {
  padding-top: 1rem;
}

#links .duckuma-link-card h2 {
  font-size: 1.3rem;
}

#links .duckuma-link-card p {
  margin-top: 0.45rem;
}

#links .duckuma-link-card span.mt-5 {
  margin-top: 0.85rem;
}

#story {
  padding-block: clamp(3rem, 5vw, 4.5rem) !important;
  background:
    radial-gradient(circle at 92% 18%, rgb(248 197 207 / 22%), transparent 24rem),
    linear-gradient(180deg, transparent, rgb(255 247 247 / 72%) 18% 82%, transparent);
}

#story .max-w-2xl > .mt-5 { margin-top: 0.9rem; }
#story .max-w-2xl > .mt-3 { margin-top: 0.45rem; }
#story .max-w-2xl > .mt-4 { margin-top: 0.65rem; }

#story .space-y-9 {
  margin-top: 1.9rem;
}

#story article + article {
  margin-top: 1.25rem !important;
}

#story article {
  border-radius: 1.45rem;
  box-shadow: 0 14px 34px rgb(61 40 26 / 9%);
}

#story article > div:first-child {
  min-height: 20rem;
  padding: 1rem !important;
}

#story article video {
  min-height: 18rem !important;
}

#story article > div:last-child {
  padding: clamp(1.5rem, 3vw, 2.25rem) !important;
}

#story article h3 {
  margin-top: 1rem;
}

#story article p.mt-5,
#story article p.mt-7 {
  margin-top: 0.8rem;
}

#instagram {
  padding-block: clamp(2.75rem, 4vw, 3.75rem) !important;
  background: linear-gradient(110deg, rgb(238 248 251 / 82%), rgb(255 242 244 / 82%));
}

#instagram .paper-card {
  max-width: 56rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) !important;
  border-radius: 1.5rem;
}

#instagram .mt-4 { margin-top: 0.65rem; }
#instagram .mt-7 { margin-top: 1rem; }

footer {
  padding-block: 1.25rem !important;
}

@media (max-width: 799px) {
  .duckuma-hero__image-frame img {
    min-height: auto;
  }

  .duckuma-magazine-strip {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -1rem;
  }

  .duckuma-magazine-strip__links {
    justify-content: flex-start;
  }

  #links,
  #story,
  #instagram {
    padding-block: 2.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .duckuma-magazine-strip a {
    transition: none;
  }
}

/* v7: tablet/intermediate hero layout. Keep the illustration beside the copy. */
@media (min-width: 640px) and (max-width: 899px) {
  .duckuma-hero__shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
  }

  .duckuma-hero__copy {
    padding: 2rem 1.35rem 2rem 1.75rem;
  }

  .duckuma-hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 5.2vw, 3rem);
    line-height: 1.02;
  }

  .duckuma-hero__japanese {
    font-size: 1.05rem;
  }

  .duckuma-hero__description {
    font-size: 0.76rem;
    line-height: 1.7;
  }

  .duckuma-hero__actions {
    flex-direction: column;
  }

  .duckuma-hero__button {
    width: 100%;
  }

  .duckuma-hero__visual {
    align-self: center;
    padding: 1rem 1rem 1rem 0;
  }

  .duckuma-hero__image-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background: #edf8fc;
  }

  .duckuma-hero__image-frame img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
  }

  .duckuma-hero__stamp {
    right: 1.55rem;
    bottom: 1.55rem;
    width: 4rem;
    height: 4rem;
    font-size: 0.6rem;
  }

  .duckuma-hero__description--english {
    font-size: 0.72rem;
    line-height: 1.55;
  }
}

@media (max-width: 639px) {
  .duckuma-hero h1 {
    max-width: none;
  }
}
