:root {
  color-scheme: light;
  --ink: #2c2521;
  --deep: #0c6770;
  --deep-soft: #0f8891;
  --teal: #51adb4;
  --paper: #ffffff;
  --pink: #f5226d;
  --coral: #fe5606;
  --gold: #fead0e;
  --purple: #6d2a8d;
  --white: #ffffff;
  --line: #51adb4;
  --shadow: 10px 10px 0 var(--teal);
  --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-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(--deep);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current='page'] {
  background: var(--pink);
  color: var(--white);
}

.menu-button {
  display: none;
  border: 2px solid var(--deep);
  background: transparent;
  color: var(--deep);
  padding: 0.65rem 0.8rem;
  border-radius: 0.4rem;
  font: inherit;
  font-weight: 700;
}

.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; 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(--teal); }
.hero-art img { width: 100%; border-radius: 50%; }
.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; }
.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 { background: var(--purple); transform: translateY(-1px); }
.button-secondary { border-color: var(--deep); background: var(--white); color: var(--deep); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--deep); color: var(--white); }
.button-dark { background: var(--purple); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--deep); }

.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(--teal); }
.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(--teal);
  border-top: 0.45rem solid var(--pink);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.pathway-card:nth-child(2) { background: var(--white); color: var(--ink); border-color: var(--teal); border-top-color: var(--gold); box-shadow: 10px 10px 0 var(--purple); }
.pathway-card:nth-child(2) h2 { color: var(--deep); }
.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: var(--white); color: var(--ink); border-bottom: 8px solid; border-image: linear-gradient(90deg, var(--pink), var(--coral), var(--gold), var(--teal), var(--purple)) 1; }
.page-hero h1 { color: var(--deep); }
.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(--teal);
  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 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr); gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.shop-heading h2 { margin-bottom: 0; }
.shop-heading > p { max-width: 34rem; margin: 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(--teal); 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(3n+2) { border-top-color: var(--coral); box-shadow: 7px 7px 0 var(--teal); }
.product-card:nth-child(3n) { border-top-color: var(--purple); }
.product-card:hover, .product-card:focus-visible { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--teal); }
.product-image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--teal); }
.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; justify-content: space-between; 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-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; 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-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(--deep); }
.site-footer a { color: var(--purple); font-weight: 700; }

: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; }
  .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(--teal);
  }
  .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, 20rem); margin: 1rem auto 0; order: 2; }
  .story-grid, .pathway-grid, .shop-heading { 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; }
}
