:root {
  --accent: #fe83c6;
  --copy: #7d7d7d;
  --heading: #323232;
  --page-width: 35rem;
  --page-padding-x: 4rem;
  --page-padding-y: 6rem;
  --spacing: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16pt;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #fff2f9;
  color: var(--copy);
  font-family: Inter, sans-serif;
  word-wrap: break-word;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background: center / 809px repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23FE83C6' stroke-width='1.01' vector-effect='non-scaling-stroke'%3E%3Cpath d='M0 448c128 0 128-128 256-128s128 128 256 128'/%3E%3Cpath d='M0 192c128 0 128-128 256-128s128 128 256 128'/%3E%3C/g%3E%3C/svg%3E");
}

body::after {
  position: fixed;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  visibility: hidden;
  background: #ededed;
  opacity: 0;
  transition: opacity 375ms ease, visibility 375ms;
}

body.is-loading::after {
  visibility: visible;
  opacity: 1;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 6rem;
}

.site-main {
  position: relative;
  flex: 0 0 auto;
  width: var(--page-width);
  max-width: 100%;
  padding: var(--page-padding-y) var(--page-padding-x);
  background: #fff;
  transition: opacity 1s ease, transform 1s ease;
}

.language-switcher {
  --tab-accent: var(--accent);
  --tab-active: #a25e83;
  position: absolute;
  top: 0;
  right: 1.5rem;
  display: flex;
  gap: 0;
  align-items: center;
  font-size: .8125em;
  font-weight: 700;
  letter-spacing: .025rem;
}

.language-switcher > :not([aria-hidden]) {
  display: grid;
  width: 3.25rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--tab-accent);
  border-top: 0;
  line-height: 1;
}

.language-switcher > [aria-hidden] + :not([aria-hidden]) {
  border-left: 0;
}

.language-switcher > [aria-hidden] {
  display: none;
}

.language-switcher a {
  color: var(--tab-accent);
  text-decoration: none;
  transition: color 200ms ease, background-color 200ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: #fff2f9;
  color: var(--heading);
}

.language-switcher a:focus-visible {
  outline: 2px solid var(--heading);
  outline-offset: -4px;
}

.language-switcher [aria-current="page"] {
  background: var(--tab-active);
  color: #fff;
}

.is-loading .site-main {
  opacity: 0;
  transform: translateY(.6375rem);
}

.section {
  margin: 6rem 0;
}

.section-first {
  margin-top: 0;
}

.section-last {
  margin-bottom: 6rem;
}

.heading {
  margin: 0 0 3.25rem;
  color: var(--heading);
  font-family: "Passion One", sans-serif;
  font-size: 4.25em;
  font-weight: 400;
  line-height: 1.125;
}

.heading u {
  text-decoration: none;
  box-shadow: inset 0 -.375em var(--accent);
}

.copy,
.services {
  margin: var(--spacing) 0 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: .025rem;
  line-height: 2;
}

.copy span {
  display: block;
}

.copy span + span {
  margin-top: 1.5rem;
}

.copy strong {
  color: #333;
  font-weight: 700;
}

.copy em {
  font-style: italic;
}

.photo {
  width: calc(100% + (var(--page-padding-x) * 2));
  height: 35rem;
  margin: 6rem calc(var(--page-padding-x) * -1);
  overflow: hidden;
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services {
  list-style: none;
}

.services li {
  display: flex;
  margin-top: .75rem;
}

.services li:first-child {
  margin-top: 0;
}

.services li::before {
  width: .9375rem;
  min-width: .9375rem;
  height: 2rem;
  margin-right: .75rem;
  content: "";
  background: left 60% / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%23FE83C6' d='M39.4 11.2c0 .4-.2.7-.5 1L16.1 35c-.2.2-.6.6-1.1.6s-.8-.2-.9-.4L1.2 22.3c-.6-.6-.5-1.6.1-2.4l2.4-2.5c.5-.5 1.1-.7 1.6-.7.4 0 .7.2 1 .5l8.8 8.7L33.8 7c.6-.6 1.6-.5 2.4 0l2.4 2.5c.5.5.7 1.1.7 1.6Z'/%3E%3C/svg%3E");
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin: var(--spacing) 0 0;
  padding: 0;
  list-style: none;
  font-size: 2.875em;
}

.socials a {
  display: flex;
  width: 2em;
  height: 2em;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  transition: color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: #fa4eab;
  color: #fa4eab;
  transform: translateY(-13%);
}

.socials a:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 3px;
}

.socials svg {
  width: 60%;
  height: 60%;
  fill: currentcolor;
}

.js .reveal {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.js .reveal-left {
  transform: translateX(-.9rem);
}

.js .reveal-right {
  transform: translateX(.9rem);
}

.js .reveal-down {
  transform: translateY(-.9rem);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .photo.reveal-zoom {
  opacity: 1;
  transform: none;
}

.js .photo.reveal-zoom img {
  transform: scale(1.1125);
  transition: transform 1s ease;
}

.js .photo.reveal-zoom.is-visible img {
  transform: none;
}

.services li:nth-child(1),
.socials li:nth-child(2) {
  transition-delay: 125ms;
}

.services li:nth-child(2),
.socials li:nth-child(3) {
  transition-delay: 250ms;
}

.services li:nth-child(3),
.socials li:nth-child(4) {
  transition-delay: 375ms;
}

.services li:nth-child(4) {
  transition-delay: 500ms;
}

.services li:nth-child(5) {
  transition-delay: 625ms;
}

.services li:nth-child(6) {
  transition-delay: 750ms;
}

.services li:nth-child(7) {
  transition-delay: 875ms;
}

@media (max-width: 1680px) {
  html {
    font-size: 12pt;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 10pt;
  }
}

@media (max-width: 736px) {
  :root {
    --page-padding-x: 2rem;
    --page-padding-y: 4rem;
  }

  html {
    font-size: 12pt;
  }

  .site-wrapper {
    padding: 0;
  }

  .language-switcher {
    right: 1rem;
  }

  .section,
  .photo {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .section-first {
    margin-top: 0;
  }

  .section-last {
    margin-bottom: 4rem;
  }

  .heading {
    margin-bottom: 2.4375rem;
    font-size: 2.75em;
  }

  .photo {
    height: 37.5rem;
  }

  .socials {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing: 1.75rem;
  }

  .photo {
    height: 30rem;
  }
}

@media (max-width: 360px) {
  :root {
    --page-padding-x: 1.5rem;
    --page-padding-y: 3rem;
    --spacing: 1.5rem;
  }

  .photo {
    height: 26.25rem;
  }

  .socials {
    gap: .84375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}
