:root {
  --ink: #07152f;
  --content-width: 82.5%;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  background-color: var(--white);
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
}

.page {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100dvh;
  margin: 0 auto;
  padding: 8px clamp(14px, 2vw, 32px);
  background-color: var(--white);
}

.showcase {
  width: min(1380px, 100%, calc((100dvh - 100px) * 1.82));
  margin: 0 auto;
  background-color: var(--white);
  transform: translateY(-3.5dvh);
}

.hero-visual {
  position: relative;
  width: 100%;
  margin-bottom: clamp(-88px, -6.2vw, -22px);
  overflow: hidden;
  background: var(--white);
}

.hero-base {
  display: block;
  width: 100%;
  height: auto;
}

.character-cleanup {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 53%;
  background: var(--white);
}

.hero-character {
  position: absolute;
  z-index: 2;
  top: 19.4%;
  right: 10.4%;
  width: 37.4%;
  height: auto;
  display: block;
}

.actions {
  position: relative;
  left: -1.1%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(7px, .8vw, 12px);
  width: var(--content-width);
  min-height: 0;
  margin: 16px auto 0;
  padding: 12px 0 18px;
  align-items: center;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.action {
  width: 100%;
  min-width: 0;
  min-height: clamp(50px, 4.2vw, 60px);
  padding: 9px 5px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #091329;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: clamp(.61rem, .85vw, .78rem);
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid rgba(7, 21, 47, .08);
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.action:hover {
  transform: translateY(-4px);
  box-shadow: none;
  filter: saturate(1.08);
}

.action:focus-visible {
  outline: 3px solid #073f9e;
  outline-offset: 4px;
}

.quick { color: #fff; background: #ffd53d; }
.host { color: #fff; background: #65c7ff; }
.booking { color: #fff; background: #ff625f; }
.whatsapp { color: #fff; background: #38cf7a; }
.clients { color: #fff; background: #7357e8; }
.sciascia { color: #fff; background: #173d72; }

@media (max-width: 1280px) {
  .page { padding-inline: 0; }
  .showcase {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 1050px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .page {
    display: block;
    height: auto;
    min-height: 100dvh;
  }
  .showcase { width: 100%; }
  .actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
    padding: 12px 0 18px;
    gap: 12px;
  }
  .action {
    min-height: 62px;
    font-size: clamp(.76rem, 1.45vw, .94rem);
  }
}

@media (max-width: 900px) {
  .actions { width: var(--content-width); }
}

@media (max-width: 720px) {
  .page { padding: 8px 10px 24px; }
  .showcase { width: 100%; }
  .actions { width: var(--content-width); grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 0; margin-top: 14px; padding: 12px 0 18px; border-radius: 0; gap: 10px; }
  .action { min-height: 58px; border-radius: 13px; padding-inline: 6px; font-size: clamp(.68rem, 3.2vw, .84rem); white-space: normal; line-height: 1.15; }
}

@media (max-width: 390px) {
  .page { padding-inline: 6px; }
  .actions { width: var(--content-width); grid-template-columns: 1fr; margin-top: 12px; padding: 10px 0 16px; border-radius: 0; }
  .action { min-height: 54px; font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  .action { transition: none; }
}
