/* =====================================================================
   Pics by Poag — site.css
   Edit this file to change colors, fonts, spacing, anything visual.
   Each block is grouped by what it styles. CTRL+F is your friend.
   ===================================================================== */

/* ---- Brand fonts ---- */
@font-face {
  font-family: 'MADE Mountain';
  src: url('../assets/fonts/MADEMountain-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* ---- Color & type tokens ---- */
:root {
  --brand-main:        #5E6D4D; /* sage   */
  --brand-cream:       #FFF8E9; /* page bg */
  --brand-peach:       #F9E8DE;
  --brand-rust:        #8C5C35;
  --brand-fresh:       #DCFFB5;

  --ink:        #1F2418;
  --ink-soft:   #3C4233;
  --muted:      #6F7561;
  --line:       #E6DFCE;
  --paper:      #FFFDF6;

  --font-display: 'MADE Mountain', 'Italiana', 'Cormorant Garamond', serif;
  --font-body:    'Urbanist', system-ui, -apple-system, sans-serif;
  --font-script:  'Caveat', 'Brush Script MT', cursive;

  --max:        1280px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--brand-cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }
textarea { resize: vertical; }
a { color: var(--brand-rust); text-decoration: none; }
main {overflow: hidden;}

/* ---- Reveal-on-scroll (toggled by site.js) ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 233, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand img { height: 60px; width: auto; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 140ms, border-color 140ms;
}
.nav__link:hover { color: var(--brand-rust); }
.nav__link.is-active {
  color: var(--brand-rust);
  border-bottom-color: var(--brand-rust);
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 1px;
  transition: transform 200ms, opacity 200ms;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  /* border: 0; */
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
/* .btn:active { transform: scale(0.99); opacity: 0.92; } */

.btn--primary { 
  background: var(--brand-main); 
  color: var(--brand-cream); 
  border: 1px solid var(--brand-main); 
  transition: all 0.3s ease;
}

.btn--primary:hover { 
  background: var(--brand-cream); 
  color: var(--brand-main); 
  border: 1px solid var(--brand-main); 
  transition: all 0.3s ease;
}

.btn--accent { 
  background: var(--brand-rust); 
  color: var(--brand-cream); 
  transition: all 0.3s ease; 
  border: 1px solid var(--brand-rust);}

.btn--accent:hover {
   background: var(--brand-cream); 
   color: var(--brand-rust);
   border: 1px solid var(--brand-rust);
   transition: all 0.3s ease;
}
.btn--secondary {
  background: transparent;
  color: var(--brand-main);
  box-shadow: inset 0 0 0 1.5px var(--brand-main);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;

  padding: 15px 10px;
}

/* Right border */
.btn--ghost::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.18s linear 0.36s;
}

/* Top border */
.btn--ghost::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.18s linear 0.18s;
}

/* Left border */
.btn--ghost span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.18s linear 0s;
}

.btn--ghost:hover::after {
  transform: scaleY(1);
  transition-delay: 0s;
}

.btn--ghost:hover::before {
  transform: scaleX(1);
  transition-delay: 0.18s;
}

.btn--ghost:hover span::before {
  transform: scaleY(1);
  transition-delay: 0.36s;
}

.btn--ondark { background: var(--brand-cream); color: var(--ink); }
.btn .arrow { width: 14px; height: 14px; }

/* Disabled */
.btn[disabled], .btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =====================================================================
   GENERIC BLOCKS
   ===================================================================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 40px; }
.section--tight { padding: 64px 40px 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--accent { color: var(--brand-rust); }
.eyebrow--cream-bright { color: var(--brand-fresh); }

.section-title {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 560px;
}
.section-header { max-width: 720px; }
.section-header.is-center { margin: 0 auto; text-align: center; }
.section-header.is-center .section-sub { margin-left: auto; margin-right: auto; }

.divider-leafy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 0;
}
.divider-leafy::before, .divider-leafy::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(94, 109, 77, 0.2);
}
.divider-leafy img { height: 24px; opacity: 0.55; }

/* Squiggle underline (decorative span) */
.squiggle {
  position: relative;
  display: inline-block;
}
.squiggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M 4 9 Q 30 2, 60 7 T 118 7 T 178 7 T 236 7' fill='none' stroke='%238C5C35' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.squiggle--sage::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M 4 9 Q 30 2, 60 7 T 118 7 T 178 7 T 236 7' fill='none' stroke='%235E6D4D' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}



/* =====================================================================
   HERO (Home)
   ===================================================================== */
.hero {
  position: relative;
  padding: 40px 40px 80px;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 620px;
  position: relative;
}
.hero__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-rust);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__kicker svg { animation: pxp-spin 18s linear infinite; }
.hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 130%;
  /* letter-spacing: -0.025em; */
  margin: 0;
  text-wrap: balance;
}
.hero__title-accent { color: var(--brand-main); }
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 32px 0 0;
  max-width: 460px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.stat__n {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brand-main);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat__l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero__collage {
  position: relative;
  height: 620px;
}
.hero__photo {
  position: absolute;
  background-size: cover;
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(60,50,30,0.28);
}
.hero__photo--main {
  inset: 60px 80px 30px 20px;
  background-image: url('../assets/photos/avery-jordan.jpg');
  background-position: center 30%;
  z-index: 2;
}
.hero__photo--polaroid {
  top: 30px;
  right: 30px;
  width: 220px;
  height: 280px;
  background-image: url('../assets/photos/poag-fam.jpg');
  background-position: center 30%;
  border: 8px solid var(--paper);
  border-radius: 8px;
  transform: rotate(6deg);
  box-shadow: 0 18px 36px -12px rgba(60,50,30,0.32);
  z-index: 3;
}
.hero__photo--accent {
  bottom: -10px;
  left: -20px;
  width: 180px;
  height: 220px;
  background-image: url('../assets/photos/amity-tyler.jpg');
  background-position: center;
  border: 8px solid var(--paper);
  border-radius: 8px;
  transform: rotate(-5deg);
  box-shadow: 0 18px 36px -12px rgba(60,50,30,0.32);
  z-index: 3;
}
.hero__caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: var(--brand-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero__leaf {
  position: absolute;
  top: 0;
  right: 270px;
  height: 38px;
  opacity: 0.7;
  animation: pxp-float 4s ease-in-out infinite;
  z-index: 4;
}
.hero__wreath {
  position: absolute;
  top: 60px;
  right: -120px;
  pointer-events: none;
}

.scroll-cue {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue__line {
  width: 36px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-cream);
  animation: pxp-scroll-line 2.4s ease-in-out infinite;
}

/* =====================================================================
   PHOTO MARQUEE
   ===================================================================== */
.marquee-section {
  padding: 24px 0 40px;
  background: var(--brand-cream);
  position: relative;
}
.marquee-header {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.marquee-header h2 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 2px;
  margin: 12px 0 0;
}
.marquee {
  overflow: hidden;
  display: flex;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  animation: pxp-marquee 70s linear infinite;
}
.marquee__track + .marquee__track { margin-left: 14px; }
.marquee__item {
  width: 280px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 24px -8px rgba(60,50,30,0.18);
  flex-shrink: 0;
}

/* =====================================================================
   ABOUT BLURB (Home)
   ===================================================================== */
.about-blurb {
  padding: 160px 40px 120px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.about-blurb__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
}
.portrait__photo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/photos/jayda-sammi.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(60,50,30,0.22);
}
.portrait__pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--brand-cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-main);
  box-shadow: 0 4px 12px rgba(60,50,30,0.12);
}
.portrait__wreath {
  position: absolute;
  top: 25%;
  left: 33%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.about-blurb__copy h2 {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
}
.about-blurb__copy .prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 540px;
}
.about-blurb__copy .prose p { margin: 0 0 16px; }
.brand-tag {
  font-style: normal;
  color: var(--brand-main);
  font-weight: 600;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials {
  padding: 120px 40px;
  background: var(--brand-main);
  position: relative;
  overflow: hidden;
  color: var(--brand-cream);
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/leafyBoi-tile.svg');
  background-repeat: repeat;
  background-size: 78px 39px;
  pointer-events: none;
  opacity: 0.3;
}
.testimonials__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.testimonials__heading { text-align: center; margin-bottom: 64px; }
.testimonials__heading h2 {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1.0;
  margin: 0;
  color: var(--brand-cream);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: flex-start;
}
.tcard {
  background: var(--paper);
  border-radius: 14px;
  padding: 32px 32px 28px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.30);
  transition: transform 360ms var(--ease-out);
  position: relative;
  color: var(--ink);
}
.tcard--peach { background: var(--brand-peach); }
.tcard--fresh { background: var(--brand-fresh); }
.tcard--cream { background: var(--brand-cream); }
.tcard--rotL { transform: rotate(-1.2deg); }
.tcard--rotR { transform: rotate(0.8deg); }
.tcard--rotS { transform: rotate(-0.6deg); }
.tcard:hover { transform: rotate(0) translateY(-4px); }
.tcard::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 1;
  color: var(--brand-main);
  opacity: 0.3;
  pointer-events: none;
}
.tcard__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}
.tcard__quote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.tcard__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 36, 24, 0.12);
}
.tcard__name { font-size: 14px; font-weight: 600; }
.tcard__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* =====================================================================
   SCAVENGER HUNT
   ===================================================================== */
.hunt {
  padding: 120px 40px;
  background: var(--brand-peach);
  position: relative;
  overflow: hidden;
}
.hunt__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hunt__title {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: #3C2A1A;
}
.hunt__title-accent { color: var(--brand-rust); }
.hunt__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #3C2A1A;
  margin: 28px 0 0;
  max-width: 480px;
}
.hunt__copy strong { color: var(--brand-main); }
.hunt__cta { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hunt__cta-note { font-size: 13px; color: #3C2A1A; opacity: 0.7; }

.progress-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 36px 36px 32px;
  box-shadow: 0 18px 40px -14px rgba(60,50,30,0.18);
}
.progress-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.progress-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.progress-card__count {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: #3C2A1A;
  letter-spacing: -0.02em;
  transition: color 240ms;
}
.progress-card__count.is-complete { color: var(--brand-main); }
.progress-card__total {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}

/* ME */
.progress-card__grid {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: space-between;
}
.progress-card__cell {
   width: calc(100% / 6);
}
/* END */

.progress-card__grid {
  /* display: grid; */
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 10px;
  margin-bottom: 18px;
}
.progress-card__cell {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-peach);
  color: var(--brand-rust);
  transition: background 280ms, color 280ms;
  padding: 6px;
}
.progress-card__cell.is-found {
  background: var(--brand-main);
  color: var(--brand-cream);
}
.progress-card__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.progress-card__cell.is-found img { filter: brightness(0) invert(1); }
.progress-card__cell .question {
  font-family: var(--font-display);
  font-size: 22px;
  opacity: 0.4;
}
.progress-bar {
  display: flex;
  gap: 4px;
}
.progress-bar__seg {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background 240ms;
}
.progress-bar__seg.is-on { background: var(--brand-main); }
.progress-card__msg {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.5;
}
.progress-card__msg strong { color: var(--brand-main); }

/* =====================================================================
   SESSIONS TEASER (Home & Sessions page)
   ===================================================================== */
.sessions-teaser {
  padding: 100px 40px 120px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.sessions-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sessions-teaser h2 {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.96;
  margin: 0;
}
.sessions-teaser h2 span { color: var(--brand-main); display: block; }
.sessions-teaser .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 28px 0 0;
  max-width: 460px;
}
.sessions-teaser__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}
.sessions-teaser__list li {
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}
.sessions-teaser__list li i {
  color: var(--brand-rust);
  animation: spinny 7s linear infinite;
}

@keyframes spinny {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
/* .sessions-teaser__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-main);
  flex-shrink: 0;
} */
.sessions-teaser__list li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.price-card {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  padding: 56px 64px;
  box-shadow: 0 28px 56px -20px rgba(60,50,30,0.22);
  text-align: center;
  margin: 0 auto;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 700%;
  line-height: 1;
  color: var(--brand-main);
  margin-top: 10px;
}
.price-card__sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.price-card__rule {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.price-card__wreath {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* =====================================================================
   FINAL CTA (Home)
   ===================================================================== */
.final-cta {
  padding: 75px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 128px;
  line-height: 0.96;
  margin: 24px 0 0;
}
.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* =====================================================================
   PORTFOLIO
   ===================================================================== */
.portfolio { padding: 64px 40px 96px; max-width: var(--max); margin: 0 auto; position: relative; }
.tag-row {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  border: 0;
  cursor: pointer;
  transition: all 140ms ease-out;
}
.tag.is-active { background: var(--brand-main); color: var(--brand-cream); box-shadow: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.tile {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(94, 109, 77, 0.18);
  transition: transform 480ms var(--ease-out);
}
.tile:hover { transform: scale(1.01); }
.tile.is-tall { aspect-ratio: 4 / 5; }
.tile.is-hidden { display: none; }
.tile__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--brand-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* =====================================================================
   SESSIONS PAGE
   ===================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.faq h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.faq p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.6;
}

.weddings-block {
  background: var(--brand-peach);
  border-radius: 14px;
  padding: 56px 64px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.weddings-block h3 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #3C2A1A;
}
.weddings-block p {
  font-size: 16px;
  color: #3C2A1A;
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.85;
  text-wrap: pretty;
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.about-page {
  padding: 64px 40px 96px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.about-page__photo {
  aspect-ratio: 4 / 5;
  background-image: url('../assets/photos/jayda-creek.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  position: sticky;
  top: 120px;
}
.about-page h1 {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.about-page .prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 32px;
  max-width: 560px;
}
.about-page .prose p { margin: 0 0 16px; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.stat-line {
  border-bottom: 1px solid var(--line);
  padding-top: 16px;
}
.stat-line__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-line__value {
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

/* =====================================================================
   INQUIRE PAGE
   ===================================================================== */
.inquire-page {
  padding: 64px 40px 96px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.inquire-form {
  background: var(--paper);
  border-radius: 14px;
  padding: 48px;
  display: grid;
  gap: 22px;
  margin-top: 56px;
  box-shadow: 0 6px 16px -4px rgba(60,50,30,0.10), 0 2px 4px rgba(60,50,30,0.05);
}
.inquire-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-size: 15px;
  background: var(--brand-cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 140ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--brand-main); }
.inquire-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.inquire-form__note { font-size: 12px; color: var(--muted); }

/* =====================================================================
   FOOTER
   ===================================================================== */
/* .footer {
  background: var(--brand-main);
  color: var(--brand-cream);
  padding: 72px 40px 40px;
  margin-top: 96px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/leafy-pattern-tile.png');
  background-repeat: repeat;
  background-size: 52px 52px;
  opacity: 0.18;
  filter: invert(1);
  pointer-events: none;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand img { height: 84px; margin-bottom: 22px; }
.footer__brand p {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 320px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.footer a {
  color: var(--brand-cream);
  text-decoration: none;
  opacity: 0.85;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer a:hover { opacity: 1; }
.footer__row {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer__legal {
  max-width: var(--max);
  margin: 56px auto 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 248, 233, 0.2);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
} */

#jpFooterWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  background-color: white;
  position: relative;
}

#jpFooterWrapper::after {
  width: 100%;
  height: 5px;
  background-color: var(--brand-main);
  top: 0;
  content: "";
  position: absolute;
}

#jpFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 50px 0;
  flex-wrap: wrap;
  column-gap: 0.7em;
  max-width: 1265px;
  width: 100%;
}

#jpFooter * {
  color: black;
}

#jpFooter img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

#jpFooter div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

#jpFooter div p {
  font-size: 250%;
  font-family: "Made Mountain", sans-serif;
  line-height: 115%;
  max-width: 400px;
}

#jpFooter #jpFooterNav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;
  padding: 30px;
  margin: 0;
  border: 1px solid var(--brand-main);
}

#jpFooter #jpFooterNav li:last-of-type {
  padding-right: 0;
  margin-right: 0;
}

#jpFooter #jpFooterNav li:last-of-type {
  border: none;
  margin-right: unset;
}

#jpChat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 40%;
  border: 1px solid var(--brand-main);
  list-style: none;
  padding: 30px;
  margin: 0;
}

#jpChat li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

#jpChat li p {
  margin: 10px 0;
}

@media (max-width: 1266px) {
  #jpChat {
    width: 60%;
  }
  #jpFooter div {
    width: 100%;
    flex-direction: row;
    margin-top: 30px;
  }
  #jpFooter div #jpFooterNav {
    width: 60%;
  }
  #jpFooter div p {
    max-width: 271px;
  }
}

@media (max-width: 760px) {
  #jpFooter {
    justify-content: center;
  }
  #jpFooter div {
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
  }
  #jpFooter div #jpFooterNav {
    width: 100%;
  }
  #jpFooter div p {
    max-width: unset;
    text-align: center;
  }
  #jpChat {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 450px) {
  #jpFooter #jpFooterNav {
    flex-direction: column;
  }
}

/* =====================================================================
   HIDDEN TATTOOS + HUNT COUNTER
   ===================================================================== */
.tattoo {
  position: absolute;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--brand-rust);
  opacity: 0.7;
  transition: opacity 240ms, color 240ms, transform 240ms var(--ease-out);
  z-index: 5;
  line-height: 0;
  animation: pxp-tattoo-pulse 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(140, 92, 53, 0.35));
}
.tattoo:hover { opacity: 1; transform: scale(1.12); }
.tattoo.is-found {
  color: var(--brand-main);
  opacity: 1;
  transform: scale(1.18);
  animation: none;
  filter: none;
}

.hunt-counter {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  font-family: var(--font-body);
}
.hunt-counter__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(60,50,30,0.20);
  transition: transform 200ms;
}
.hunt-counter__btn:hover { transform: translateY(-2px); }
.hunt-counter__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-peach);
  color: var(--brand-rust);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 240ms, color 240ms;
}
.hunt-counter.is-complete .hunt-counter__icon {
  background: var(--brand-main);
  color: var(--brand-cream);
}
.hunt-counter__icon img { filter: brightness(0) invert(1); width: 20px; height: auto; }
.hunt-counter__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.hunt-counter__count {
  font-size: 14px;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1;
}
.hunt-counter__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  width: 300px;
  box-shadow: 0 24px 48px -16px rgba(60,50,30,0.28);
  display: none;
}
.hunt-counter.is-open .hunt-counter__panel { display: block; }
.hunt-counter__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hunt-counter__close {
  background: transparent;
  border: 0;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.hunt-counter__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hunt-counter__cell {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-peach);
  color: var(--brand-rust);
  opacity: 0.5;
  overflow: hidden;
  padding: 4px;
}
.hunt-counter__cell.is-found {
  background: var(--brand-main);
  color: var(--brand-cream);
  opacity: 1;
}
.hunt-counter__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.hunt-counter__cell.is-found img { filter: brightness(0) invert(1); }
.hunt-counter__msg {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hunt-counter__msg strong { color: var(--brand-main); }
.hunt-counter__reset {
  margin-top: 12px;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-rust);
  cursor: pointer;
  padding: 0;
}
.hunt-toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 110;
  background: var(--brand-main);
  color: var(--brand-cream);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 18px 36px -12px rgba(60,50,30,0.32);
  max-width: 320px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
  pointer-events: none;
}
.hunt-toast.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hunt-toast__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hunt-toast__icon img { filter: brightness(0) invert(1); width: 32px; height: auto; }
.hunt-toast__title { font-weight: 600; }
.hunt-toast__sub {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* =====================================================================
   DECORATIVE: Spinning wreath, drifting glyphs
   ===================================================================== */
.wreath {
  position: relative;
  pointer-events: none;
}
.wreath__leaf {
  position: absolute;
  width: 9%;
  height: auto;
  transform-origin: center;
}
.wreath--spin { animation: pxp-spin 140s linear infinite; }
.wreath--spin-fast { animation: pxp-spin 90s linear infinite; }
.wreath--spin-medium { animation: pxp-spin 120s linear infinite; }

.drift-area {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.drift {
  position: absolute;
  bottom: -40px;
  height: 22px;
  opacity: 0;
  animation: pxp-drift 18s ease-in-out infinite;
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes pxp-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes pxp-marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 14px)); } }
@keyframes pxp-drift {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.22; }
  90%  { opacity: 0.22; }
  100% { transform: translateY(-110vh) rotate(180deg); opacity: 0; }
}
@keyframes pxp-scroll-line {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes pxp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pxp-tattoo-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner > .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--brand-cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 40px 24px;
  }
  .nav.is-open .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__link:last-child { border-bottom: 0; }

   .hero {
      padding-bottom: 30px;
   }

   .about-blurb {
      padding-top: 30px;
   }

  .hero__inner,
  .about-blurb__grid,
  .hunt__inner,
  .sessions-teaser__grid,
  .about-page__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__title { font-size: 56px; }
  .hero__collage { height: 460px; }
  .hero__photo--polaroid { width: 160px; height: 200px; }
  .hero__photo--accent { width: 140px; height: 180px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__heading h2 { font-size: 48px; }
  .gallery-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 44px; }
  .sessions-teaser h2 { font-size: 64px; }
  .final-cta h2 { font-size: 72px; }
  .hunt__title { font-size: 56px; }
  .about-page h1 { font-size: 64px; }
  .about-page__photo { position: relative; top: 0; max-width: 360px; }
  .weddings-block { grid-template-columns: 1fr; padding: 40px 32px; }
  .weddings-block h3 { font-size: 36px; }
  .price-card { padding: 40px 32px; }
  .price-card__amount { font-size: 96px; }
}

@media (max-width: 640px) {
  .section, .hero, .about-blurb, .testimonials, .hunt, .sessions-teaser, .final-cta { padding-left: 20px; padding-right: 20px; }
  .nav__inner { padding: 16px 20px; }
  .nav__brand img { height: 44px; }
  .nav__brand-name { font-size: 20px; }
  .marquee-header { padding: 0 20px; }
  .marquee-header h2 { font-size: 36px; }
  .hero__title { font-size: 44px; }
  .hero__collage { height: 360px; }
  .hero__photo--main { inset: 30px 40px 20px 10px; }
  .hero__photo--polaroid { width: 120px; height: 160px; top: 10px; right: 10px; }
  .hero__photo--accent { width: 110px; height: 140px; bottom: 0; left: -10px; }
  .gallery-grid, .faq-grid, .stat-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .inquire-form { padding: 32px 24px; }
  .inquire-form__row { grid-template-columns: 1fr; }
  .hunt__title { font-size: 44px; }
  .progress-card { padding: 28px 24px 24px; }
  .progress-card__count { font-size: 48px; }
  .sessions-teaser h2 { font-size: 48px; }
  .final-cta h2 { font-size: 56px; }
  .testimonials__heading h2 { font-size: 36px; }
  .price-card__amount { font-size: 80px; }
  .about-page h1 { font-size: 48px; }
  .hunt-counter { bottom: 16px; left: 16px; }
}

@media (max-width: 460px) {
   .progress-card__grid {
       grid-template-columns: repeat(3, 1fr);
   }
}
