:root {
  color-scheme: light;
  --ink: #2c2521;
  --deep: #0c6770;
  --deep-soft: #0f8891;
  --teal: #51adb4;
  --blue: #20b8d0;
  --paper: #ffffff;
  --pink: #f5226d;
  --coral: #fe5606;
  --gold: #fead0e;
  --purple: #6d2a8d;
  --white: #ffffff;
  --line: #6d2a8d;
  --shadow: 10px 10px 0 var(--gold);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--deep);
  padding: 0.75rem 1rem;
  border-radius: 0.35rem;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 0 5vw;
  background: var(--white);
  color: var(--deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
}

.brand span { color: var(--purple); }
.brand::after {
  width: 2.7rem;
  height: 0.55rem;
  margin-left: 0.2rem;
  background: radial-gradient(circle, var(--pink) 0 3px, transparent 4px) 0 50% / 0.9rem 0.55rem repeat-x;
  content: '';
}

.brand-mark {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--teal);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--white);
}

.site-nav { display: flex; align-items: center; gap: 0.3rem; }
.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}
.site-nav a:nth-child(1):hover, .site-nav a:nth-child(1):focus-visible, .site-nav a:nth-child(1)[aria-current='page'] {
  background: var(--pink);
  color: var(--white);
}
.site-nav a:nth-child(2):hover, .site-nav a:nth-child(2):focus-visible, .site-nav a:nth-child(2)[aria-current='page'] { background: var(--coral); color: var(--white); }
.site-nav a:nth-child(3):hover, .site-nav a:nth-child(3):focus-visible, .site-nav a:nth-child(3)[aria-current='page'] { background: var(--purple); color: var(--white); }

.menu-button {
  display: none;
  border: 2px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  padding: 0.65rem 0.8rem;
  border-radius: 0.4rem;
  font: inherit;
  font-weight: 700;
}
.menu-button:hover, .menu-button:focus-visible, .menu-button[aria-expanded='true'] { border-color: var(--coral); background: var(--coral); color: var(--white); }

.hero {
  min-height: min(720px, calc(100vh - 5.5rem));
  background: var(--white);
  color: var(--ink);
}

.hero-content { display: grid; width: min(90vw, 1180px); min-height: min(720px, calc(100vh - 5.5rem)); margin: 0 auto; padding: 4.5rem 0; grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.hero-copy { max-width: 43rem; }
.hero-art { position: relative; width: 100%; aspect-ratio: 1 / 1; justify-self: center; padding: clamp(0.6rem, 2vw, 1.2rem); border: 5px solid var(--pink); border-radius: 50%; background: var(--white); box-shadow: 14px 14px 0 var(--gold), -12px -12px 0 var(--purple); }
.hero-art img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--purple);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; color: var(--deep); font-family: var(--serif); line-height: 1.05; }
h1 { margin-bottom: 1.4rem; font-size: clamp(3rem, 7.5vw, 6.7rem); letter-spacing: -0.045em; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.55rem; }
.color-word { display: inline; }
.color-word-1 { color: var(--pink); }
.color-word-2 { color: var(--coral); }
.color-word-3 { color: var(--purple); }
.color-word-4 { color: var(--teal); }
.color-word-5 { color: var(--gold); }
.color-word-6 { color: var(--blue); }
.hero-copy > p:not(.eyebrow) { max-width: 40rem; color: var(--ink); font-size: clamp(1.05rem, 2vw, 1.25rem); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}
.button:hover, .button:focus-visible { filter: brightness(0.86); color: var(--white); transform: translateY(-1px); }
.button-row .button:nth-child(1) { background: var(--pink); color: var(--white); }
.button-row .button:nth-child(2) { border-color: var(--coral); background: var(--coral); color: var(--white); }
.button-secondary { border-color: var(--coral); background: var(--coral); color: var(--white); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--coral); background: var(--coral); color: var(--white); }
.button-dark { background: var(--purple); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--purple); color: var(--white); }
.empty-state .button { border-color: #087e9b; background: #087e9b; color: var(--white); }
.shop-footer-action .button { border-color: var(--purple); background: var(--purple); color: var(--white); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 5vw; }
.section-inner { width: min(100%, 1180px); margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.lead { font-family: var(--serif); font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.45; }
.mini-rule { width: 5.5rem; height: 0.4rem; margin-bottom: 1.7rem; background: linear-gradient(90deg, var(--pink) 0 25%, var(--coral) 25% 50%, var(--gold) 50% 75%, var(--teal) 75%); }

.pathways { background: var(--white); border-top: 1px solid var(--gold); }
.pathway-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.pathway-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: var(--white);
  border: 1px solid var(--pink);
  border-top: 0.45rem solid var(--pink);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.pathway-card:first-child { box-shadow: 10px 10px 0 var(--coral); }
.pathway-card:first-child h2 { color: var(--pink); }
.pathway-card:nth-child(2) { background: var(--white); color: var(--ink); border-color: var(--purple); border-top-color: var(--gold); box-shadow: 10px 10px 0 var(--blue); }
.pathway-card:nth-child(2) h2 { color: var(--purple); }
.pathway-card p { max-width: 32rem; }
.pathway-card .arrow { font-size: 1.5rem; font-weight: 800; transition: transform 160ms ease; }
.pathway-card:hover .arrow, .pathway-card:focus-visible .arrow { transform: translateX(0.4rem); }

.page-hero { padding: clamp(4.5rem, 9vw, 8rem) 5vw; background-color: var(--white); background-image: radial-gradient(circle at 7% 25%, var(--gold) 0 5px, transparent 6px), radial-gradient(circle at 92% 30%, var(--pink) 0 6px, transparent 7px), radial-gradient(circle at 85% 80%, var(--blue) 0 5px, transparent 6px), radial-gradient(circle at 14% 82%, var(--purple) 0 4px, transparent 5px); color: var(--ink); border-bottom: 8px solid; border-image: linear-gradient(90deg, var(--pink), var(--coral), var(--gold), var(--blue), var(--purple)) 1; }
.page-hero-inner { width: min(100%, 960px); margin: 0 auto; }
.page-hero p:last-child { max-width: 43rem; color: var(--ink); font-size: 1.15rem; }

.content-narrow { width: min(90vw, 880px); margin: 0 auto; }
.empty-state {
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--white);
  border: 1px solid var(--purple);
  border-left: 0.5rem solid var(--pink);
  box-shadow: var(--shadow);
}
.empty-state p:last-child { margin-bottom: 0; }

.shop-section { padding-top: clamp(3.5rem, 7vw, 6rem); }
.shop-heading { margin-bottom: 2.5rem; }
.shop-heading h2 { margin-bottom: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.product-card { display: flex; min-width: 0; flex-direction: column; background: var(--white); border: 1px solid var(--pink); border-top: 0.4rem solid var(--pink); color: var(--ink); text-decoration: none; box-shadow: 7px 7px 0 var(--gold); transition: transform 160ms ease, box-shadow 160ms ease; }
.product-card:nth-child(4n+2) { border-color: var(--coral); border-top-color: var(--coral); box-shadow: 7px 7px 0 var(--blue); }
.product-card:nth-child(4n+3) { border-color: var(--purple); border-top-color: var(--purple); box-shadow: 7px 7px 0 var(--pink); }
.product-card:nth-child(4n) { border-color: var(--blue); border-top-color: var(--blue); box-shadow: 7px 7px 0 var(--purple); }
.product-card:hover, .product-card:focus-visible { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--gold); }
.product-image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--white); border-bottom: 1px solid currentColor; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-copy { display: flex; min-height: 9.5rem; flex: 1; flex-direction: column; padding: 1.15rem; }
.product-copy h3 { margin-bottom: 1rem; color: var(--deep); font-family: var(--sans); font-size: 1.05rem; line-height: 1.35; }
.product-options { margin: 0 0 1rem; color: var(--ink); font-size: 0.92rem; line-height: 1.45; }
.product-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; margin-top: auto; color: var(--purple); font-size: 0.92rem; font-weight: 800; }
.shop-status { grid-column: 1 / -1; padding: 2rem; border: 1px solid var(--teal); text-align: center; }
.shop-footer-action { margin-top: 3rem; text-align: center; }

.event-list { display: grid; gap: 1rem; padding: 0; list-style: none; }
.event-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.event-card:nth-child(4n+1) { border-left: 0.5rem solid var(--pink); }
.event-card:nth-child(4n+2) { border-left: 0.5rem solid var(--coral); }
.event-card:nth-child(4n+3) { border-left: 0.5rem solid var(--gold); }
.event-card:nth-child(4n) { border-left: 0.5rem solid var(--purple); }
.event-date { color: var(--purple); font-weight: 850; }
.event-card h2 { margin-bottom: 0.5rem; font-size: 1.7rem; }
.event-card p { margin: 0.25rem 0; }

.site-footer { padding: 3rem 5vw; background: var(--white); color: var(--ink); border-top: 5px solid; border-image: linear-gradient(90deg, var(--pink), var(--coral), var(--gold), var(--teal), var(--purple)) 1; }
.footer-inner { display: flex; width: min(100%, 1180px); margin: 0 auto; align-items: center; justify-content: space-between; gap: 2rem; }
.site-footer strong { color: var(--pink); }
.site-footer a { color: var(--purple); font-weight: 700; }
.site-footer a:first-child { color: var(--coral); }

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

@media (max-width: 760px) {
  .site-header { min-height: 4.8rem; }
  .brand-mark { width: 2.9rem; height: 2.9rem; }
  .brand::after { display: none; }
  .menu-button { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 5vw 1.2rem;
    background: var(--white);
    border-top: 1px solid var(--gold);
  }
  .site-nav[data-open='true'] { display: flex; }
  .site-nav a { border-radius: 0.3rem; }
  .hero { min-height: auto; }
  .hero-content { min-height: auto; padding: 3.5rem 0 4.5rem; grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-art { width: min(64vw, 18rem); max-height: 18rem; margin: 1rem auto 0; order: 2; }
  .story-grid, .pathway-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
}

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