* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 32, 107, 0.08), transparent 30%),
    #020203;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  padding: 16px;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(100%, 1740px);
  min-height: calc(100vh - 32px);
  margin: 0 auto;
  padding: 0 44px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 30%),
    linear-gradient(180deg, #09070a 0%, #050405 72%, #070507 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 32px 100px rgba(0, 0, 0, 0.48);
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 70% 60%, #fff 0 0.45px, transparent 0.7px);
  background-size: 8px 8px, 11px 11px;
}

.hero__glow {
  position: absolute;
  z-index: -4;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.hero__glow--left {
  top: 24%;
  left: -15%;
  width: 420px;
  height: 420px;
  background: rgba(212, 32, 107, 0.11);
}

.hero__glow--right {
  top: 16%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: rgba(212, 112, 139, 0.1);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(580px, 1.06fr);
  align-items: center;
  gap: clamp(70px, 7vw, 130px);
  min-height: 730px;
  padding: 46px 12px 34px;
}

.hero__copy {
  position: relative;
  z-index: 5;
  padding-left: clamp(0px, 2vw, 28px);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: var(--pink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero__kicker-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-soft));
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(61px, 5.95vw, 105px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.056em;
  padding-bottom: 0.08em;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  padding-bottom: 0.04em;
  color: transparent;
  background:
    linear-gradient(92deg, #fff 0%, #ffd2e0 42%, #d4708b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 640px;
  margin: 32px 0 0;
  color: #aea4aa;
  font-size: 15px;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
}

.button--primary {
  color: #18070e;
  background:
    linear-gradient(135deg, #ffd0df 0%, #ef8aad 44%, #d4206b 100%);
  box-shadow:
    0 16px 40px rgba(212, 32, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.button--primary .button__icon {
  color: #fff;
  background: rgba(33, 5, 17, 0.62);
}

.button--primary:hover {
  box-shadow:
    0 22px 54px rgba(212, 32, 107, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.1);
  color: #f8f2f5;
  background: rgba(255, 255, 255, 0.025);
}

.button--secondary .button__icon {
  color: var(--pink-soft);
  background: rgba(255, 176, 201, 0.07);
}

.button--secondary:hover {
  border-color: rgba(255, 176, 201, 0.27);
  background: rgba(255, 176, 201, 0.055);
}

.hero__signature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero__signature > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hero__signature > div:last-child {
  border-right: 0;
}

.hero__signature strong {
  color: var(--pink-soft);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.hero__signature span {
  color: #9e949a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
}

.hero__showcase {
  position: relative;
  min-width: 0;
}

.showcase {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 176, 201, 0.25);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(160deg, #170b14 0%, #0d080c 50%, #160910 100%);
  box-shadow:
    0 36px 95px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 70px rgba(212, 32, 107, 0.06);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}

.showcase__top {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #8f848b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.showcase__canvas {
  position: relative;
  min-height: 466px;
  overflow: hidden;
}

.showcase__word {
  position: absolute;
  left: 18px;
  bottom: -95px;
  color: rgba(255, 255, 255, 0.018);
  font-family: "Outfit", sans-serif;
  font-size: 470px;
  font-weight: 500;
  line-height: 1;
}

.showcase__art {
  position: absolute;
  top: 18px;
  right: -18px;
  width: 490px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 32, 107, 0.15), transparent 46%),
    radial-gradient(circle at 50% 70%, rgba(255, 176, 201, 0.08), transparent 44%);
}

.showcase__art::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 280px;
  height: 54px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 176, 201, 0.24);
  border-radius: 50%;
  background: rgba(212, 32, 107, 0.08);
  box-shadow: 0 0 42px rgba(212, 32, 107, 0.2);
}

.showcase__art img {
  position: absolute;
  z-index: 4;
  top: 55px;
  left: 82px;
  width: 325px;
  height: 325px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter:
    saturate(0.78)
    brightness(1.06)
    contrast(1.08);
  animation: logoFloat 6s ease-in-out infinite;
}

.showcase__halo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 176, 201, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.showcase__halo--one {
  width: 390px;
  height: 128px;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.showcase__halo--two {
  width: 310px;
  height: 102px;
  opacity: 0.46;
  transform: translate(-50%, -50%) rotate(34deg);
}

.showcase__spark {
  position: absolute;
  z-index: 7;
  width: 18px;
  height: 18px;
}

.showcase__spark::before,
.showcase__spark::after {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 176, 201, 0.85);
}

.showcase__spark::before {
  left: 8px;
  width: 2px;
  height: 18px;
}

.showcase__spark::after {
  top: 8px;
  width: 18px;
  height: 2px;
}

.showcase__spark--one {
  top: 75px;
  right: 92px;
}

.showcase__spark--two {
  right: 330px;
  bottom: 78px;
  transform: scale(0.64);
}

.showcase__caption {
  position: absolute;
  z-index: 9;
  top: 48px;
  left: 36px;
  max-width: 230px;
}

.showcase__caption span,
.showcase__caption strong {
  display: block;
}

.showcase__caption span {
  margin-bottom: 10px;
  color: var(--pink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.showcase__caption strong {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.showcase__index {
  position: absolute;
  z-index: 10;
  left: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 176, 201, 0.18);
  border-radius: 16px;
  background: rgba(11, 7, 10, 0.76);
  backdrop-filter: blur(20px);
}

.showcase__index > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: #190810;
  background: linear-gradient(135deg, #ffd1df, #d4708b);
  font-size: 10px;
  font-weight: 900;
}

.showcase__index strong,
.showcase__index small {
  display: block;
}

.showcase__index strong {
  font-size: 11px;
}

.showcase__index small {
  margin-top: 4px;
  color: #92878e;
  font-size: 8px;
}

.showcase__footer {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase__footer article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase__footer article:last-child {
  border-right: 0;
}

.showcase__footer article > span {
  color: var(--pink-soft);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
}

.showcase__footer strong,
.showcase__footer small {
  display: block;
}

.showcase__footer strong {
  font-size: 10px;
}

.showcase__footer small {
  margin-top: 5px;
  color: #8f858b;
  font-size: 8px;
  line-height: 1.45;
}

.showcase-note {
  position: absolute;
  right: -24px;
  bottom: -28px;
  z-index: 14;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  width: min(310px, 80%);
  padding: 15px 17px;
  border: 1px solid rgba(255, 176, 201, 0.23);
  border-radius: 17px;
  background: rgba(11, 7, 10, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.showcase-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #210911;
  background: linear-gradient(135deg, #ffd0de, #d4206b);
}

.showcase-note strong,
.showcase-note small {
  display: block;
}

.showcase-note strong {
  font-size: 10px;
}

.showcase-note small {
  margin-top: 4px;
  color: #91868d;
  font-size: 8px;
  line-height: 1.5;
}

.hero__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #776d73;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__footer span,
.hero__footer a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__footer span:last-child,
.hero__footer a:last-child {
  justify-content: flex-end;
  border-right: 0;
  color: var(--pink-soft);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1260px) {
  .hero {
    padding-inline: 28px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    gap: 52px;
  }

  .hero__signature {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .hero__signature > div {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 1030px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero__copy {
    max-width: 780px;
  }

  .hero__signature {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero__signature > div {
    min-height: 72px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 0;
  }

  .hero__showcase {
    width: min(100%, 850px);
    margin: 0 auto 32px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 7px;
  }

  .hero {
    min-height: auto;
    padding: 0 17px 18px;
    border-radius: 23px;
  }

  .hero__content {
    gap: 46px;
    padding: 40px 0 38px;
  }

  .hero h1 {
    font-size: clamp(51px, 14.6vw, 75px);
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__signature {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .hero__signature > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .showcase {
    min-height: 560px;
    border-radius: 23px;
  }

  .showcase__canvas {
    min-height: 400px;
  }

  .showcase__art {
    right: -150px;
    top: 52px;
  }

  .showcase__caption {
    max-width: 210px;
  }

  .showcase__index {
    left: 18px;
    bottom: 18px;
  }

  .showcase__footer {
    grid-template-columns: 1fr;
  }

  .showcase__footer article {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .showcase__footer article:last-child {
    border-bottom: 0;
  }

  .showcase-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }

  .hero__footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__footer span,
.hero__footer a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero__footer span:last-child,
.hero__footer a:last-child {
    grid-column: 1 / -1;
    justify-content: flex-start;
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .showcase__top {
    font-size: 7px;
  }

  .showcase__caption strong {
    font-size: 30px;
  }

  .showcase__art img {
    width: 285px;
    height: 285px;
  }

  .showcase__index {
    min-width: 220px;
  }
}


/* Mevcut hero yapısına eklenen kontrollü animasyonlar */
.showcase__index {
  animation: premiumExperienceMove 11s ease-in-out infinite;
  will-change: transform;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.showcase__index:hover {
  animation-play-state: paused;
  border-color: rgba(255, 176, 201, 0.42);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(212, 32, 107, 0.13);
}

.hero__copy h1 {
  animation: heroHeadingMove 6.5s ease-in-out infinite;
  transform-origin: left center;
  transition:
    transform 260ms ease,
    letter-spacing 260ms ease,
    text-shadow 260ms ease;
}

.hero__copy h1:hover {
  transform: translateY(-4px) scale(1.012);
  letter-spacing: -0.048em;
  text-shadow: 0 18px 48px rgba(212, 32, 107, 0.13);
}

.hero__copy h1 span {
  background-size: 210% auto;
  animation: heroHeadingShine 8s linear infinite;
}

.hero__kicker,
.hero__lead {
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.hero__kicker:hover {
  color: #ffd4e1;
  transform: translateX(5px);
}

.hero__lead:hover {
  color: #d8cdd3;
  transform: translateX(4px);
}

.button:hover {
  transform: translateY(-5px) scale(1.025);
}

.button:hover .button__icon {
  transform: translate(3px, -3px);
}

.button__icon {
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button--primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #d4206b 0%, #a91350 100%);
  box-shadow:
    0 24px 58px rgba(212, 32, 107, 0.42),
    0 0 0 6px rgba(255, 176, 201, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button--secondary:hover {
  border-color: rgba(255, 176, 201, 0.7);
  color: #1b0810;
  background: var(--pink-soft);
  box-shadow:
    0 20px 48px rgba(212, 32, 107, 0.2),
    0 0 0 5px rgba(255, 176, 201, 0.05);
}

.button--secondary:hover .button__icon {
  color: #fff;
  background: #6e1538;
}

.home-section {
  position: relative;
  isolation: isolate;
  width: min(100%, 1740px);
  margin: 16px auto 0;
  padding: 110px 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 30%),
    linear-gradient(180deg, #09070a 0%, #050405 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 28px 80px rgba(0, 0, 0, 0.3);
}

.home-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(212, 32, 107, 0.08);
  filter: blur(115px);
  pointer-events: none;
}

.about-section::before {
  right: -150px;
  top: -180px;
}

.process-section::before {
  left: -170px;
  bottom: -200px;
}

.home-section__heading {
  max-width: 1040px;
}

.home-section__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--pink-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-section__heading h2,
.contact-section__content h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-section__heading h2 span,
.contact-section__content h2 span {
  color: var(--pink-soft);
}

.about-section__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: start;
  margin-top: 78px;
}

.about-section__lead {
  margin: 0;
  color: #d6ccd2;
  font-size: 18px;
  line-height: 1.8;
}

.about-section__values {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section__values article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 112px;
  padding: 25px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.about-section__values article:hover {
  padding-inline: 20px;
  background: rgba(255, 176, 201, 0.035);
}

.about-section__values strong {
  color: var(--pink-muted);
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.about-section__values h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.about-section__values p {
  margin: 9px 0 0;
  color: #948a90;
  font-size: 12px;
  line-height: 1.65;
}

.home-section__heading--split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  max-width: none;
}

.home-section__heading--split > p {
  margin: 0 0 5px;
  color: #9a9096;
  font-size: 14px;
  line-height: 1.75;
}

.process-section__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 82px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-section__list article {
  min-height: 280px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.process-section__list article:last-child {
  border-right: 0;
}

.process-section__list article:hover {
  transform: translateY(-6px);
  background: rgba(255, 176, 201, 0.04);
}

.process-section__list article > span {
  color: var(--pink-muted);
  font-family: "Outfit", sans-serif;
  font-size: 25px;
}

.process-section__list small {
  display: block;
  margin-top: 34px;
  color: #746971;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-section__list h3 {
  margin: 13px 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.process-section__list p {
  margin: 0;
  color: #948a90;
  font-size: 12px;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(145deg, #170812, #0c070d 65%, #210911);
}

.contact-section__content > p {
  max-width: 660px;
  margin: 27px 0 0;
  color: #a99fa5;
  font-size: 15px;
  line-height: 1.75;
}

.contact-section__actions {
  display: grid;
  gap: 23px;
}

.contact-section__email {
  position: relative;
  display: block;
  padding: 20px 48px 20px 18px;
  border-top: 1px solid rgba(255, 176, 201, 0.2);
  border-bottom: 1px solid rgba(255, 176, 201, 0.2);
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.contact-section__email:hover {
  padding-left: 27px;
  background: rgba(255, 176, 201, 0.045);
}

.contact-section__email small,
.contact-section__email strong {
  display: block;
}

.contact-section__email small {
  color: var(--pink-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-section__email strong {
  margin-top: 8px;
  font-size: clamp(14px, 1.6vw, 21px);
}

.contact-section__email > span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-soft);
  font-size: 20px;
}

.contact-section__actions .button {
  justify-self: start;
}

@keyframes premiumExperienceMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(20px, -12px, 0);
  }

  50% {
    transform: translate3d(34px, 4px, 0);
  }

  75% {
    transform: translate3d(12px, 15px, 0);
  }
}

@keyframes heroHeadingMove {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes heroHeadingShine {
  to {
    background-position: 210% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__index,
  .hero__copy h1,
  .hero__copy h1 span,
  .showcase__art img {
    animation: none;
  }
}

@media (max-width: 1030px) {
  .home-section {
    padding: 85px 42px;
  }

  .about-section__content,
  .home-section__heading--split,
  .contact-section,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .about-section__content,
  .home-section__heading--split,
  .contact-section {
    gap: 55px;
  }

  .process-section__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-section__list article:nth-child(2) {
    border-right: 0;
  }

  .process-section__list article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__socials {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .home-section {
    margin-top: 7px;
    padding: 70px 24px;
    border-radius: 23px;
  }

  .home-section__heading h2,
  .contact-section__content h2 {
    font-size: 42px;
  }

  .about-section__content {
    margin-top: 52px;
  }

  .process-section__list {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .process-section__list article,
  .process-section__list article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-section__list article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    width: calc(100% - 14px);
    margin: 7px auto;
    padding: 55px 24px 25px;
    border-radius: 23px;
  }

  .site-footer__navigation,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__navigation nav {
    gap: 15px;
  }
}

@media (max-width: 520px) {
  .showcase__index {
    animation-name: premiumExperienceMoveMobile;
  }

  .contact-section__actions .button {
    width: 100%;
  }
}

@keyframes premiumExperienceMoveMobile {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(22px, -10px, 0);
  }
}

.contact-section__actions{align-content:end}.contact-section__actions .contact-section__email:nth-child(2),.contact-section__actions .contact-section__email:nth-child(3){margin-top:-1px}.hero__footer span{white-space:normal;line-height:1.35}

.hero__footer-mail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  border-right: 0;
  color: var(--pink-soft);
  transition: color 180ms ease, background 180ms ease;
}

.hero__footer-mail:hover {
  color: #fff;
  background: rgba(255, 176, 201, 0.04);
}

@media (max-width: 720px) {
  .hero__footer-mail {
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-height: 48px;
  }
}
