/* =========================================================
   Mario Benítez — Composer & Music Producer
   Cinematic · dark · elegant. Near-monochrome, one cold sea accent.
   Mobile-first. Plain CSS, no framework.
   --------------------------------------------------------- */

:root {
  /* Near-black base */
  --bg:        #070809;
  --bg-2:      #0d0f12;
  --bg-3:      #12151a;

  /* Warm off-white ink + neutral greys (intimate, not clinical) */
  --ink:       #ECEAE6;
  --muted:     #9a9ea3;
  --faint:     #5f6469;

  /* One restrained accent — cold "sea steel" (Irish Sea mist) */
  --accent:    #9db2ba;
  --accent-hi: #b9ccd2;

  --line:      rgba(255, 255, 255, 0.07);
  --line-2:    rgba(255, 255, 255, 0.14);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------- reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; margin: 0; line-height: 1.06; }
::selection { background: var(--accent); color: #06090b; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ----------------------- buttons ----------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95em 2em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn--primary { background: var(--accent); color: #06090b; }
.btn--primary:hover { background: var(--accent-hi); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav.is-scrolled {
  /* near-solid dark so the nav stays readable over every section, even where
     backdrop-filter is unsupported; the blur is a subtle enhancement on top */
  background: rgba(7, 8, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.nav__links { display: none; }       /* mobile-first: hidden until ≥860px */
.nav__links a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none; border: 0;
  padding: 6px; cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(5, 6, 7, 0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
/* The class rule above would otherwise override the [hidden] attribute's
   display:none, leaving an invisible full-screen overlay that swallows clicks. */
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--accent); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gut) 4rem;
  overflow: hidden;
}

/* (1) coastal media layer (placeholder) */
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #000; }
.hero__bg .hero__bg-media,
.hero__bg-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;            /* keep the imagery quiet, behind the type */
}
.hero__bg::after {        /* dark scrim so text always reads */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,5,6,0.55) 0%, rgba(4,5,6,0.35) 45%, rgba(4,5,6,0.85) 100%);
}

/* (2) atmospheric layer — cold mist + horizon + grain */
.hero__atmos { position: absolute; inset: 0; z-index: 1; }
.hero__atmos::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero::before {            /* base vignette / deep dark */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 6%, rgba(28, 34, 38, 0.45), transparent 60%),
    linear-gradient(180deg, #000000 0%, #050608 45%, #000000 100%);
}
.mist { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.mist--1 {
  width: 90vw; height: 90vw; left: -20vw; top: -10vw;
  background: radial-gradient(circle, rgba(70, 82, 90, 0.42), transparent 65%);
  animation: drift1 26s var(--ease) infinite alternate;
}
.mist--2 {
  width: 80vw; height: 80vw; right: -16vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(52, 64, 72, 0.4), transparent 65%);
  animation: drift2 32s var(--ease) infinite alternate;
}
.horizon {
  position: absolute; left: 0; right: 0; bottom: 0; height: 36%;
  background: linear-gradient(180deg, transparent, rgba(120, 132, 140, 0.07) 70%, rgba(140, 152, 160, 0.11));
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(5vw, 4vh) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-4vw, -3vh) scale(1.08); } }

/* hero content */
.hero__content { position: relative; z-index: 2; max-width: 920px; }
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
}
.hero__title {
  font-size: clamp(2.9rem, 13vw, 9rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
}
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.hero__triad {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.hero__triad i { color: var(--faint); font-style: normal; padding: 0 0.3em; }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 2.4rem auto 0;
}
.hero__actions .btn { width: 100%; }

/* audio preview */
.hero__preview { margin-top: 2.2rem; }
.preview {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--muted);
  border-radius: 100px;
  padding: 0.6rem 1.3rem 0.6rem 0.95rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.preview:hover { color: var(--ink); border-color: var(--accent); }
.preview__icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--accent);
  transition: opacity 0.2s var(--ease);
}
.preview__eq { display: none; align-items: flex-end; gap: 2px; height: 12px; }
.preview__eq i {
  width: 2px; height: 100%;
  background: var(--accent);
  transform-origin: bottom;
  animation: eq 0.9s var(--ease) infinite;
}
.preview__eq i:nth-child(2) { animation-delay: 0.2s; }
.preview__eq i:nth-child(3) { animation-delay: 0.4s; }
.preview__eq i:nth-child(4) { animation-delay: 0.1s; }
.preview.is-playing .preview__icon { display: none; }
.preview.is-playing .preview__eq { display: inline-flex; }
@keyframes eq { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

/* scroll cue */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  width: 24px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 7px; background: var(--accent);
  border-radius: 2px; margin-top: 8px;
  animation: scrolldot 1.9s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(13px); } }

/* ===================== SECTIONS (shared) ===================== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(4.5rem, 11vh, 8rem) 0; position: relative; scroll-margin-top: 72px; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.4rem, 6vw, 3.6rem); text-align: center; }
.section__kicker {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1rem;
}
.section__title { font-size: clamp(1.9rem, 5.5vw, 3.3rem); margin-bottom: 1.1rem; }
.section__lead { color: var(--muted); font-size: 1.05rem; }
.section__head .section__lead { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* alternating section tones for gentle rhythm */
.listen  { background: var(--bg); }
.about   { background: var(--bg-2); }
.work    { background: var(--bg); }
.sync    { background: var(--bg-2); }
.contact { background: var(--bg); }

/* ===================== LISTEN ===================== */
.featured { max-width: 900px; margin: 0 auto 3rem; }
.embed {
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: var(--bg-3);
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 1rem;
  background: linear-gradient(135deg, #10171c, #0b0f14);
}
.embed__placeholder .play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
}
.embed__placeholder .play::after {
  content: ""; position: absolute; top: 50%; left: 52%; transform: translate(-50%, -50%);
  width: 0; height: 0; border-style: solid;
  border-width: 8px 0 8px 13px; border-color: transparent transparent transparent var(--accent);
}
.embed__placeholder p {
  color: var(--faint); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0;
}

.cards { display: grid; grid-template-columns: 1fr; gap: 1.2rem; max-width: 460px; margin: 0 auto; }
.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden;
  background: var(--bg-3);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card__art {
  aspect-ratio: 16 / 10; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  transform: scale(1.001); /* avoids hairline edges on zoom */
  filter: brightness(0.82) saturate(0.95);
}
.card__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,8,9,0.6)); }
.card:hover .card__art { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
.card__art--cinematic { background-image: url("images/cinematic.png"); }
.card__art--ambient   { background-image: url("images/ambient.png"); }
.card__art--emotional { background-image: url("images/scifi.png"); }
.card__body { padding: 1.5rem 1.4rem 1.7rem; }
.card__body h3 { font-size: 1.45rem; margin-bottom: 0.45rem; }
.card__body p { color: var(--muted); font-size: 0.93rem; margin: 0 0 1.1rem; }
.card__cue { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

.streaming { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; }
.streaming a {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s var(--ease);
}
.streaming a:hover { color: var(--accent); }

/* ===================== ABOUT ===================== */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.about__media { max-width: 360px; }
.about__portrait {
  display: block;
  width: 100%;
  height: auto;                 /* show the FULL photo at its real proportions — never cropped */
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--bg-3);       /* quiet fallback behind the photo while it loads */
}
.about__text p { color: #cdd2d6; margin: 0 0 1.25rem; max-width: 60ch; }
.about__text .section__kicker { text-align: left; }
.about__text .section__title { text-align: left; margin-bottom: 1.5rem; }
.about__text em { font-style: italic; }
.about__influences { color: var(--muted) !important; font-size: 0.98rem; }
.about__influences em { font-family: var(--serif); color: var(--accent); }

/* ===================== CREDITS & WORK ===================== */
.work__broadcast { text-align: center; margin-bottom: 3rem; }
.work__label { display: block; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.4rem; }
.work__marks { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.4rem, 5vw, 3.4rem); }
.work__marks li {
  font-family: var(--serif); font-size: clamp(1.3rem, 3.6vw, 2rem);
  letter-spacing: 0.03em; color: var(--muted); opacity: 0.82; transition: opacity 0.4s var(--ease);
}
.work__marks li:hover { opacity: 1; }
.work__artists {
  text-align: center; max-width: 760px; margin: 0 auto;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--muted); line-height: 1.5;
}
.creds { display: grid; grid-template-columns: 1fr; gap: 1.6rem; max-width: 840px; margin: 3.4rem auto 0; }
.cred { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.cred h3 { font-family: var(--sans); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.45rem; }
.cred p { margin: 0; color: #cdd2d6; font-size: 0.97rem; }
.cred a { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.cred a:hover { color: var(--accent); border-color: var(--accent); }

/* ===================== SYNC ===================== */
.sync__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.sync__uses { columns: 2; column-gap: 2rem; }
.sync__uses li {
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
  padding: 0.65rem 0; border-bottom: 1px solid var(--line); break-inside: avoid;
}
.sync__pitch p { color: var(--muted); margin: 0 0 1.8rem; }

/* ===================== CONTACT ===================== */
.contact__inner { text-align: center; max-width: 720px; }
.contact__email {
  display: inline-block; font-family: var(--serif);
  font-size: clamp(1.4rem, 4.5vw, 2.5rem); color: var(--ink);
  margin: 1.8rem 0 2.2rem; border-bottom: 1px solid var(--line-2); padding-bottom: 0.3rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  word-break: break-word;
}
.contact__email:hover { color: var(--accent); border-color: var(--accent); }
.social { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.social a {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s var(--ease);
}
.social a:hover { color: var(--accent); }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; background: var(--bg); }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; }
.footer__brand { font-family: var(--sans); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.8rem; }
.footer__meta, .footer__copy { color: var(--faint); font-size: 0.76rem; letter-spacing: 0.04em; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================== BREAKPOINTS (min-width, mobile-first) ===================== */
@media (min-width: 560px) {
  .hero__actions { flex-direction: row; width: auto; max-width: none; }
  .hero__actions .btn { width: auto; }
}
@media (min-width: 680px) {
  .creds { grid-template-columns: 1fr 1fr; column-gap: 2.6rem; }
}
@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .sync__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .nav__links { display: flex; gap: 2.4rem; }
  .nav__toggle { display: none; }
  .about__grid { grid-template-columns: 0.8fr 1.2fr; }
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mist, .hero__scroll span, .preview__eq i { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ===================== FLOATING ACTIONS DOCK ===================== */
/* Editorial side dock. Hidden by default; fades in after the user scrolls past the hero.
   Contained, with generous padding to host more actions later (WhatsApp, Calendly, etc.). */
.dock {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease, ease), transform .45s var(--ease, ease);
}
.dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.dock__list {
  list-style: none;
  margin: 0;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(13, 15, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(157, 178, 186, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.dock__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ECEAE6;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.dock__item:hover {
  color: #9db2ba;
  border-color: rgba(157, 178, 186, 0.45);
  background: rgba(157, 178, 186, 0.06);
  transform: translateY(-1px);
}
.dock__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  font-weight: 500;
  opacity: 0.7;
}
.dock__item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #ECEAE6;
  background: rgba(13, 15, 18, 0.92);
  border: 1px solid rgba(157, 178, 186, 0.22);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.dock__item[data-tooltip]:hover::after {
  opacity: 1;
}

/* Mobile: slightly smaller, hugged closer to the edge */
@media (max-width: 640px) {
  .dock { right: 12px; }
  .dock__list { padding: 10px 8px; gap: 10px; }
  .dock__item { width: 40px; height: 40px; }
  .dock__item[data-tooltip]::after { display: none; }
}
