@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ─── Entrance Animation ─── */
@keyframes ishFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Shell ─── */
.ish {
  position: relative;
  width: 100%;
  height: 553px;
  overflow: hidden;
  background-color: var(--colors--light);
  box-sizing: border-box;
}

/* ─── Background gradient ─── */
.ish__bg-gradient {
  position: absolute;
  right: -250px;
  top: -50px;
  width: 981px;
  height: 981px;
  display: block;
  pointer-events: none;
}

/* ─── Inner wrapper ─── */
.ish__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* ─── Left copy ─── */
.ish__copy {
  width: 646px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
  animation: ishFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

.ish__eyebrow {
  font-family: var(--font--primary-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colors--dark);
  margin: 0 0 16px;
}

.ish__headline-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.ish__heading {
  font-family: var(--font--secondary-family);
  font-weight: 700;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--colors--dark);
  margin: 0;
}

.ish__subhead {
  font-family: var(--font--primary-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--colors--dark);
  margin: 0;
}

/* ─── CTA Button ─── */
.ish__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--colors--dark);
  color: var(--colors--light);
  font-family: var(--font--primary-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius--round);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease,
              border-color     150ms ease,
              box-shadow       150ms ease,
              transform        150ms ease,
              color            300ms ease-out;
}

.ish__cta:hover {
  background-color: rgba(39, 29, 59, 0.82);
}

/* ─── Right UI image ─── */
.ish__visual {
  position: absolute;
  right: -219px;
  top: calc(50% - 140px);
  transform: translateY(-50%);
  width: 762px;
  height: 539px;
  animation: ishFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}

.ish__ui {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .ish__copy {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .ish__visual {
    animation: none;
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 1225px) {
  .ish {
    height: auto;
  }

  .ish__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 0;
  }

  .ish__copy {
    width: 100%;
    padding: 48px 0 32px;
  }

  .ish__heading {
    font-size: clamp(40px, 6vw, 56px);
  }

  .ish__subhead {
    font-size: 18px;
  }

  .ish__bg-gradient {
    top: 300px;
  }

  .ish__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: calc(100% + 2rem);
    height: 312px;
    aspect-ratio: unset;
    overflow: hidden;
    margin-top: 64px;
    margin-left: calc(1.5rem + 50px);
  }

  .ish__ui {
    object-fit: cover;
    object-position: top left;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 480px) {
  .ish__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ish__copy {
    padding: 40px 0 24px;
  }

  .ish__heading {
    font-size: 42px;
    letter-spacing: -0.02em;
  }

  .ish__subhead {
    font-size: 17px;
  }

  .ish__visual {
    width: calc(120% + 1.5rem);
  }
}

