/* ==========================================================================
   Homepage hero
   --------------------------------------------------------------------------
   The template's stock hero was a headline sitting on a carousel with no call
   to action at all — a visitor landed, admired a photo and had nothing to do.
   This adds the missing half (promise, proof, two ways to act) above the work
   strip, and keeps the CTA inside the first screen on a phone.

   Scoped under .hero so it can't leak into the other pages that still use
   .wptb-slider.style15 markup.
   ========================================================================== */

.wptb-slider.style15.hero {
  padding: 100px 0 60px;
}

.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero__copy {
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-one);
}

.hero__title {
  font-family: var(--font-family-three);
  /* Sized so the deliberate <br/> break holds on one line at desktop widths
     instead of wrapping "stories" onto a line of its own. */
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.1;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 22px;
}

/* The stock template ran this word through a rainbow gradient, which fought
   the black/sage palette. Sage italic reads as deliberate emphasis instead. */
.hero__title em {
  font-style: italic;
  color: var(--color-one);
}

.hero__sub {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: var(--fw-light);
  color: rgba(var(--color-white-rgb), 0.68);
}

/* --- Actions ------------------------------------------------------------ */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 42px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition-base);
}

.hero__btn--primary {
  background: var(--color-one);
  color: #fff;
  box-shadow: 0 10px 30px rgba(74, 85, 77, 0.28);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(74, 85, 77, 0.36);
}

.hero__btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(var(--color-white-rgb), 0.22);
}

.hero__btn--ghost:hover,
.hero__btn--ghost:focus-visible {
  color: var(--color-white);
  border-color: var(--color-one);
  transform: translateY(-2px);
}

.hero__btn .bi-whatsapp {
  font-size: 19px;
  color: #09aa19;
}

/* --- Trust row ---------------------------------------------------------- */

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
}

.hero__trust strong {
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}

/* --- Visual column -------------------------------------------------------
   Two real photographs instead of a blank half of the screen: a large piece
   plus a smaller one overlapping its corner, the way a portfolio spread
   would lay them out, with a stat badge tying back to the trust row. */

.hero__visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px 40px 0;
}

.hero__visual-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}

.hero__visual-main img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__visual-accent {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 46%;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--color-dark-two, #fff);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.4);
}

.hero__visual-accent img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__visual-badge {
  position: absolute;
  left: -6%;
  bottom: 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--color-one);
  color: #fff;
  box-shadow: 0 16px 32px -10px rgba(74, 85, 77, 0.5);
}

.hero__visual-badge strong {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.hero__visual-badge span {
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

@media screen and (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    text-align: left;
  }
  .hero__copy {
    text-align: left;
  }
  .hero__sub {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__actions {
    justify-content: flex-start;
  }
  .hero__trust {
    justify-content: flex-start;
  }
  .hero__visual {
    max-width: 460px;
    margin: 0 0 0 auto;
  }
}

/* The styles carousel now sits directly under the hero, where the old work
   strip used to be. The template's 115px top padding was tuned for a section
   that followed a full-width block, and leaves a hole here. Scoped to the
   instance that follows the hero so the artists grid further down keeps its
   own spacing. */
.hero + .wptb-team-one {
  padding-top: 48px;
  padding-bottom: 56px;
}

/* --- Tattoo styles strip -------------------------------------------------
   The template revealed each card's label only on hover, which meant the
   labels were invisible on every touch device and invisible-by-default on
   desktop — a category strip nobody can read is just a row of photos. The
   labels are now permanent, sitting on a gradient scrim, and the hover
   blur/zoom that went with the reveal is gone.

   Everything is scoped to `.hero + .wptb-team-one` — the same .wptb-team-one
   and .grid-item classes are used by the artists grid below and by 19 style
   pages, which keep the original treatment. */

/* The template widens this to 150% to bleed slides off-screen. That's what
   makes the strip look cut off; the Swiper breakpoints handle how many
   slides show, so the container just needs to be the container. */
.hero + .wptb-team-one .swiper-container {
  width: 100%;
  overflow: hidden;
}

.hero + .wptb-team-one .grid-item .wptb-item--inner {
  border-radius: 14px;
  overflow: hidden;
}

/* Uniform cards regardless of each photo's native proportions. */
.hero + .wptb-team-one .grid-item .wptb-item--image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero + .wptb-team-one .grid-item .wptb-item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* No zoom/blur on hover — it existed to make room for the reveal. */
.hero + .wptb-team-one .grid-item:hover .wptb-item--image img {
  transform: none;
  filter: none;
}

/* Label pinned to the bottom of the card, always on. */
.hero + .wptb-team-one .grid-item .wptb-item--holder {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 40px 18px 18px;
  display: block;
  text-align: left;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

/* The reveal is driven by opacity+transform on these two; pin them on.
   !important because the template's .effect-* rules carry higher specificity
   than a sane override can reach without duplicating their whole prefix. */
.hero + .wptb-team-one .grid-item .wptb-item--meta h4,
.hero + .wptb-team-one .grid-item:hover .wptb-item--meta h4,
.hero + .wptb-team-one .grid-item .wptb-item--meta p,
.hero + .wptb-team-one .grid-item:hover .wptb-item--meta p {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

.hero + .wptb-team-one .grid-item .wptb-item--meta h4 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 3px;
}

.hero + .wptb-team-one .grid-item .wptb-item--meta h4 a {
  color: #fff;
}

.hero + .wptb-team-one .grid-item .wptb-item--meta h4 a:hover,
.hero + .wptb-team-one .grid-item .wptb-item--meta h4 a:focus-visible {
  color: var(--color-one);
}

.hero + .wptb-team-one .grid-item .wptb-item--meta p {
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media screen and (max-width: 767px) {
  .hero + .wptb-team-one .grid-item .wptb-item--holder {
    padding: 32px 14px 14px;
  }
  .hero + .wptb-team-one .grid-item .wptb-item--meta h4 {
    font-size: 16px;
  }
  .hero + .wptb-team-one .grid-item .wptb-item--meta p {
    font-size: 11.5px;
  }
}

@media screen and (max-width: 991px) {
  .wptb-slider.style15.hero {
    padding: 90px 0 40px;
  }
  .hero + .wptb-team-one {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .hero__sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero__actions {
    margin-bottom: 32px;
  }
  /* Full-width taps beat two cramped pills on a phone. */
  .hero__btn {
    width: 100%;
    max-width: 340px;
  }
  .hero__trust {
    gap: 10px 26px;
    font-size: 13px;
  }
  .hero__inner {
    gap: 36px;
  }
  .hero__visual {
    max-width: 300px;
    padding: 0 14px 30px 0;
  }
  .hero__visual-badge {
    padding: 10px 14px;
  }
  .hero__visual-badge strong {
    font-size: 18px;
  }
  .hero__visual-badge span {
    font-size: 11px;
  }
}
