:root {
  --ink: #302b31;
  --paper: #fffefa;
  --line: #ddd8dd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4vw;
  border-bottom: 1px solid #70657a22;
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 8px 28px rgba(58, 45, 65, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.brand {
  display: block;
}
.brand-logo {
  display: block;
  width: 88px;
  height: 48px;
  background: linear-gradient(
    110deg,
    #ff8f7d,
    #e78ed1 38%,
    #68d8db 72%,
    #8d87e8
  );
  -webkit-mask: url("/miel-logo.png") center/contain no-repeat;
  mask: url("/miel-logo.png") center/contain no-repeat;
}
.site-header nav {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.pill {
  border: 1px solid;
  padding: 9px 16px;
  border-radius: 30px;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #877e89;
  border-radius: 50%;
}
.instagram-link svg,
.mobile-instagram svg,
.footer-instagram svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.instagram-link .ig-dot,
.mobile-instagram .ig-dot,
.footer-instagram .ig-dot {
  fill: currentColor;
  stroke: none;
}
.hero {
  min-height: 740px;
  padding: 120px 4vw 55px;
  background: linear-gradient(135deg, #fffefb, #f1fcfb 46%, #fffbe5);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 4vw;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    122deg,
    #ffc3d62f 8%,
    transparent 31%,
    #8de4e62d 59%,
    #d6b9ff3d 84%
  );
}
.hero-copy,
.showreel {
  position: relative;
  z-index: 2;
  align-self: center;
}
.hero h1 {
  font-weight: 400;
  font-size: clamp(43px, 5.1vw, 75px);
  line-height: 1.28;
  letter-spacing: -0.055em;
}
.hero h1 em {
  font-weight: 500;
  font-style: normal;
  background: linear-gradient(90deg, #e4777b, #a77dd0 45%, #41b9c4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 585px;
  color: #655e68;
  font-size: 15px;
  line-height: 2;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
}
.primary {
  background: linear-gradient(110deg, #ee8f93, #a98cdb, #71cfd0);
  color: white;
}
.outline {
  border: 1px solid #8a818b;
  background: #ffffff55;
}
.showreel {
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-radius: 34px;
  background: white;
  box-shadow: 0 26px 70px #77a8ad25;
  border: 1px solid #fff;
}
.showreel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showreel > small {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #665f68;
  background: #ffffffc9;
  padding: 7px 11px;
  border-radius: 20px;
}
.prism {
  position: absolute;
  z-index: 1;
  opacity: 0.62;
  animation: float 8s ease-in-out infinite;
}
.p1 {
  width: 170px;
  height: 140px;
  right: 43%;
  top: 52px;
  background: linear-gradient(145deg, #ff8da099, #68e0d899, #bea0ff99);
  clip-path: polygon(50% 0, 100% 80%, 14% 100%);
}
.p2 {
  width: 105px;
  height: 90px;
  left: 2%;
  bottom: 38px;
  background: linear-gradient(135deg, #ffe66f99, #ff8db299, #82cfff99);
  clip-path: polygon(0 0, 100% 35%, 42% 100%);
  animation-delay: -3s;
}
.p3 {
  width: 85px;
  height: 72px;
  right: 2%;
  top: 150px;
  background: linear-gradient(145deg, #77e7d799, #a08cffaa, #ff9eb399);
  clip-path: polygon(18% 0, 100% 60%, 0 100%);
  animation-delay: -5s;
}
@keyframes float {
  50% {
    transform: translateY(14px) rotate(5deg);
  }
}
.section {
  padding: 105px 4vw;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2,
.about-title h2,
.process h2 {
  font-weight: 400;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.38;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.section-head > p {
  color: #6d676f;
  line-height: 1.9;
  font-size: 15px;
}
.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 18px;
}
.visual {
  aspect-ratio: 4/5;
  padding: 17px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.visual:before {
  content: "";
  position: absolute;
  width: 63%;
  height: 63%;
  border: 1px solid #ffffff66;
  clip-path: polygon(50% 0, 100% 42%, 78% 100%, 10% 76%);
  background: linear-gradient(145deg, #ffffff12, #ffffff44);
}
.visual > span {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
}
.visual > small {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.visual > b {
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 34px);
}
.visual > em {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 8px;
  letter-spacing: 0.15em;
}
.v1 {
  background: linear-gradient(150deg, #91d8dc, #7087bb, #b38fd7);
}
.v2 {
  background: linear-gradient(150deg, #f1a0ba, #d590cf, #778cd4);
}
.v3 {
  background: linear-gradient(150deg, #ffd18f, #e795b5, #9f9de4);
}
.v4 {
  background: linear-gradient(150deg, #8ed8ce, #85a1da, #c198dc);
}
.v5 {
  background: linear-gradient(150deg, #f5df7d, #ef9e91, #c38ad7);
}
.v6 {
  background: linear-gradient(150deg, #91d8e6, #b29adf, #f5a0c0);
}
.works article h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 14px 0 7px;
}
.works article p {
  font-size: 10px;
  color: #777;
}
.center {
  text-align: center;
  margin-top: 55px;
}
.under {
  font-size: 12px;
  border-bottom: 1px solid;
  padding-bottom: 8px;
}
.service {
  background: linear-gradient(115deg, #f5fbfa, #faf4ff, #fffbe9);
}
.service-list {
  border-top: 1px solid #b9b3bd;
}
.service-list article {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 30px;
  gap: 18px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #b9b3bd;
}
.service-list span,
.service-list p {
  font-size: 14px;
  color: #69636c;
}
.service-list h3 {
  font-weight: 400;
  font-size: 25px;
  margin: 0;
}
.service-list article:nth-child(1) h3 {
  color: #d86f78;
}
.service-list article:nth-child(2) h3 {
  color: #856db1;
}
.service-list article:nth-child(3) h3 {
  color: #348f9c;
}
.service-list article:nth-child(4) h3 {
  color: #bd7d42;
}
.service-list article:nth-child(5) h3 {
  color: #6677b8;
}
.service-list p {
  line-height: 1.8;
  margin: 0;
}
.support {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.about {
  background: linear-gradient(120deg, #f8eef7, #ecfafa 52%, #fff8df);
}
.about-title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 65px;
}
.about-title h2 {
  grid-column: 2;
}
.strengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #bcb6c1;
}
.strengths article {
  min-height: 245px;
  padding: 28px 22px;
  border-right: 1px solid #bcb6c1;
}
.strengths article:last-child {
  border: 0;
}
.strengths span {
  font-size: 14px;
  color: #8c6aa5;
}
.strengths h3 {
  font-weight: 400;
  font-size: 19px;
  margin: 50px 0 18px;
}
.strengths article:nth-child(1) h3 {
  color: #d86f78;
}
.strengths article:nth-child(2) h3 {
  color: #856db1;
}
.strengths article:nth-child(3) h3 {
  color: #348f9c;
}
.strengths article:nth-child(4) h3 {
  color: #bd7d42;
}
.strengths p {
  font-size: 14px;
  line-height: 1.9;
  color: #655f68;
}
.clients {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-top: 45px;
  font-size: 14px;
  line-height: 2;
  color: #655f68;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 45px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 15px;
  right: calc(25% - 15px);
  height: 1px;
  background: linear-gradient(90deg, #e68a98, #d19acb 32%, #9f93ce 66%, #67bdc4);
}
.steps > div {
  position: relative;
  padding: 28px 20px 42px 0;
  border-bottom: 1px solid var(--line);
}
.steps span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #b58bc3;
  border-radius: 50%;
  background: var(--paper);
  color: #8c6aa5;
  font-size: 10px;
}
.steps h3 {
  font-weight: 400;
  font-size: 17px;
  margin-top: 26px;
}
.note {
  margin-top: 24px;
  color: #706a72;
  font-size: 14px;
}
.voices {
  padding-top: 35px;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.voice-grid blockquote {
  margin: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 240px;
}
.voice-grid b {
  font-weight: 400;
  font-size: 19px;
}
.voice-grid p {
  margin: 32px 0 24px;
  font-size: 14px;
  line-height: 2;
}
.voice-grid cite {
  font-size: 11px;
  color: #777;
  font-style: normal;
}
.contact {
  text-align: center;
  padding: 115px 4vw;
  background: linear-gradient(115deg, #dd8ea0, #a789d0 53%, #6ec8ca);
  color: white;
}
.contact h2 {
  font-weight: 400;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.38;
  letter-spacing: -0.04em;
}
.contact > p:not(.kicker) {
  color: #fff;
}
.light {
  margin-top: 25px;
  background: white;
  color: var(--ink);
  min-width: 280px;
}
footer {
  padding: 42px 4vw;
  background: #f4f1f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .brand-logo {
  width: 105px;
  height: 58px;
}
footer small {
  color: #756f78;
  font-size: 9px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e5761;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.studio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 18px;
}
.studio-meta span {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #665f68;
}
@media (max-width: 800px) {
  .site-header {
    padding: 10px 20px;
  }
  .brand-logo {
    width: 74px;
    height: 42px;
  }
  .site-header nav a:not(.pill) {
    display: none;
  }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 92px 20px 50px;
  }
  .showreel {
    order: 1;
    min-height: 380px;
    border-radius: 24px;
  }
  .hero-copy {
    order: 2;
    padding-top: 35px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .actions {
    flex-direction: column;
  }
  .section {
    padding: 78px 20px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 22px;
  }
  .works {
    grid-template-columns: 1fr 1fr;
    gap: 28px 10px;
  }
  .service-list article {
    grid-template-columns: 35px 1fr 20px;
  }
  .service-list article p {
    grid-column: 2/4;
  }
  .about-title {
    display: block;
  }
  .strengths {
    grid-template-columns: 1fr 1fr;
  }
  .strengths article:nth-child(2) {
    border-right: 0;
  }
  .clients {
    display: block;
  }
  .steps {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }
  .steps::before {
    top: 43px;
    bottom: 43px;
    left: 14px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #e68a98, #d19acb 32%, #9f93ce 66%, #67bdc4);
  }
  .steps > div {
    min-height: 94px;
    padding: 28px 20px 24px 52px;
  }
  .steps span {
    position: absolute;
    top: 28px;
    left: 0;
  }
  .steps h3 {
    margin: 3px 0 0;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .p1 {
    right: -30px;
    top: 55px;
  }
  .p2 {
    display: none;
  }
}
@media (max-width: 460px) {
  .works,
  .strengths,
  .steps {
    grid-template-columns: 1fr;
  }
  .strengths article {
    border-right: 0;
    border-bottom: 1px solid #bcb6c1;
  }
  .service-list h3 {
    font-size: 21px;
  }
  footer {
    display: block;
  }
  footer small {
    display: block;
    margin-top: 25px;
  }
  .footer-right {
    display: block;
    margin-top: 18px;
  }
  .footer-right small {
    margin-top: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .prism {
    animation: none;
  }
}
.brand-logo {
  background: linear-gradient(
    105deg,
    #ff8f7d 0%,
    #e78ed1 38%,
    #f2cf43 70%,
    #8d87e8 100%
  );
}
.heading-gradient {
  font-weight: 400;
  background: linear-gradient(
    90deg,
    #df737d 0%,
    #bd78bd 43%,
    #768fd2 68%,
    #39acc2 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-logo {
  -webkit-mask-image: url("assets/miel-logo.png");
  mask-image: url("assets/miel-logo.png");
}
.mobile-motion {
  display: none;
}
@media (max-width: 800px) {
  .showreel .desktop-motion {
    display: none;
  }
  .showreel .mobile-motion {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.mobile-menu {
  display: none;
}
@media (max-width: 800px) {
  .site-header .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 9px;
    list-style: none;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    border: 1px solid #746d78;
    padding: 9px 12px;
    border-radius: 99px;
    background: #ffffffc7;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
  }
  .mobile-menu[open] summary span {
    transform: rotate(45deg);
  }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 45px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    background: #fffefaf2;
    border: 1px solid #ddd8dd;
    border-radius: 16px;
    box-shadow: 0 16px 40px #493c5920;
    backdrop-filter: blur(10px);
  }
  .mobile-menu nav a {
    display: block !important;
    padding: 13px 2px;
    border-bottom: 1px solid #e7e2e7;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
  }
  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }
  .mobile-menu nav .mobile-instagram {
    display: flex !important;
    align-items: center;
    gap: 9px;
  }
}
.hero-logo-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .showreel {
    min-height: 0;
    aspect-ratio: 720/406;
  }
  .hero-logo-motion {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.work-card {
  min-width: 0;
}
.work-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.work-visual {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 16px;
  background: #eee;
}
.work-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}
.work-open:hover .work-visual img,
.work-open:focus-visible .work-visual img {
  transform: scale(1.025);
  filter: brightness(0.88);
}
.work-open:focus-visible {
  outline: 2px solid #8a75c8;
  outline-offset: 6px;
  border-radius: 12px;
}
.work-number {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 99px;
  background: #ffffffdd;
  color: #403841;
  font-size: 9px;
}
.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffffdc;
  color: #514a56;
  font-size: 15px;
  transform: translate(-50%, -50%);
  padding-left: 3px;
  box-shadow: 0 8px 28px #2d203846;
}
.work-title {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}
.work-meta {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.video-modal {
  width: min(1100px, 94vw);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #17151a;
  color: #fff;
  box-shadow: 0 28px 90px #0008;
}
.video-modal::backdrop {
  background: #17121bcc;
  backdrop-filter: blur(5px);
}
.video-modal-inner {
  position: relative;
  padding: 52px 18px 18px;
}
.video-modal h2 {
  position: absolute;
  top: 20px;
  left: 22px;
  margin: 0;
  max-width: calc(100% - 95px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-close {
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #ffffff18;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.video-modal video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  background: #000;
  border-radius: 10px;
}
.video-modal[open] {
  animation: modal-in 0.2s ease-out;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
}
@media (max-width: 800px) {
  .play-mark {
    width: 48px;
    height: 48px;
  }
  .video-modal {
    width: 96vw;
    border-radius: 16px;
  }
  .video-modal-inner {
    padding: 48px 10px 10px;
  }
  .video-modal video {
    max-height: 75vh;
  }
  .work-title {
    font-size: 14px;
  }
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 7vw;
  text-align: left;
}
.contact-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}
.contact-intro > p:not(.kicker) {
  line-height: 2;
}
.contact-form {
  padding: 36px;
  background: #ffffffeb;
  color: var(--ink);
  border-radius: 24px;
  box-shadow: 0 24px 60px #56405c26;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
}
.contact-form label b {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 8px;
  background: #e98b9a;
  color: #fff;
  font-size: 8px;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8d2da;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.contact-form textarea {
  resize: vertical;
  line-height: 1.7;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #a584cc;
  box-shadow: 0 0 0 3px #a584cc22;
}
.form-wide {
  grid-column: 1/-1;
}
.form-consent {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}
.form-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.form-consent span {
  margin: 0 !important;
  font-size: 12px !important;
}
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border: 0;
  border-radius: 99px;
  background: linear-gradient(110deg, #ee8f93, #a98cdb, #71cfd0);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.form-note {
  text-align: center;
  margin: 12px 0 0 !important;
  color: #777 !important;
  font-size: 11px !important;
}
.contact-result {
  min-height: 100vh;
  padding: 7vw 20px;
  background: linear-gradient(135deg, #fff5f8, #effcfa 48%, #f5efff);
}
.result-card {
  width: min(680px, 100%);
  margin: auto;
  padding: 54px;
  background: #fff;
  border: 1px solid #ece7ed;
  border-radius: 26px;
  box-shadow: 0 30px 80px #65576d22;
}
.result-brand {
  display: inline-block;
  margin-bottom: 45px;
}
.result-card h1 {
  font-weight: 400;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.35;
}
.result-card > p:not(.kicker) {
  line-height: 2;
  color: #655f68;
}
.result-card .button {
  margin-top: 22px;
}
.form-errors {
  margin: 25px 0;
  padding: 18px 18px 18px 38px;
  border-radius: 12px;
  background: #fff1f3;
  color: #a13e51;
  line-height: 1.8;
}
.result-card a:not(.button) {
  text-decoration: underline;
}
.result-back {
  color: var(--ink);
}
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-intro {
    position: static;
  }
  .contact-form {
    padding: 28px;
  }
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-wide {
    grid-column: auto;
  }
  .contact-form {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .result-card {
    padding: 38px 24px;
  }
}

.hero-logo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: transparent;
  opacity: 1;
}

.showreel {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.prism-animation {
  display: none;
}

@media (max-width: 800px) {
  .hero-logo-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .showreel {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    box-shadow: none;
  }
}
