@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap");

:root {
  --ink: #302d29;
  --paper: #f8f3eb;
  --paper-dark: #eee4d6;
  --coral: #e45d46;
  --teal: #2e796d;
  --gold: #f1b84b;
  --white: #fffdf9;
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 1rem; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: 1.25rem;
  text-decoration: none;
}
.brand strong { color: var(--coral); }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav > a { font-size: .9rem; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--coral); }
.menu-toggle { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--coral);
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--coral); }
.button-small { padding: .55rem 1rem; box-shadow: none; }
.text-link { font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 2.5rem auto 6rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 600px;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.04; }
h1, h2 { font-family: var(--display); }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.5rem, 7.2vw, 7rem); letter-spacing: -.055em; }
h1 em { color: var(--coral); font-weight: 700; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.04em; }
.lede { max-width: 580px; font-size: 1.16rem; }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.7rem; }
.hero-art { position: relative; min-height: 560px; }
.sunburst {
  position: absolute;
  inset: 8% 2% 3% 8%;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--gold) 0 12deg, transparent 12deg 24deg);
  opacity: .5;
}
.product-card {
  position: absolute;
  width: 225px;
  padding: 1rem;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 12px 0 var(--ink);
}
.product-card svg { width: 100%; }
.card-label {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 20px;
  background: var(--ink);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-shirt { left: 7%; top: 6%; transform: rotate(-6deg); }
.card-mug { right: 4%; bottom: 4%; transform: rotate(7deg); }
.hand-note {
  position: absolute;
  right: 1%;
  top: 17%;
  width: 130px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.1;
  transform: rotate(8deg);
}
.marquee {
  overflow: hidden;
  padding: .85rem 0;
  border-block: 2px solid var(--ink);
  background: var(--gold);
  white-space: nowrap;
}
.marquee div { width: max-content; font-weight: 700; text-transform: uppercase; word-spacing: .4rem; animation: drift 25s linear infinite; }
.marquee span { padding: 0 1rem; color: var(--coral); }
@keyframes drift { to { transform: translateX(-25%); } }
.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 7rem 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; align-items: end; margin-bottom: 3rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.collection-card { min-height: 450px; padding: 1.5rem; border: 2px solid var(--ink); border-radius: 16px; box-shadow: 6px 6px 0 var(--ink); }
.collection-card.coral { background: #ec806d; }
.collection-card.gold { background: var(--gold); }
.collection-card.teal { background: #6daf9f; }
.number { font-weight: 700; }
.collection-card h3 { margin: 1.5rem 0 .6rem; font-family: var(--display); font-size: 2rem; }
.collection-card p { margin: 0; }
.mini-art {
  width: 70%;
  aspect-ratio: 1;
  margin: 1rem auto;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
}
.shirt-art { clip-path: polygon(25% 7%, 40% 17%, 60% 17%, 75% 7%, 100% 25%, 84% 47%, 72% 41%, 72% 100%, 28% 100%, 28% 41%, 16% 47%, 0 25%); }
.mug-art { aspect-ratio: 1.15; border-radius: 4px 4px 25px 25px; transform: rotate(-4deg); }
.invite-art { aspect-ratio: .8; transform: rotate(3deg); }
.custom {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--teal);
  color: var(--white);
}
.custom .eyebrow { color: var(--gold); }
.custom-art { min-height: 430px; display: grid; grid-template-columns: 1fr auto 1fr; place-items: center; gap: .8rem; }
.scribble {
  display: grid;
  place-items: center;
  width: 165px;
  aspect-ratio: 1;
  border: 3px solid var(--white);
  border-radius: 50% 45% 55% 40%;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  transform: rotate(-8deg);
}
.scribble:nth-of-type(2) { transform: rotate(7deg); }
.plus, .equals { color: var(--gold); font-size: 2rem; font-weight: 700; }
.heart { grid-column: 1 / -1; color: var(--coral); font-size: 4rem; line-height: .6; transform: rotate(-6deg); }
.custom-copy p:not(.eyebrow) { max-width: 560px; }
.button-light { margin-top: 1rem; border-color: var(--white); background: var(--white); color: var(--ink); }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.story-copy { font-size: 1.05rem; }
.dropcap::first-letter { float: left; padding: .1rem .5rem 0 0; color: var(--coral); font-family: var(--display); font-size: 4.5rem; line-height: .7; }
.cta { width: min(1050px, calc(100% - 40px)); margin: 2rem auto 7rem; padding: 5rem 2rem; border: 3px solid var(--ink); border-radius: 50% 45% 48% 42%; background: var(--gold); text-align: center; box-shadow: 9px 10px 0 var(--ink); }
.cta .eyebrow { color: var(--ink); }
.cta h2 { max-width: 750px; margin-inline: auto; }
.site-footer {
  padding: 3rem max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: center;
  border-top: 2px solid var(--ink);
  background: var(--paper-dark);
}
.footer-links { display: flex; gap: 1.5rem; font-weight: 700; }
.copyright { grid-column: 1 / -1; margin: 0; font-size: .8rem; opacity: .7; }

.admin-body { min-height: 100vh; background: #202b28; color: var(--white); }
.admin-shell { width: min(900px, calc(100% - 40px)); margin: auto; padding-bottom: 5rem; }
.admin-header { min-height: 100px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #ffffff2b; }
.brand-inverse { color: var(--white); }
.admin-badge { padding: .35rem .7rem; border: 1px solid #ffffff55; border-radius: 100px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.admin-intro { padding: 5rem 0 2.5rem; }
.admin-intro h1 { max-width: 700px; margin-bottom: 1rem; font-size: clamp(3rem, 8vw, 5.5rem); }
.admin-intro > p:last-child { max-width: 680px; color: #d5ddd8; font-size: 1.05rem; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-card {
  min-height: 125px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #ffffff32;
  border-radius: 12px;
  background: #ffffff0a;
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.admin-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.primary-card { background: var(--coral); border-color: var(--coral); }
.admin-card strong, .admin-card small { display: block; }
.admin-card small { margin-top: .2rem; color: #e1e5e2; }
.admin-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid #ffffff66; border-radius: 50%; font-size: 1.3rem; }
.admin-note { margin: 1rem 0 2.5rem; padding: 1.25rem; border-left: 4px solid var(--gold); background: #ffffff0a; }
.admin-note p { margin: .35rem 0 0; color: #d5ddd8; }
.admin-back { color: var(--white); }
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; }
.not-found main { width: min(600px, calc(100% - 40px)); }
.not-found img { margin: 0 auto 2rem; }
.not-found h1 { font-size: clamp(3rem, 8vw, 5rem); }
.not-found .button { margin-top: 1rem; }

@media (max-width: 820px) {
  .menu-toggle { display: block; border: 0; background: transparent; font: 700 .9rem var(--body); }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    z-index: 20;
    padding: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
  }
  .site-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; margin-top: 3rem; }
  .hero-art { min-height: 470px; margin-top: 2rem; }
  .section-heading, .custom, .story { grid-template-columns: 1fr; }
  .section-heading { gap: 1rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 390px; }
  .custom { gap: 1rem; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (max-width: 560px) {
  .site-header { min-height: 78px; }
  .brand { font-size: 1rem; }
  .brand img { width: 38px; }
  .hero { min-height: auto; margin-bottom: 4rem; }
  .hero h1 { font-size: 3.35rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 385px; }
  .product-card { width: 165px; }
  .hand-note { width: 90px; font-size: 1.15rem; }
  .section { padding-block: 5rem; }
  .custom-art { min-height: 320px; gap: .25rem; }
  .scribble { width: 105px; font-size: 1rem; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-intro { padding-top: 3rem; }
}

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

