/* creative.html */

.cr-hero {
  padding: 28px 0 64px;
}

.cr-hero__panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem 2rem;
  align-items: center;
  min-height: 360px;
  padding: 2.2rem 2rem 2.2rem 2.4rem;
  background: linear-gradient(135deg, #eef6e8 0%, #e3f4f1 55%, #f7f0e4 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cr-hero__copy {
  position: relative;
  z-index: 1;
}

.cr-hero__sun {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.cr-hero__sun svg {
  width: 2.1rem;
  height: 2.1rem;
}

.cr-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
}

.cr-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 28rem;
  color: var(--green-dark);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}

.cr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.cr-hero__btn {
  background: #e8c94a;
  color: var(--green-dark);
  border: none;
}

.cr-hero__btn:hover {
  background: #d9b83a;
  color: var(--green-dark);
}

.cr-hero__hand {
  margin: 0;
  font-family: Caveat, cursive;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
}

.cr-hero__media {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
}

.cr-hero__aside {
  grid-column: 1;
  margin: 0;
  max-width: 9ch;
  font-family: Caveat, cursive;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.12;
  text-align: left;
}

.cr-hero__photo {
  position: relative;
  grid-column: 2;
  margin: 0;
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 16px 40px rgba(24, 61, 42, 0.14);
  border: 3px solid rgba(255, 255, 255, 0.7);
  aspect-ratio: 1 / 1.05;
  background: var(--green-wash);
}

.cr-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  border-radius: 25px;
}

.cr-hero__note {
  position: absolute;
  z-index: 2;
  color: var(--green);
  opacity: 0.85;
  pointer-events: none;
}

.cr-hero__note--1 {
  top: 8%;
  left: -4%;
  width: 1.8rem;
  transform: rotate(-18deg);
}

.cr-hero__note--2 {
  top: 18%;
  right: -2%;
  width: 1.5rem;
  color: #c45b7a;
  transform: rotate(12deg);
}

.cr-hero__note--3 {
  bottom: 14%;
  left: 6%;
  width: 1.35rem;
  transform: rotate(8deg);
}

@media (max-width: 1024px) {
  .cr-hero__panel {
    grid-template-columns: 1fr 0.95fr;
    padding: 1.75rem 1.5rem;
    min-height: 320px;
  }

  .cr-hero__media {
    width: min(100%, 460px);
  }
}

@media (max-width: 900px) {
  .cr-hero__panel {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 1.75rem;
    min-height: 0;
  }

  .cr-hero__media {
    justify-self: center;
    width: min(100%, 400px);
  }

  .cr-hero__photo {
    aspect-ratio: 4 / 3;
  }

  .cr-hero__photo img {
    object-position: center 10%;
  }
}

@media (max-width: 640px) {
  .cr-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cr-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .cr-hero__hand {
    text-align: center;
  }
}
