:root {
  --purple: #6a4ca3;
  --purple-dark: #503683;
  --lime: #a8cf38;
  --gold: #f0c45a;
  --turquoise: #63c7d9;
  --cream: #faf6ef;
  --soft-lavender: #f1ecfb;
  --aimees-magenta: #f4369d;
  --text-dark: #2f2342;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(47, 35, 66, 0.14);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #1f9fb9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--white);
  opacity: 0.99;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(23, 66, 79, 0.25);
}

.nav-links a:hover {
  color: #fef3be;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(240, 196, 90, 0.14), transparent 30%),
    linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: clamp(1rem, 2.8vw, 1.6rem) 0 clamp(0.72rem, 1.9vw, 1.1rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.1rem, 0.5vw, 0.28rem);
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow-purple {
  background: var(--soft-lavender);
  color: var(--purple-dark);
}

.hero h1 {
  margin: 0;
  font-family: "Kalam", "Brush Script MT", "Segoe Print", cursive;
  font-size: clamp(1.95rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
  color: var(--lime);
  text-shadow: 0 2px 10px rgba(47, 35, 66, 0.28);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: #22b3cb;
  color: var(--white);
}

.btn-primary:hover {
  background: #1b9db3;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 110, 128, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-logo {
  width: auto;
  max-width: min(96vw, 912px);
  max-height: clamp(312px, 56vh, 552px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 26px rgba(240, 196, 90, 0.34)) drop-shadow(0 10px 22px rgba(47, 35, 66, 0.2));
}

.section {
  padding: 5rem 0;
}

.light-section {
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-section h2,
.contact-intro h2,
.site-footer h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.statement-tees-card,
.featured-book-card {
  text-align: center;
}


.featured-drop-card {
  text-align: center;
}


.featured-drop-card .card-image {
  height: auto;
  min-height: 220px;
}

.card-image {
  height: 220px;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.placeholder.one {
  background: linear-gradient(135deg, var(--purple), var(--lime));
}

.statement-tees-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-text {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.08em;
}

.placeholder.two {
  background: linear-gradient(135deg, var(--gold), #ffd98c);
}

.placeholder.three {
  background: linear-gradient(135deg, var(--turquoise), var(--purple));
}


.featured-drop-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2eb;
  padding: 1.2rem;
}

.featured-drop-image {
  width: min(100%, 460px);
  aspect-ratio: 18 / 5;
  object-fit: contain;
}

.color-options-label {
  margin: 1rem 0 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple-dark);
}

.sticker-color-options {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.sticker-color-option {
  border: 1px solid rgba(106, 76, 163, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sticker-color-option:hover {
  border-color: var(--purple);
}

.sticker-color-option.is-selected {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  color: var(--white);
}

.featured-book-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2eb;
  padding: 1rem;
}

.featured-book-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.drop-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple-dark);
}

.about-section {
  background: var(--soft-lavender);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(0, 56%);
  gap: clamp(1.2rem, 3vw, 1.9rem);
  align-items: start;
}

.about-media {
  width: 100%;
  height: 100%;
}

.about-family-image {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin: 0;
}

.about-text h2 {
  font-family: "Poppins", "Inter", "Montserrat", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.25;
}

.about-text .eyebrow {
  color: var(--aimees-magenta);
  background: rgba(244, 54, 157, 0.12);
}

.about-text p {
  max-width: 100%;
}

.about-logo {
  width: min(100%, 220px);
  margin: 0 auto;
}

.contact-section {
  background: linear-gradient(140deg, #e8dcfb 0%, #d7f4f6 100%);
}

.contact-shell {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(80, 54, 131, 0.18);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  box-shadow: 0 14px 32px rgba(47, 35, 66, 0.16);
}

.contact-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.contact-intro .eyebrow {
  margin-bottom: 0.6rem;
}

.contact-intro h2 {
  font-family: "Poppins", "Inter", "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--purple-dark);
  margin-bottom: 0.6rem;
}

.contact-intro p {
  margin: 0;
  color: #3e3255;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 600;
  color: #3a2d50;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(80, 54, 131, 0.24);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f9fb9;
  box-shadow: 0 0 0 3px rgba(31, 159, 185, 0.18);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.field-error {
  margin: -0.35rem 0 0.2rem;
  min-height: 1.15rem;
  color: #a90042;
  font-size: 0.85rem;
  line-height: 1.3;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #a90042;
  box-shadow: 0 0 0 3px rgba(169, 0, 66, 0.16);
}

.contact-submit {
  margin-top: 0.45rem;
  border: 0;
  cursor: pointer;
  justify-self: center;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-status {
  margin: 0.5rem 0 0;
  min-height: 1.35rem;
  font-weight: 600;
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 36ch;
}

.form-status.is-success {
  color: #0a6f4e;
}

.form-status.is-error {
  color: #a90042;
}

.site-footer {
  background: var(--purple-dark);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 1rem;
}

.footer-contact-item i {
  color: var(--turquoise);
  font-size: 0.88rem;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  pointer-events: auto;
}

.footer-link:hover,
.footer-link:focus-visible {
  opacity: 0.85;
}

.footer-copyright {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.9;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #1f9fb9;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 159, 185, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: background-color 0.2s ease, transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, box-shadow 0.25s ease;
  z-index: 60;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #18889e;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(24, 136, 158, 0.4);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .card-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    height: auto;
  }

  .about-logo {
    margin-top: 1rem;
  }

  .hero {
    padding: 1.1rem 0 0.95rem;
  }
}

@media (max-width: 640px) {
  .nav {
    justify-content: center;
    padding: 0.75rem 0;
  }

  .nav-links {
    justify-content: center;
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero-logo {
    max-width: min(97vw, 620px);
    max-height: clamp(220px, 48vh, 360px);
  }

  .section {
    padding: 4rem 0;
  }

  .about-text h2 {
    white-space: normal;
  }

  .contact-submit {
    width: 100%;
    text-align: center;
  }

  .form-status {
    max-width: none;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
}
