:root {
  --ink: #3c2630;
  --muted: #7a5a65;
  --rose: #f26f91;
  --rose-strong: #d9486e;
  --rose-soft: #ffe0e8;
  --peach: #fff0e4;
  --cream: #fff9f2;
  --mint: #bce9ce;
  --lavender: #c9b6f2;
  --gold: #ffd36f;
  --line: rgba(150, 91, 108, 0.26);
  --shadow: 0 18px 50px rgba(133, 73, 93, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 211, 111, 0.34), transparent 18rem),
    radial-gradient(circle at 88% 0%, rgba(201, 182, 242, 0.32), transparent 19rem),
    linear-gradient(180deg, #fff4e9 0%, #fff9f4 42%, #ffe8ef 100%);
  min-height: 100vh;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 249, 242, 0.84);
  border-bottom: 1px solid rgba(242, 111, 145, 0.18);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.55rem;
  color: var(--rose-strong);
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #fff;
  background: var(--rose);
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(217, 72, 110, 0.24);
}

.nav-links {
  gap: clamp(0.65rem, 2vw, 1.35rem);
  font-weight: 800;
}

.nav-links a,
.header-action {
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
}

.header-action {
  border: 2px solid rgba(217, 72, 110, 0.22);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  color: var(--rose-strong);
  font-weight: 900;
  background: #fff;
  box-shadow: 0 10px 24px rgba(217, 72, 110, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(19rem, 1.08fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.1rem);
  padding: clamp(2.4rem, 7vw, 6rem) clamp(1rem, 5vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 9% 4% auto auto;
  width: 7rem;
  height: 7rem;
  background: var(--gold);
  clip-path: polygon(50% 0, 59% 38%, 100% 50%, 59% 62%, 50% 100%, 41% 62%, 0 50%, 41% 38%);
  opacity: 0.55;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 5rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.56));
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--rose-strong);
  font-family: "Baloo 2", cursive;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  line-height: 0.95;
}

h1 {
  margin-bottom: 1rem;
  color: #fff9f5;
  font-size: clamp(4.25rem, 13vw, 9.2rem);
  font-weight: 800;
  text-shadow:
    -4px -4px 0 #b83b59,
    4px -4px 0 #b83b59,
    -4px 4px 0 #b83b59,
    4px 4px 0 #b83b59,
    0 12px 0 rgba(217, 72, 110, 0.18);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  color: var(--rose-strong);
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.hero-text,
.section-copy p,
.contact-copy p,
.feature-list p,
.steps p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 38rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1.08rem, 2.25vw, 1.34rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font: 900 1rem/1 "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-strong));
  box-shadow: 0 14px 30px rgba(217, 72, 110, 0.28);
}

.button.secondary {
  color: var(--rose-strong);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(217, 72, 110, 0.16), 0 12px 28px rgba(133, 73, 93, 0.12);
}

.hero-stage {
  position: relative;
  min-height: clamp(24rem, 50vw, 39rem);
}

.hero-stage::before {
  position: absolute;
  inset: 13% 3% 3% 12%;
  content: "";
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 3rem;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-stage img {
  position: absolute;
  filter: drop-shadow(0 20px 22px rgba(95, 49, 65, 0.18));
}

.hero-character {
  left: 9%;
  bottom: 1%;
  width: min(54%, 24rem);
  z-index: 3;
}

.hero-printer {
  right: 1%;
  top: 6%;
  width: min(52%, 25rem);
  z-index: 2;
}

.hero-pet {
  right: 18%;
  bottom: 0;
  width: min(35%, 14rem);
  z-index: 4;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 75rem;
  margin: -1rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-band div {
  display: grid;
  gap: 0.25rem;
  min-height: 7rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.intro-band div:first-child {
  border-radius: 8px 0 0 8px;
}

.intro-band div:last-child {
  border-radius: 0 8px 8px 0;
}

.intro-band strong {
  color: var(--rose-strong);
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section,
.contact-section {
  width: min(75rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
}

.section-copy {
  max-width: 32rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list article,
.steps article,
.contact-form {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(133, 73, 93, 0.11);
}

.feature-list article {
  min-height: 12rem;
  padding: 1rem 1rem 1.15rem;
}

.feature-list img {
  width: 6rem;
  height: 6rem;
  margin-bottom: 0.6rem;
  object-fit: contain;
}

.feature-list p,
.steps p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(75rem, calc(100% - 2rem));
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(0.55rem, 2vw, 1.2rem);
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 228, 0.76)),
    var(--cream);
  border: 2px solid rgba(150, 91, 108, 0.28);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(133, 73, 93, 0.12);
}

.order-section {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.steps article {
  position: relative;
  min-height: 13rem;
  padding: 1.15rem;
}

.steps span {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1.1rem;
  place-items: center;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(217, 72, 110, 0.24);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(18rem, 1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
  padding-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.contact-method {
  display: grid;
  gap: 0.25rem;
  max-width: 22rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(133, 73, 93, 0.1);
}

.contact-method span {
  color: var(--muted);
  font-weight: 900;
}

.contact-method a {
  color: var(--rose-strong);
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.message-preview {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.25rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(150, 91, 108, 0.2);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: 700 1rem/1.3 "Nunito", sans-serif;
  background: rgba(255, 249, 242, 0.86);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 72, 110, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 111, 145, 0.16);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.7rem 1rem 2.1rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--rose-strong);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .order-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 29rem;
    order: -1;
  }

  .intro-band,
  .steps {
    grid-template-columns: 1fr;
  }

  .intro-band div,
  .intro-band div:first-child,
  .intro-band div:last-child {
    border-radius: 8px;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-action {
    padding-inline: 0.75rem;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero-stage {
    min-height: 22rem;
  }

  .hero-character {
    left: 0;
    width: 58%;
  }

  .hero-printer {
    right: -3%;
    width: 56%;
  }

  .hero-pet {
    right: 10%;
    width: 36%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
