:root {
  --rose: #d2799a;
  --pink: #ffaacc;
  --soft-pink: #ffc8dd;
  --lilac: #ccb5da;
  --blue: #a2d2ff;
  --yellow: #fffac8;
  --background: #fff9fc;
  --text: #2c2630;
  --white: #ffffff;
  --dark-rose: #74465f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  height: 82px;
  padding: 6px 18px;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  background: linear-gradient(120deg,
      var(--soft-pink),
      var(--lilac),
      var(--blue));
  box-shadow: 0 3px 18px rgba(90, 55, 80, 0.06);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.navbar-logo {
  width: 180px;
  height: 72px;
  max-width: none;
  display: block;
  object-fit: contain;
  margin-left: auto;
  margin-right: -12px;
}

.menu-button {
  grid-column: 1;
  grid-row: 1;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark-rose);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-button span:nth-child(2) {
  width: 20px;
}

.desktop-menu {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 330px);
  height: 100svh;
  z-index: 2000;
  padding: 68px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%,
      rgba(255, 255, 255, 0.52),
      transparent 24%),
    radial-gradient(circle at 90% 72%,
      rgba(162, 210, 255, 0.34),
      transparent 30%),
    linear-gradient(155deg,
      #ffd4e5 0%,
      var(--soft-pink) 48%,
      var(--lilac) 100%);
  box-shadow: -12px 0 35px rgba(76, 46, 68, 0.15);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--dark-rose);
  font-family: Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.mobile-logo {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 88px;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.mobile-logo img {
  width: 190px;
  height: 80px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.4);
  transform-origin: left center;
}

.mobile-menu>a {
  position: relative;
  z-index: 3;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 5px 3px;
  color: var(--dark-rose);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.mobile-menu>a:hover {
  color: var(--rose);
  transform: translateX(4px);
}

.mobile-menu>a::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.2s ease;
}

.mobile-menu>a:hover::after {
  width: 100%;
}

.mobile-menu .social-links {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.mobile-menu .social-links a {
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  color: var(--dark-rose);
  border: 1px solid rgba(112, 55, 83, 0.2);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.mobile-menu .social-links a:hover,
.mobile-menu .social-links a:focus-visible {
  background: var(--dark-rose);
  color: #fff8fb;
  transform: translateY(-3px);
}

.social-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-star {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  opacity: 0.72;
}

.star-1 {
  top: 28px;
  left: 22px;
  color: var(--yellow);
  font-size: 1.7rem;
  transform: rotate(-15deg);
}

.star-2 {
  top: 112px;
  right: 24px;
  color: var(--blue);
  font-size: 1.9rem;
  transform: rotate(12deg);
}

.star-3 {
  top: 300px;
  right: 16px;
  color: var(--rose);
  font-size: 1.25rem;
  transform: rotate(-8deg);
}

.star-4 {
  bottom: 138px;
  left: 20px;
  color: var(--white);
  font-size: 1.75rem;
  transform: rotate(12deg);
}

.star-5 {
  bottom: 72px;
  right: 22px;
  color: var(--yellow);
  font-size: 1.5rem;
  transform: rotate(-15deg);
}

.site-footer {
  position: relative;
  min-height: 350px;
  padding: 55px 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 250, 200, 0.55), transparent 27%),
    radial-gradient(circle at 85% 70%, rgba(162, 210, 255, 0.5), transparent 30%),
    linear-gradient(145deg, #ffc8dd, #ccb5da);
  color: #5f4353;
}

.footer-content {
  position: relative;
  z-index: 5;
  width: min(100%, 850px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: block;
  width: min(230px, 58vw);
  height: auto;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-links a {
  position: relative;
  color: var(--dark-rose);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.25s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  margin-top: 23px;
}

.footer-contact p {
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--dark-rose);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(95, 67, 83, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
  opacity: 0.8;
}

.creator-signature {
  color: var(--dark-rose);
  font-size: 0.72rem;
  text-decoration: none;
  opacity: 0.82;
}

.creator-signature span {
  margin-left: 3px;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.footer-art {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.footer-art-left {
  width: clamp(120px, 17vw, 210px);
  left: -20px;
  bottom: -5px;
  transform: rotate(-5deg);
}

.footer-art-right {
  width: clamp(90px, 13vw, 160px);
  right: -15px;
  bottom: 5px;
  transform: rotate(7deg);
}

.footer-star,
.footer-heart {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.footer-star-1 {
  top: 35px;
  left: 12%;
  color: var(--rose);
  font-size: 1.8rem;
  transform: rotate(-12deg);
}

.footer-star-2 {
  top: 45px;
  right: 13%;
  color: var(--yellow);
  font-size: 1.5rem;
}

.footer-heart {
  bottom: 75px;
  right: 25%;
  color: var(--blue);
  font-size: 1.5rem;
  transform: rotate(10deg);
}

@media (max-width: 650px) {
  .site-footer {
    min-height: auto;
    padding: 48px 18px 22px;
  }

  .footer-logo {
    width: min(200px, 55vw);
    margin-bottom: 20px;
  }

  .footer-links {
    max-width: 260px;
    gap: 9px 17px;
  }

  .footer-links a {
    font-size: 0.76rem;
  }

  .footer-contact {
    margin-top: 22px;
  }

  .footer-contact a {
    font-size: 0.95rem;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 13px;
    flex-direction: column;
    gap: 5px;
  }

  .footer-art-left {
    width: 105px;
    left: -27px;
    bottom: 20px;
    opacity: 0.75;
  }

  .footer-art-right {
    width: 78px;
    right: -18px;
    bottom: 28px;
    opacity: 0.75;
  }

  .footer-star-1 {
    top: 28px;
    left: 6%;
    font-size: 1.3rem;
  }

  .footer-star-2 {
    top: 38px;
    right: 7%;
    font-size: 1.1rem;
  }

  .footer-heart {
    display: none;
  }
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
  margin: 22px 0;
}

.footer-socials a {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.5);
  color: var(--dark-rose);

  border: 1px solid rgba(112, 55, 83, 0.2);
  border-radius: 50%;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--dark-rose);
  color: #fff8fb;

  transform: translateY(-3px);
}

.footer-socials i {
  font-size: 1.2rem;
  line-height: 1;
}

@media (min-width: 850px) {
  .navbar {
    height: 94px;
    padding: 7px 5vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(30px, 4vw, 65px);
  }

  .brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
  }

  .navbar-logo {
    width: 220px;
    height: 82px;
    max-width: none;
    margin: 0;
  }

  .menu-button {
    display: none;
  }

  .desktop-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 2vw, 30px);
    white-space: nowrap;
  }

  .desktop-menu a {
    color: var(--dark-rose);
    font-size: clamp(0.82rem, 1vw, 0.94rem);
    font-weight: 600;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .desktop-menu a:hover {
    color: var(--rose);
    transform: translateY(-2px);
  }

  .mobile-menu {
    display: none;
  }

}

@media (min-width: 850px) and (max-width: 1100px) {
  .navbar {
    padding-inline: 3vw;
    gap: 22px;
  }

  .navbar-logo {
    width: 180px;
    height: 75px;
  }

  .desktop-menu {
    gap: 13px;
  }

  .desktop-menu a {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding-inline: 12px;
  }

  .navbar-logo {
    width: 155px;
    height: 68px;
  }

  .mobile-menu {
    width: 86vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-logo {
    min-height: 82px;
  }

  .mobile-logo img {
    width: 170px;
    height: 74px;
    transform: scale(1.32);
  }

  .mobile-menu>a {
    font-size: 0.96rem;
  }

}

.mobile-menu a,
.mobile-logo,
.social-links,
.close-menu {
  position: relative;
  z-index: 2;
}

.mobile-menu-bottom {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 14px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(210, 121, 154, 0.28);
}

.mobile-menu-bottom p {
  margin: 0;
  color: #d2799a !important;
  font-size: 0.62rem;
  opacity: 0.9;
}

.mobile-menu-bottom .mobile-creator,
.mobile-menu-bottom .mobile-creator:visited {
  color: #d2799a !important;
  font-size: 0.62rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.mobile-menu-bottom .mobile-creator span {
  margin-left: 3px;
  color: #d2799a;
  font-family: Georgia, serif;
  font-size: 0.95rem;
}

.mobile-menu-bottom .mobile-creator:hover,
.mobile-menu-bottom .mobile-creator:focus-visible {
  color: #d2799a !important;
  opacity: 1;
}