:root {
  --lilac: #cbb4d2;
  --sage: #ccd7c3;
  --ink: #111;
  --white: #fff;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  background: white;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #493063;
  outline-offset: 5px;
}
section {
  scroll-margin-top: 20px;
}
.wrap {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 20;
  background: #fff;
  padding: 12px;
}
.skip:focus {
  transform: none;
}
.hero {
  background: var(--lilac);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 106px;
  position: relative;
  z-index: 5;
}
.brand {
  width: 218px;
  display: block;
}
.brand img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 15px;
  font-weight: 700;
}
.header nav a:not(.nav-heart):hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-heart {
  font-size: 42px;
  line-height: 1;
}
.menu-toggle {
  display: none;
}
.hero-content {
  text-align: center;
}
.hero h1 {
  position: relative;
  max-width: 565px;
  margin: 0 auto;
}
.hero-heading {
  width: 100%;
  height: auto;
}
.hero-sub {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 0;
}
.hero-scene {
  position: relative;
  max-width: 940px;
  margin: -30px auto -10px;
}
.trio {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 86%,
    transparent 100%
  );
}
.name-tags {
  position: absolute;
  left: 7%;
  right: 5%;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}
.name-tags a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  max-width: 235px;
  background: #d7bfdd;
  padding: 6px 12px;
  box-shadow: 2px 9px 12px #51365824;
  transform: rotate(-3deg);
  transition: transform 0.2s;
}
.name-tags a:nth-child(2) {
  transform: rotate(1deg);
}
.name-tags a:nth-child(3) {
  transform: rotate(-2deg);
}
.name-tags a:hover {
  transform: translateY(-5px) rotate(0);
}
.name-tags img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.handnote {
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 20px;
  line-height: 1.3;
  font-style: italic;
}
.note-left,
.note-right {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.note-left {
  left: -90px;
  top: 39%;
  transform: rotate(-10deg);
}
.note-right {
  right: -70px;
  top: 15%;
  transform: rotate(8deg);
}
.handnote span {
  display: block;
  font-size: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  padding: 13px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 18px;
  min-height: 52px;
  line-height: 1.2;
  transition:
    transform 0.16s,
    background 0.16s;
  position: relative;
  z-index: 1;
}
.pill span {
  font-size: 26px;
  line-height: 1;
  transition: transform 0.16s;
}
.pill:hover {
  transform: translateY(-2px);
  background: #29212c;
}
.pill:hover span {
  transform: translateX(4px);
}
.pill:active {
  transform: scale(0.98);
}
.hero .pill {
  min-width: 320px;
}
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45px;
  display: block;
  pointer-events: none;
}
.wave-bottom {
  bottom: -1px;
}
.wave-top {
  top: -1px;
}
.mood {
  text-align: center;
  padding: 28px 0 52px;
}
.mood h2 img {
  width: 430px;
  margin: 0 auto 8px;
}
.mood > p {
  font-weight: 600;
  font-size: 18px;
}
.mood-options {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mood-card {
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
  border: 2px solid transparent;
  border-radius: 17px;
  min-height: 112px;
  padding: 18px 20px;
  gap: 18px;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.mood-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.mood-card:has(input:checked) {
  border-color: #111;
  box-shadow: 0 4px 0 #111;
}
.mood-card:has(input:focus-visible) {
  outline: 3px solid #493063;
  outline-offset: 5px;
}
.mood-card:hover {
  transform: translateY(-3px);
}
.tropical {
  background: #fff0b7;
}
.romantic {
  background: #dcc4e3;
}
.curious {
  background: #d1ddc8;
}
.mood-symbol {
  font-size: 50px;
  line-height: 1;
  flex: 0 0 40px;
}
.mood-card:hover .mood-symbol {
  animation: wiggle 0.4s;
}
.mood-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.3;
}
.mood-card small {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 3px;
}
.chevron {
  margin-left: auto;
  font-size: 24px;
}
.feature {
  background: var(--sage);
  position: relative;
  padding: 55px 0 65px;
  overflow: hidden;
}
.feature-inner {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  min-height: 460px;
}
.feature-photo {
  position: relative;
  max-width: 490px;
  margin: auto;
  width: 100%;
}
.feature-photo > img {
  width: 100%;
  height: 490px;
  object-fit: contain;
  mask-image: radial-gradient(
    ellipse 61% 59% at 50% 48%,
    #000 48%,
    transparent 94%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 61% 59% at 50% 48%,
    #000 48%,
    transparent 94%
  );
}
.feature-note {
  position: absolute;
  left: -25px;
  top: 42%;
  transform: rotate(-9deg);
  max-width: 110px;
}
.feature-copy {
  position: relative;
  padding: 12px 35px 30px 26px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
}
.feature h2 {
  margin: 15px 0 10px;
}
.feature h2 img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  object-position: left;
}
.feature-copy > p {
  font-size: 21px;
  font-weight: 600;
  max-width: 465px;
  line-height: 1.5;
  margin: 0 0 30px;
}
.flavor-note {
  display: block;
  position: absolute;
  right: 0;
  bottom: -40px;
  transform: rotate(8deg);
}
.feature-photo > img,
.feature h2 img {
  transition: opacity 0.18s;
}
.closing {
  background: var(--lilac);
  padding: 34px 0 22px;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story h2 img {
  width: 440px;
}
.story-lead {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 18px;
}
.story-details {
  max-width: 420px;
}
.story-details summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  list-style: none;
}
.story-details summary span {
  padding-left: 8px;
}
.story-details p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}
.social {
  border-left: 1px solid #1115;
  padding-left: 40px;
}
.social h3 {
  font-size: 17px;
  margin-bottom: 14px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 9px;
}
.social-tile {
  background: #d3ddc7;
  border-radius: 9px;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1.1;
  transform: rotate(2deg);
  text-align: center;
}
.social-action {
  background: none;
  border: 0;
  border-bottom: 1px solid #111;
  padding: 0 0 3px;
  margin-top: 17px;
  font-size: 14px;
  font-weight: 700;
}
.social-action span {
  padding-left: 12px;
}
.brandline {
  font-size: 10px;
  letter-spacing: 2px;
  text-align: right;
  max-width: 1200px;
  margin: 35px auto 0;
  padding: 0 40px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
  font-size: 12px;
}
.footer nav {
  display: flex;
  gap: 30px;
}
.footer > span {
  font-family: cursive;
  font-style: italic;
}
.footer a:hover {
  text-decoration: underline;
}
dialog {
  border: 2px solid #111;
  border-radius: 26px;
  background: #f6edf8;
  padding: 42px;
  max-width: 520px;
  width: calc(100% - 32px);
  box-shadow: 10px 10px 0 #111;
  max-height: 85dvh;
  overflow: auto;
}
dialog::backdrop {
  background: #1d132280;
  backdrop-filter: blur(5px);
}
dialog h2 {
  font-size: clamp(25px, 5vw, 38px);
  font-weight: 900;
  overflow-wrap: anywhere;
  line-height: 1.15;
  margin: 15px 0;
}
dialog p {
  margin: 12px 0;
}
.close-dialog {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 32px;
}
.dialog-note {
  font-size: 14px;
  color: #514556;
}
dialog .pill {
  margin-top: 15px;
  font-size: 16px;
}
.caption {
  border-radius: 14px;
  background: #fff;
  padding: 20px;
}
.copy-status {
  font-size: 14px;
  min-height: 22px;
}
.reveal {
  animation: arrive 0.6s both;
}
.hero-heading {
  animation: arrive 0.45s both;
}
.hero .trio {
  animation: arrive 0.6s 0.08s both;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wiggle {
  30% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(4deg);
  }
}
@media (min-width: 1440px) {
  .hero-scene {
    max-width: 900px;
  }
  .hero h1 {
    max-width: 525px;
  }
}
@media (max-width: 1100px) {
  .note-left {
    left: -15px;
    font-size: 17px;
  }
  .note-right {
    right: -10px;
    font-size: 17px;
  }
  .hero-scene {
    max-width: 800px;
  }
  .mood-card {
    padding: 16px 14px;
    gap: 10px;
  }
  .mood-card small {
    font-size: 12px;
  }
  .feature-note {
    left: 0;
  }
  .feature-copy {
    padding-right: 0;
  }
  .flavor-note {
    right: 15px;
  }
  .closing-inner {
    gap: 30px;
  }
  .social {
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header {
    height: 86px;
  }
  .brand {
    width: 170px;
  }
  .brand img {
    max-height: 80px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    background: transparent;
    border: 1.5px solid #111;
    border-radius: 50%;
    height: 44px;
    width: 44px;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #111;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #f6edf8;
    border: 2px solid #111;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 5px 5px 0 #111;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 12px 15px;
  }
  .header .nav-heart {
    display: none;
  }
  .hero {
    padding-bottom: 52px;
  }
  .hero h1 {
    max-width: 440px;
    margin: 5px auto 0;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.4;
    max-width: 300px;
    margin: 12px auto 0;
  }
  .hero-scene {
    margin: 0 -18px 10px;
    max-width: none;
  }
  .trio {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
  }
  .note-left,
  .note-right {
    display: none;
  }
  .name-tags {
    left: 6%;
    right: 5%;
    gap: 9px;
    bottom: 6%;
  }
  .name-tags a {
    padding: 3px 5px;
    min-height: 43px;
    border-radius: 0;
  }
  .name-tags img {
    height: 36px;
  }
  .hero .pill {
    min-width: 0;
    width: calc(100% - 26px);
    max-width: 340px;
    font-size: 17px;
  }
  .wave {
    height: 26px;
  }
  .mood {
    padding: 26px 0 45px;
  }
  .mood h2 img {
    width: min(100%, 355px);
  }
  .mood > p {
    font-size: 16px;
  }
  .mood-options {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 23px;
  }
  .mood-card {
    min-height: 86px;
    padding: 15px 20px;
    gap: 20px;
  }
  .mood-card strong {
    font-size: 21px;
  }
  .mood-card small {
    font-size: 14px;
  }
  .mood-symbol {
    font-size: 43px;
  }
  .feature {
    padding: 45px 0 62px;
  }
  .feature-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .feature-photo {
    max-width: 380px;
  }
  .feature-photo > img {
    height: 370px;
  }
  .feature-note {
    left: 0;
    top: 36%;
    font-size: 16px;
  }
  .feature-copy {
    padding: 15px 12px 0;
    text-align: center;
    width: 100%;
  }
  .eyebrow {
    font-size: 11px;
  }
  .feature h2 img {
    max-height: 110px;
    object-position: center;
  }
  .feature h2 {
    margin: 12px 0 18px;
  }
  .feature-copy > p {
    font-size: 18px;
    max-width: 380px;
    margin: 0 auto 24px;
  }
  .flavor-note {
    display: none;
  }
  .feature-copy .pill {
    width: 100%;
    max-width: 330px;
  }
  .closing {
    padding: 26px 0;
  }
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story h2 img {
    width: 360px;
    max-width: 100%;
    margin: auto;
  }
  .story {
    text-align: center;
  }
  .story-lead {
    font-size: 16px;
  }
  .story-details {
    margin: auto;
  }
  .social {
    padding: 25px 0 0;
    border: 0;
    border-top: 1px solid #1114;
  }
  .social-grid {
    gap: 9px;
  }
  .social-tile {
    font-size: 15px;
  }
  .social-action {
    min-height: 44px;
  }
  .brandline {
    text-align: center;
    font-size: 9px;
    line-height: 1.8;
    margin-top: 28px;
    padding: 0 20px;
  }
  .footer {
    flex-direction: column;
    padding: 22px 0;
    gap: 14px;
  }
  .footer nav {
    gap: 25px;
  }
  .footer > span {
    display: none;
  }
  dialog {
    padding: 35px 24px;
    box-shadow: 5px 5px 0 #111;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .mood-card {
    gap: 12px;
    padding: 14px;
  }
  .mood-card small {
    font-size: 13px;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-tile {
    font-size: 23px;
  }
  .hero-scene {
    margin-inline: -14px;
  }
  .trio {
    min-height: 215px;
  }
  .name-tags img {
    height: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Keep the desktop call to action close to the first viewport. */
@media (min-width: 768px) {
  .hero-scene {
    height: 445px;
    margin-top: -24px;
    overflow: visible;
  }
  .hero-scene .trio {
    height: 510px;
    object-fit: contain;
    position: relative;
    top: -36px;
  }
  .name-tags {
    bottom: 3%;
  }
  .hero h1 {
    max-width: 500px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hero {
    padding-bottom: 52px;
  }
  .hero .pill {
    margin-top: 14px;
  }
  .note-right {
    top: 10%;
  }
  .note-left {
    top: 35%;
  }
}
@font-face {
  font-family: Nunito;
  src: url("assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("assets/fonts/nunito-latin-700-normal.woff2") format("woff2");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Caveat;
  src: url("assets/fonts/caveat-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Nunito, Arial, sans-serif;
}
.handnote,
.social-tile,
.footer > span {
  font-family: Caveat, cursive;
  font-style: normal;
}
.handnote {
  font-size: 26px;
}
.social-tile {
  font-size: 23px;
}
@media (max-width: 767px) {
  .handnote {
    font-size: 22px;
  }
  .social-tile {
    font-size: 20px;
  }
}
.trio {
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
}

/* Keep the subtitle above the overlapping studio scene. */
.hero-sub {
  position: relative;
  z-index: 2;
}
.hero-scene .trio {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 17%,
    #000 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 17%,
    #000 82%,
    transparent 100%
  );
  mask-composite: add;
  -webkit-mask-composite: source-over;
}
.feature-photo > img {
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 7%,
    #000 91%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 7%,
    #000 91%,
    transparent
  );
}
.social-grid img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1;
}
body:has(dialog[open]) {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 950px) {
  .mood-options {
    gap: 12px;
  }
  .mood-card {
    gap: 8px;
    padding: 14px 10px;
  }
  .mood-symbol {
    font-size: 36px;
    flex-basis: 30px;
  }
  .mood-card strong {
    font-size: 19px;
  }
  .chevron {
    font-size: 18px;
  }
}
/* Apply the feather to the image bounds, avoiding object-fit letterboxing. */
.feature-photo > img {
  width: 392px;
  height: auto;
  aspect-ratio: 1122/1402;
  mask-image: radial-gradient(ellipse at center, #000 54%, transparent 74%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 54%,
    transparent 74%
  );
}
@media (max-width: 767px) {
  .feature-photo > img {
    width: 296px;
  }
}
@media (min-width: 768px) {
  .hero-scene .trio {
    width: min(100%, 765px);
    height: auto;
    margin-inline: auto;
  }
}
.hero-scene .trio {
  mask-image: radial-gradient(ellipse at center, #000 56%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 56%,
    transparent 75%
  );
}
@media (max-width: 359px) {
  .hero .pill {
    font-size: 16px;
    gap: 16px;
    padding-inline: 18px;
  }
}
.not-found {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: var(--lilac);
  padding: 28px;
}
.not-found main {
  max-width: 640px;
  text-align: center;
}
.not-found img {
  margin: 0 auto 36px;
}
.not-found h1 {
  line-height: 1.15;
  font-size: clamp(32px, 7vw, 54px);
  margin: 20px 0;
}
.not-found .pill {
  margin-top: 28px;
}

/* Four drinks: a complete lineup and an equally weighted mood for coconut. */
.carefree{background:#f7e8d6}
.mood-options{grid-template-columns:repeat(4,minmax(0,1fr))}
.mood-card{gap:12px;padding-inline:14px}
.mood-card strong{font-size:20px}
.mood-symbol{font-size:40px;flex-basis:32px}
.name-tags{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;left:9%;right:9%}
.name-tags a{min-width:0;padding-inline:6px}
.name-tags a:nth-child(4){transform:rotate(2deg)}
@media(min-width:768px) and (max-width:1099px){.mood-options{grid-template-columns:repeat(2,minmax(0,1fr))}.note-left,.note-right{display:none}}
@media(max-width:767px){.mood-options{grid-template-columns:1fr}.mood-card{gap:20px;padding-inline:20px}.name-tags{position:relative;left:auto;right:auto;bottom:auto;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:-8px 22px 20px}.name-tags a{max-width:none;min-height:46px}.name-tags img{height:40px}.hero-scene .trio{min-height:0}}
.hero-scene .trio{mask-image:linear-gradient(to bottom,transparent,#000 13%,#000 82%,transparent),linear-gradient(to right,transparent,#000 4%,#000 96%,transparent);-webkit-mask-image:linear-gradient(to bottom,transparent,#000 13%,#000 82%,transparent),linear-gradient(to right,transparent,#000 4%,#000 96%,transparent);-webkit-mask-composite:source-in;mask-composite:intersect}
.creator-credit{font-size:16px;margin:0 0 20px;max-width:420px}.creator-credit a{text-decoration:underline;text-underline-offset:4px;font-weight:700}.official-profile{display:flex;align-items:center;gap:12px;min-height:44px;width:fit-content;font-size:18px;font-weight:700;margin-top:14px;text-decoration:underline;text-underline-offset:5px}.official-profile+.social-action{margin-top:8px}@media(max-width:767px){.creator-credit{margin-inline:auto}.creator-credit a{display:inline-block;min-height:28px}}
