@font-face {
  font-family: "Bright";
  src: url("assets/fonts/bright-demo.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-medium-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src: url("assets/fonts/canva-sans-bold-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cobalt: #5a74d5;
  --sky: #88d2e9;
  --mint: #b2e1b4;
  --pink: #d95f84;
  --butter: #efeca1;
  --ink: #141414;
  --white: #ffffff;
  --soft: #f8f8fb;
  --shadow: 0 20px 55px rgba(60, 76, 132, 0.13);
}

* { box-sizing: border-box; }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbfbff 55%, #fff 100%);
  font-family: "Canva Sans", "Avenir Next", Avenir, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.page-shell { overflow: hidden; }

.hero {
  position: relative;
  max-width: 1180px;
  min-height: 760px;
  margin: 0 auto;
  padding: 38px 40px 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 7px solid;
  border-radius: 50%;
  opacity: .75;
  pointer-events: none;
  display: none;
}

.hero::before {
  width: 270px;
  height: 150px;
  border-color: var(--mint);
  transform: rotate(-24deg);
  left: -125px;
  top: 340px;
}

.hero::after {
  width: 320px;
  height: 170px;
  border-color: var(--sky);
  transform: rotate(25deg);
  right: -115px;
  top: 110px;
}

.wordmark {
  position: relative;
  z-index: 5;
  display: block;
  width: min(900px, 88%);
  height: auto;
  margin: 0 auto -48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .88fr);
  align-items: center;
  min-height: 600px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
  padding: 70px 0 110px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cobalt);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Canva Sans", "Avenir Next", Arial, sans-serif;
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.7rem);
  line-height: 1;
}

h1 .sans-line {
  display: block;
  color: var(--cobalt);
  font-size: clamp(.95rem, 1.65vw, 1.25rem);
  letter-spacing: .14em;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 -2px 0 #fff;
}

h1 .bright-line {
  display: block;
  margin-top: 12px;
  color: var(--pink);
  font-family: "Bright", Georgia, serif;
  font-size: clamp(3.45rem, 6.6vw, 5.8rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
  white-space: nowrap;
  text-shadow: 2px 2px 0 var(--ink);
}

h2 {
  margin: 0;
  color: var(--pink);
  font-family: "Bright", Georgia, serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: 2px 2px 0 var(--ink);
}
h2 { font-size: clamp(2.35rem, 4.2vw, 4rem); }

.shop-section h2,
.checkout-section h2 { color: var(--cobalt); }

.follow-section h2 { color: var(--pink); }

.lede {
  max-width: 560px;
  margin: 26px 0 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  padding: 13px 18px;
  border: 2px solid var(--cobalt);
  border-radius: 12px;
  color: var(--cobalt);
  background: rgba(255,255,255,.92);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.quick-links a:first-child { color: #fff; background: var(--cobalt); }
.quick-links a:hover, .quick-links a:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(90,116,213,.18); }

.hero-photo-wrap {
  position: relative;
  align-self: end;
  height: 610px;
}

.photo-halo {
  position: absolute;
  width: 470px;
  height: 470px;
  right: -30px;
  top: 90px;
  border-radius: 50%;
  background: var(--butter);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  width: auto;
  height: 610px;
  max-width: none;
  right: -48px;
  bottom: 0;
}

.burst {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  background: currentColor;
  -webkit-mask: url("assets/star-sparkle.png") center / contain no-repeat;
  mask: url("assets/star-sparkle.png") center / contain no-repeat;
  font-size: 0;
}
.burst-one { color: var(--pink); top: 70px; left: 5px; transform: rotate(12deg); }
.burst-two { color: var(--cobalt); top: 205px; right: -5px; }
.burst-three { width: 42px; height: 42px; color: var(--mint); bottom: 80px; left: 28px; }

.section { padding: 110px max(28px, calc((100vw - 1100px) / 2)); }
.section-heading { max-width: 650px; margin-bottom: 40px; }
.section-heading > p:last-child { margin: 18px 0 0; font-size: 1.08rem; }

.shop-section { position: relative; background: var(--butter); }
.shop-section::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 25px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  -webkit-mask: url("assets/star-sparkle.png") center / contain no-repeat;
  mask: url("assets/star-sparkle.png") center / contain no-repeat;
}

.link-grid { display: grid; gap: 18px; }
.shop-grid { grid-template-columns: repeat(3, 1fr); }

.link-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.link-card:hover, .link-card:focus-visible { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--ink); }
.card-pink { background: var(--pink); color: #fff; }
.card-blue { background: var(--cobalt); color: #fff; }
.card-mint { background: var(--mint); }
.card-kicker { display: block; margin-bottom: 48px; color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.link-card strong { display: block; max-width: 85%; color: var(--ink); font-family: "Canva Sans", "Avenir Next", Arial, sans-serif; font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
.link-card strong span { display: block; }
.arrow { position: absolute; right: 25px; bottom: 22px; color: #fff; font-size: 2rem; font-weight: 800; }

.follow-section { position: relative; background: #fff; }
.follow-section::before {
  content: "";
  position: absolute;
  left: 7%;
  top: 28px;
  width: 44px;
  height: 44px;
  background: var(--sky);
  -webkit-mask: url("assets/star-sparkle.png") center / contain no-repeat;
  mask: url("assets/star-sparkle.png") center / contain no-repeat;
}
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-links a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 175px;
  padding: 26px 28px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-links a:hover, .social-links a:focus-visible { transform: translateY(-4px); box-shadow: 0 10px 0 rgba(20,20,20,.12); }
.social-links b { font-size: .9rem; font-weight: 700; }
.social-links i { font-style: normal; }
.social-logo { display: block; width: 66px; height: 66px; }
.instagram-link { color: var(--pink); }
.facebook-link { color: var(--cobalt); }
.tiktok-link { color: var(--ink); }
.tiktok-logo { display: flex; flex-direction: column; align-items: center; width: 78px; color: var(--ink); }
.tiktok-logo svg { width: 48px; height: 54px; }
.tiktok-logo strong { margin-top: -5px; font-size: 1.15rem; font-weight: 700; letter-spacing: -.04em; }

.checkout-section { padding-top: 65px; background: #fff; }
.checkout-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 32px;
  background: var(--sky);
  box-shadow: var(--shadow);
}
.checkout-copy p:last-child { margin: 22px 0 0; max-width: 470px; font-size: 1.05rem; }
.payment-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.payment {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.payment:hover, .payment:focus-visible { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.payment span { grid-column: 1; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.payment strong { grid-column: 1; font-size: 1.45rem; }
.payment b { grid-column: 2; grid-row: 1 / span 2; font-size: 1.8rem; }
.cashapp { background: var(--mint); }
.venmo,
.paypal { color: #fff; background: var(--cobalt); }
.zelle { color: #46646e; background: var(--pink); }
.payment span,
.payment b { color: #fff; }
.payment strong { color: #000; }
.is-disabled { cursor: default; opacity: 1; border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.payment.is-disabled:hover { transform: none; box-shadow: 5px 5px 0 var(--ink); }

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 24px 52px;
  text-align: center;
}
footer img { width: 125px; height: auto; }
footer p { margin: 15px 0 0; font-family: "Canva Sans", "Avenir Next", Arial, sans-serif; font-size: 1.8rem; font-style: italic; font-weight: 700; letter-spacing: -.035em; }
footer > a { margin-top: 5px; color: var(--pink); font-size: 1.08rem; font-weight: 800; text-decoration: none; }
footer small { max-width: 580px; margin-top: 32px; color: #656774; font-size: .78rem; }

:focus-visible { outline: 4px solid var(--pink); outline-offset: 4px; }

@media (max-width: 760px) {
  .hero { min-height: 0; padding: 24px 20px 0; }
  .wordmark { width: 100%; max-width: none; margin: 0 auto -22px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 72px 2px 22px; text-align: center; }
  h1 .sans-line { font-size: clamp(1rem, 4.25vw, 1.2rem); }
  h1 .bright-line { margin-top: 10px; font-size: clamp(3.8rem, 16vw, 4.6rem); }
  .shop-section h2,
  .follow-section h2 { font-size: clamp(3.7rem, 15.5vw, 4.5rem); }
  .checkout-section h2 { font-size: clamp(3.05rem, 13vw, 3.8rem); }
  .lede { margin: 20px auto 24px; }
  .quick-links { justify-content: center; }
  .quick-links a { flex: 1 1 calc(50% - 10px); min-width: 145px; padding: 12px 10px; }
  .quick-links a:last-child { flex-basis: 100%; }
  .hero-photo-wrap { height: 420px; margin-top: 10px; }
  .photo-halo { width: 340px; height: 340px; right: 50%; top: 46px; transform: translateX(50%); }
  .hero-photo { width: auto; height: 420px; right: 50%; transform: translateX(50%); }
  .burst-one { left: 5%; }
  .burst-two { right: 5%; }
  .burst-three { left: 7%; }
  .section { padding: 78px 20px; }
  .shop-section::after { right: 9%; top: 22px; width: 38px; height: 38px; }
  .follow-section::before { left: 8%; top: 20px; width: 38px; height: 38px; }
  .section-heading { margin-bottom: 28px; text-align: center; }
  .section-heading h2 { margin-top: 8px; }
  .shop-grid, .social-links { grid-template-columns: 1fr; }
  .link-card { min-height: 155px; padding: 24px; box-shadow: 6px 6px 0 var(--ink); }
  .card-kicker { margin-bottom: 30px; }
  .checkout-section { padding-top: 45px; }
  .checkout-card { grid-template-columns: 1fr; gap: 30px; padding: 32px 22px; border-radius: 24px; text-align: center; }
  .checkout-copy h2 { margin-top: 10px; }
  .checkout-copy p:last-child { margin-inline: auto; }
  .payment-links { grid-template-columns: 1fr; }
  .payment { text-align: left; }
}

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