/* smooth scroll */
html {
  scroll-behavior: smooth;
}

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

body.site-bg {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #ffe6eb;
  color: #a65c6b;
}

.wrapper {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

.card {
  background: #fff5f7;
  border: 2px solid #f3b6c4;
  border-radius: 24px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.03);
}

.header-card {
  text-align: left;
  position: relative;
  overflow: hidden;
}

.tiny-title {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.logo {
  font-family: "Georgia", serif;
  letter-spacing: 0.15em;
  margin: 0 0 0.75rem;
}

.intro {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.intro-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.tag-open {
  font-weight: 700;
}

.avatar-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(243, 182, 196, 0.6);
  filter: blur(0.2px);
}

.avatar {
  position: relative;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #f3b6c4;
}

/* FLOATING NAV BUBBLES */

.bubble-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.bubble-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffeef5, #f4b8c7);
  box-shadow: 0 8px 18px rgba(235, 155, 177, 0.35);
  text-decoration: none;
  color: #7b3647;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  animation: float 6s ease-in-out infinite;
}

.bubble-link:nth-child(2) {
  animation-delay: 0.7s;
}
.bubble-link:nth-child(3) {
  animation-delay: 1.4s;
}
.bubble-link:nth-child(4) {
  animation-delay: 2.1s;
}

.bubble-link::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(1px);
}

.bubble-link span {
  position: relative;
}

.bubble-link:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 22px rgba(235, 155, 177, 0.5);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* SECTIONS */

.section-title {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-card p {
  margin-bottom: 0.5rem;
}

.dont-draw {
  color: #c27686;
}

.price-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.5rem;
}

.price-list li::before {
  content: "♡ ";
}

.soft-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pill {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(243, 182, 196, 0.35);
  font-size: 0.85rem;
}

/* two columns in commissions */

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.8rem;
}

/* contact list */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.contact-label {
  font-weight: 600;
  margin-right: 0.4rem;
}

.contact-value {
  font-family: "Consolas", "SF Mono", ui-monospace, monospace;
}

/* form / buttons reused from before */

.input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid #f0b8c3;
  margin-bottom: 0.8rem;
  background: #fffdfd;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #f3b6c4;
  color: #7b3647;
  font-weight: 600;
}

.btn-small {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
}

.btn:hover {
  filter: brightness(1.05);
}

/* reference grid */

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ref-card {
  background: #ffeef2;
  border-radius: 18px;
  padding: 0.4rem;
  overflow: hidden;
  text-align: center;
}

.ref-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.ref-card figcaption {
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* scroll fade */

.fade-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */

@media (max-width: 640px) {
  .intro {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .avatar-wrap {
    align-self: center;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}
