/* =========================================================================
   Pure Current — design tokens
   Palette pulled from the real packaging: deep navy field, glacier blue
   contour lines, sunrise gold disc. Paper is a cool, glacier-tinted
   off-white rather than a warm cream, to match the "crystal clear lake"
   brief instead of a generic warm neutral.
   ========================================================================= */
:root {
  --navy-deep:      #0B1B2B;
  --navy-ink:       #12283D;
  --navy-line:      #24405A;
  --paper:          #EEF3F2;
  --paper-raised:   #FFFFFF;
  --glacier-blue:   #3E92CC;
  --glacier-blue-lt:#7FC4E8;
  --sunrise-gold:   #F2B705;
  --current-teal:   #1E5F74;
  --matcha-green:   #7FA650;
  --citrus-orange:  #E8762C;
  --ink:            #142433;
  --mist:           #5C7080;
  --mist-lt:        #9AAAB2;
  --danger:         #C0432E;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 6px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glacier-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sunrise-gold);
  display: inline-block;
}

.eyebrow.on-dark { color: var(--glacier-blue-lt); }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--sunrise-gold); outline-offset: 2px; }

.btn-primary {
  background: var(--sunrise-gold);
  color: var(--navy-deep);
}
.btn-primary:hover { transform: translateY(-1px); background: #ffc620; }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--paper-raised);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.btn-outline-dark:hover { background: var(--navy-deep); color: var(--paper-raised); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn:disabled {
  opacity: 1;
  cursor: default;
  background: var(--paper);
  border-color: #D3DEDD;
  color: var(--mist);
}
.btn:disabled:hover { transform: none; }
.btn-danger { background: var(--danger); color: #fff; }

/* ---------------------------------------------------------------- nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--navy-line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--paper-raised);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.wordmark .sub { color: var(--glacier-blue-lt); font-size: 0.55em; font-family: var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase; }
.wordmark-icon { height: 34px; width: auto; flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin-right: 30px; }
.nav-links li:last-child { margin-right: 0; }
.nav-links a {
  color: var(--paper-raised);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; border-color: var(--sunrise-gold); }

.nav-toggle { display: none; }

/* --------------------------------------------------------------- hero --- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--paper-raised);
  overflow: hidden;
  padding: 90px 0 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--paper-raised); }
.hero .lede { font-size: 1.15rem; color: #C9D6DC; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 1.6em; flex-wrap: wrap; }

.hero-art { position: relative; max-width: 460px; margin: 0 auto; }

/* Real hero photos, layered behind the text with a scrim so white
   headline text stays legible regardless of how bright the photo is. */
.hero-photo-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.hero-photo.hero-photo-static { opacity: 1; }
.hero-scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(11,27,43,0.92) 0%, rgba(11,27,43,0.65) 45%, rgba(11,27,43,0.35) 100%);
}
.hero-inner-photo { grid-template-columns: 1fr; }
.hero-inner-photo .hero-actions,
.hero-inner-photo .stat-strip { position: relative; z-index: 2; }

.contour-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
}

/* ------------------------------------------------------------- sections - */
section { padding: 84px 0; }
.section-dark { background: var(--navy-deep); color: var(--paper-raised); }
.section-dark h2 { color: var(--paper-raised); }
.section-dark p { color: #C9D6DC; }
.section-teal { background: var(--current-teal); color: var(--paper-raised); }
.section-teal h2 { color: var(--paper-raised); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ----------------------------------------------------------- product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper-raised);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(11,27,43,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,27,43,0.14); }

.product-card-img {
  background: radial-gradient(circle at 50% 38%, #17324a 0%, var(--navy-deep) 72%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.product-card-img img { max-height: 100%; object-fit: contain; transition: transform 0.35s ease; }
.product-card:hover .product-card-img img { transform: scale(1.045); }

.product-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { margin-bottom: 0.2em; }
.product-card-body .tagline { color: var(--mist); font-size: 0.92rem; flex: 1; }

.spec-row {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--mist);
  text-transform: uppercase;
  margin: 14px 0;
  flex-wrap: wrap;
}
.spec-row span b { color: var(--ink); font-size: 0.95em; }
.spec-row span:not(:last-child) { border-right: 1px solid #E4E9E8; padding-right: 14px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 4px 0 18px; }
.badge {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--navy-deep);
  color: var(--glacier-blue-lt);
  border: none;
}

.price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.price-row .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); white-space: nowrap; }
.price-row .pack { font-family: var(--font-mono); font-size: 0.7rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.03em; text-align: right; }

/* ------------------------------------------------------------------ cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

.value-card .num {
  font-family: var(--font-mono);
  color: var(--sunrise-gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ------------------------------------------------------------------ forms */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}
.field input[type=text],
.field input[type=email],
.field input[type=number],
.field input[type=url],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D3DEDD;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--paper-raised);
  color: var(--ink);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--glacier-blue);
  outline-offset: 1px;
  border-color: var(--glacier-blue);
}
.field-check { display: flex; align-items: center; gap: 8px; }
.field-check label { margin: 0; text-transform: none; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); letter-spacing: 0; }

.signup-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.signup-inline input[type=email] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
}

.form-note { font-size: 0.82rem; color: var(--mist); margin-top: 8px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--navy-ink);
  color: #B9C7CE;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glacier-blue-lt);
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--paper-raised); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* -------------------------------------------------------------- flashes -- */
.flash-wrap { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.flash {
  background: var(--navy-deep);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--sunrise-gold);
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.flash.error { border-color: var(--danger); }

/* --------------------------------------------------------- misc utility -- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.pill-list li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.stat-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stat-strip .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sunrise-gold);
}
.stat-strip .stat span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C9D6DC;
}

.faq-item { border-bottom: 1px solid #D3DEDD; padding: 22px 0; }
.faq-item h3 { font-size: 1.1rem; text-transform: none; letter-spacing: 0; margin-bottom: 0.4em; }
.faq-item p { color: var(--mist); margin: 0; }

/* Photo strip (Our Story), same pattern as Manuela's Cakery */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.gallery-strip-item:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .gallery-strip { grid-template-columns: 1fr; }
}

.lightbox-overlay-public {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(11,27,43,0.94);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}
.lightbox-public-img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 6px; }
.lightbox-public-caption { color: #fff; margin-top: 16px; font-family: var(--font-mono); font-size: 0.85rem; }
.lightbox-public-close {
  position: absolute; top: 20px; right: 30px;
  background: none; border: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}
.lightbox-public-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 3rem; line-height: 1; cursor: pointer; padding: 10px 20px;
}
.lightbox-public-prev { left: 4px; }
.lightbox-public-next { right: 4px; }
@media (max-width: 600px) {
  .lightbox-public-nav { font-size: 2.2rem; padding: 6px 10px; }
}

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

@media (max-width: 780px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

/* Between mobile and full desktop, the wordmark + all 5 nav links +
   the Shop Now button don't fit on one line without wrapping badly
   (the exact overlap Joy saw: Shop Now covering FAQ, wordmark
   wrapping mid-word). Hide the nav links a bit earlier instead, the
   footer already carries a full site map so nothing becomes
   unreachable. */
@media (max-width: 1180px) and (min-width: 781px) {
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .wordmark .sub { display: none; }
}
