/* =========================
   PLICO HOMEPAGE FINAL — CLEAN CSS
   Cargo-friendly
========================= */

/* =========================
   GLOBAL FIX
========================= */

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: #000000 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.plico-home-final,
.plico-home-final * {
  box-sizing: border-box;
}

.plico-home-final {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  color: #000000;
  font-family: 'Lausanne', system-ui, sans-serif;
}

.plico-home-final img {
  max-width: 100%;
  display: block;
}


/* =========================
   HERO BLACK SECTION
========================= */

.plico-hero-final {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 850px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

/* shared cover block */
.cover-unit {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.cover-title {
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1;
  margin-bottom: 10px;
}

/* =========================
   DESKTOP COVER BALANCE
========================= */

/* Sophie cover — larger and slightly more central */
.cover-unit--sophie {
  left: 13%;
  top: 10%;
}

.cover-frame--sophie {
  width: 520px;
  height: 690px;
}

/* Nicolas cover — larger, wider, slightly lower */
.cover-unit--nicolas {
  left: 52%;
  top: 28%;
}

.cover-frame--nicolas {
  width: 640px;
  height: 435px;
}

/* image frames */
.cover-frame {
  background: #ffffff;
  overflow: hidden;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   TICKET BUTTON — STABLE
========================= */

.ticket-btn {
  position: relative;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 170px;
  height: 28px;
  max-width: 170px;
  margin-top: 14px;
  padding: 0 14px;

  background: #a52116;
  color: #ffffff !important;

  font-family: "Times New Roman", Times, serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;

  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;

  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ticket-btn::before,
.ticket-btn::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 14px;
  height: 28px;
  background: #a52116;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.ticket-btn::before {
  left: -12px;
  border-left: 1px solid #ffffff;
  clip-path: polygon(0 32%, 70% 32%, 100% 0, 100% 100%, 70% 68%, 0 68%);
}

.ticket-btn::after {
  right: -12px;
  border-right: 1px solid #ffffff;
  clip-path: polygon(100% 32%, 30% 32%, 0 0, 0 100%, 30% 68%, 100% 68%);
}

.ticket-btn:hover,
.ticket-btn:focus,
.ticket-btn:active {
  background: #ffffff;
  color: #a52116 !important;
  border-color: #a52116;
  text-decoration: none !important;
}

.ticket-btn:hover::before,
.ticket-btn:hover::after,
.ticket-btn:focus::before,
.ticket-btn:focus::after,
.ticket-btn:active::before,
.ticket-btn:active::after {
  background: #ffffff;
  border-color: #a52116;
}


/* =========================
   WHITE MANIFESTO SECTION
========================= */

.plico-manifesto-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #ffffff;
  color: #000000;
  padding: 80px 6vw;
  overflow: hidden;
}

.nowhere-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 2vw;

  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
}

.nowhere-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  border: 1px solid #000000;
  font-size: 12px;
}

.manifesto-text {
  justify-self: end;
  max-width: 520px;
  margin-right: 5vw;
  text-align: center;

  font-family: "Courier New", monospace;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #000000;
}


/* =========================
   RED BAND
========================= */

.plico-red-band {
  width: 100%;
  max-width: 100%;
  background: #a52116;
  color: #ffffff;
  padding: 64px 5vw;
  text-align: center;
  overflow: hidden;
}

.plico-red-band p {
  max-width: 1180px;
  margin: 0 auto;
  color: #ffffff;
  font-family: 'Lausanne', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.05;
}


/* =========================
   IMAGE SECTION
========================= */

.plico-image-section {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8vw;
  align-items: center;
  background: #ffffff;
  padding: 70px 5vw 80px;
  overflow: hidden;
}

.small-images {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
}

.small-images img {
  width: 2000px;
  height: auto;
}

.large-image {
  justify-self: right;
  width: 40%;
  max-width: 670px;
}

.large-image img {
  width: 100%;
  height: auto;
}


/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1300px) {
  .cover-frame--sophie {
    width: 440px;
    height: 585px;
  }

  .cover-frame--nicolas {
    width: 540px;
    height: 365px;
  }

  .cover-unit--sophie {
    left: 10%;
    top: 12%;
  }

  .cover-unit--nicolas {
    left: 52%;
    top: 31%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .plico-home-final {
    overflow-x: hidden;
  }

  .plico-hero-final {
    height: auto;
    min-height: auto;
    padding: 110px 24px 70px;
    overflow: hidden;
  }

  .cover-unit {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 100%;
    align-items: center;
    margin-bottom: 70px;
  }

  .cover-unit:last-child {
    margin-bottom: 0;
  }

  .cover-title {
    width: 100%;
    max-width: 430px;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }

  .cover-frame--sophie {
    width: 100%;
    max-width: 430px;
    height: auto;
    aspect-ratio: 390 / 520;
  }

  .cover-frame--nicolas {
    width: 100%;
    max-width: 430px;
    height: auto;
    aspect-ratio: 470 / 320;
  }

  .ticket-btn {
    width: 160px;
    max-width: 160px;
    height: 27px;
    font-size: 10px;
    margin-top: 14px;
  }

  .ticket-btn::before,
  .ticket-btn::after {
    height: 27px;
  }

  .ticket-btn::before {
    left: -11px;
  }

  .ticket-btn::after {
    right: -11px;
  }

  .plico-manifesto-section {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding: 70px 24px;
  }

  .nowhere-label {
    margin-left: 0;
    justify-content: flex-start;
    font-size: 11px;
  }

  .nowhere-mark {
    width: 38px;
    height: 22px;
  }

  .manifesto-text {
    justify-self: center;
    max-width: 100%;
    margin-right: 0;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }

  .plico-red-band {
    padding: 50px 24px;
  }

  .plico-red-band p {
    font-size: 13px;
    line-height: 1.15;
  }

  .plico-image-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 24px 70px;
  }

  .small-images {
    justify-content: flex-start;
  }

  .small-images img {
    width: 42vw;
    max-width: 170px;
  }

  .large-image {
    max-width: 100%;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .plico-hero-final {
    padding: 105px 20px 60px;
  }

  .cover-unit {
    margin-bottom: 60px;
  }

  .cover-title {
    max-width: 84vw;
    font-size: 16px;
  }

  .cover-frame--sophie,
  .cover-frame--nicolas {
    max-width: 84vw;
  }

  .ticket-btn {
    width: 150px;
    max-width: 150px;
    height: 26px;
    font-size: 10px;
  }

  .ticket-btn::before,
  .ticket-btn::after {
    width: 13px;
    height: 26px;
  }

  .ticket-btn::before {
    left: -10px;
  }

  .ticket-btn::after {
    right: -10px;
  }

  .plico-manifesto-section {
    padding: 60px 20px;
    gap: 55px;
  }

  .manifesto-text {
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .plico-red-band {
    padding: 44px 20px;
  }

  .plico-red-band p {
    font-size: 12px;
    line-height: 1.15;
  }

  .plico-image-section {
    padding: 50px 20px 60px;
    gap: 40px;
  }

  .small-images img {
    width: 40vw;
  }
}

/* =========================
   FULL BLEED FIX FOR CARGO
   fa prendere alle sezioni tutta la viewport
========================= */

.plico-home-final,
.plico-hero-final,
.plico-manifesto-section,
.plico-red-band,
.plico-image-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* sicurezza extra */
html,
body {
  overflow-x: hidden !important;
}

/* rimuove eventuali limiti del wrapper */
.plico-home-final {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* small shipping note */
.preorder-note {
  position: absolute;
  right: 4.5vw;
  bottom: 3.5vh;
  color: #a52116;
  font-family: 'Lausanne', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: right;
  z-index: 5;
}

.nowhere-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 2vw;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
}

.nowhere-label-img {
  width: 70px;
  height: auto;
  display: block;
}

.nowhere-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 2vw;
}

.nowhere-image img {
  width: 180px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .plico-manifesto-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nowhere-image {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .nowhere-image img {
    margin: 0 auto;
  }

  .manifesto-text {
    justify-self: center;
    text-align: center;
    margin-right: 0;
  }
}