/* -- Studio Jam palette --------------------------- */
:root {
  --teal: #0B4F61;
  --teal-deep: #753F4B; /* footer: brand berry; old deep teal retired */
  --blush: #F8CBCC;
  --blush-soft: #F8CBCC;
  --berry: #753F4B;
  --white: #FFFDFC;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --sans: "Inclusive Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: "Studio Jam Display";
  src: url(/assets/fonts/closeout.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inclusive Sans";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/fonts/inclusive-sans-italic.woff2) format("woff2");
}
@font-face {
  font-family: "Inclusive Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/fonts/inclusive-sans.woff2) format("woff2");
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--blush); color: var(--teal); overflow-x: hidden; }

h2 {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(1.8rem, 5.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  transition: transform 0.15s ease;
}
.btn:hover { transform: rotate(-2deg) scale(1.04); }
.btn-blush { color: var(--blush); }
.btn-teal { color: var(--teal); }

/* -- Nav ------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: var(--blush);
  border-bottom: 2px solid var(--teal);
}
.nav-logo {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--teal);
  text-decoration: none;
}
.nav-logo .jam { color: var(--berry); }
.nav-links a {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--teal);
  text-decoration: none;
  margin-left: 1.6rem;
}
.nav-links a:hover { text-decoration: underline wavy; text-underline-offset: 4px; }

/* -- Ticker --------------------------------------- */
.ticker {
  overflow: hidden;
  background: var(--berry);
  color: var(--blush);
  padding: 0.55rem 0;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: scroll 28s linear infinite; }
.ticker-track span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -- Hero ----------------------------------------- */
.hero {
  position: relative;
  background: var(--teal);
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 6vw clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}
.hero-logo { width: min(640px, 80vw); transform: rotate(-3deg); }
.hero-mascot {
  display: block;
  height: 92px;
  margin: 14px auto 0;
  animation: rise-in 0.8s ease 0.25s both;
}
.hero-star {
  position: absolute;
  width: clamp(60px, 10vw, 140px);
  top: 8%; right: 7%;
  
  animation: spin 16s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-tag {
  color: var(--blush);
  max-width: 34rem;
  margin: 1.5rem auto 2.2rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

/* -- About ---------------------------------------- */
.about {
  background: var(--blush);
  padding: clamp(4rem, 9vw, 7rem) 6vw;
  max-width: 100%;
  text-align: center;
}
.about h2 { max-width: 18em; margin: 0 auto; }
.about-copy {
  max-width: 38rem;
  margin: 1.6rem auto 2.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.pillars {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
}
.pillars li {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
}

/* -- Services ------------------------------------- */
.services {
  background: var(--berry);
  background-image: linear-gradient(rgba(117, 63, 75, 0.92), rgba(117, 63, 75, 0.92)), url(/assets/img/squiggle-services.png);
  background-size: auto, 420px;
  color: var(--blush);
  padding: clamp(4rem, 9vw, 7rem) 6vw;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 62rem;
  margin: 2.5rem auto 0;
}
.service {
  background: var(--berry);
  border: 2px solid var(--blush);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.3;
}
.service span {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

/* -- Packages ------------------------------------- */
.packages {
  background: var(--blush);
  padding: clamp(4rem, 9vw, 7rem) 6vw;
  text-align: center;
}
.packages h2 { max-width: 16em; margin: 0 auto; }
.packages-intro {
  max-width: 36rem;
  margin: 1.4rem auto 2.6rem;
  line-height: 1.7;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  max-width: 62rem;
  margin: 0 auto;
  align-items: start;
}
.tier {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  text-align: left;
  position: relative;
}
.tier-popular { background: var(--teal); color: var(--blush); border-color: var(--teal); }
.badge {
  position: absolute; top: -0.9rem; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--berry); color: var(--blush);
  font-family: var(--mono); text-transform: uppercase;
  font-size: 0.65rem; letter-spacing: 0.18em;
  padding: 0.4rem 1rem; border-radius: 999px;
  white-space: nowrap;
}
.tier h3 {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem;
}
.price { font-size: 2.2rem; font-weight: 700; margin: 0.4rem 0 1rem; }
.price span { font-size: 1rem; font-weight: 400; }
.tier ul { list-style: none; }
.tier li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.45;
}
.tier li::before { content: "\2737"; position: absolute; left: 0; }
.fine-print {
  max-width: 40rem;
  margin: 2.2rem auto 0;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* -- Process -------------------------------------- */
.process {
  background: var(--teal);
  color: var(--blush);
  padding: clamp(4rem, 9vw, 7rem) 6vw;
}
.process .kicker, .process h2 { text-align: center; }
.steps {
  max-width: 46rem;
  margin: 3rem auto 0;
  display: grid;
  gap: 0;
}
.step {
  border-top: 2px solid var(--blush);
  padding: 1.8rem 0;
}
.step:last-child { border-bottom: 2px solid var(--blush); }
.step-num {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.step p:last-child { line-height: 1.65; max-width: 38rem; }

/* -- Contact -------------------------------------- */
.contact {
  background: var(--blush-soft);
  text-align: center;
  padding: clamp(5rem, 11vw, 9rem) 6vw;
  position: relative;
  overflow: hidden;
}
.contact-star {
  width: clamp(60px, 9vw, 110px);
  position: absolute; top: 12%; left: 10%;
  animation: spin 20s linear infinite;
}
.contact h2 { font-size: clamp(3rem, 10vw, 6rem); }
.contact > p { margin: 1.2rem auto 2rem; max-width: 30rem; line-height: 1.6; }
.ig { margin-top: 1.6rem; font-family: var(--mono); font-size: 0.85rem; }
.ig a { color: var(--berry); }

/* -- Footer --------------------------------------- */
.footer {
  background: var(--teal-deep);
  color: var(--blush);
  padding: 3.5rem 5vw 2rem;
  text-align: center;
}
.footer-big {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  margin-bottom: 2.5rem;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-row a { color: var(--blush); }

/* -- Tablet --------------------------------------- */
@media (max-width: 900px) {
  .tier-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 1.6rem;
  }
}

/* -- Mobile --------------------------------------- */
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 0.7rem; }
  .btn-teal {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    padding: 0.9rem 1.1rem;
    max-width: 92%;
  }
  .hero-logo { width: 78vw; }
  .hero-star { width: 54px; top: 3%; right: 4%; }
  .contact-star { width: 42px; top: 5%; left: 6%; }
  .nav-links a { margin: 0 0.55rem; font-size: 0.7rem; }
  .footer-row { justify-content: center; text-align: center; }
}


/* -- Motion ------------------------------------- */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes logo-in {
  from { opacity: 0; transform: rotate(-3deg) scale(0.9); }
  to { opacity: 1; transform: rotate(-3deg) scale(1); }
}
.hero-logo { animation: logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-tag { animation: rise-in 0.8s ease 0.35s both; }
.hero .btn { animation: rise-in 0.8s ease 0.55s both; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

.tier, .service {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 14px 0 rgba(11, 79, 97, 0.12); }
.service:hover { transform: translateY(-4px) rotate(0.5deg); }
.pillars li { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.pillars li:hover { transform: rotate(-2deg) scale(1.05); background: var(--teal); color: var(--blush); }

@media (prefers-reduced-motion: reduce) {
  .hero-star, .contact-star, .ticker-track, .hero-logo, .hero-tag, .hero .btn { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* -- Service detail cards / tier tags ------------ */
.service { text-align: left; font-size: 1.2rem; padding: 1.8rem 1.5rem; }
.service p {
  font-family: var(--sans);
  text-transform: none;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.7rem 0 0.9rem;
  opacity: 0.95;
}
.service ul { list-style: none; }
.service li {
  font-family: var(--sans);
  text-transform: none;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.25rem 0 0.25rem 1.3rem;
  position: relative;
}
.service li::before { content: "\2737"; position: absolute; left: 0; }
.service-grid { grid-template-columns: repeat(4, 1fr); max-width: 76rem; }
.service { font-size: 1.05rem; padding: 1.5rem 1.2rem; }
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}
.tier-tag {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  margin: 0.3rem 0 1rem;
  opacity: 0.8;
}


/* -- Work with us (homepage teaser) -------------- */
.hiring {
  background: var(--berry);
  color: var(--blush);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 6vw;
}
.hiring h2 { max-width: 16em; margin: 0 auto; }
.hiring-copy {
  max-width: 36rem;
  margin: 1.4rem auto 2.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* -- Work with us page -------------------------- */
.page-hero {
  position: relative;
  background: var(--teal);
  color: var(--blush);
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 6vw clamp(4rem, 9vw, 6rem);
  overflow: hidden;
}
.page-hero h1 {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1.05;
  max-width: 12em;
  margin: 0 auto;
  animation: rise-in 0.8s ease 0.15s both;
}
.page-hero .kicker { animation: rise-in 0.8s ease both; }
.page-hero .hero-tag { max-width: 30rem; }
.page-hero .btn { animation: rise-in 0.8s ease 0.55s both; }
.nav-links a[aria-current="page"] { text-decoration: underline wavy; text-underline-offset: 4px; }

.job {
  background: var(--blush);
  padding: clamp(4rem, 9vw, 7rem) 6vw;
  text-align: center;
}
.job-inner { max-width: 62rem; margin: 0 auto; }
.job h2 { max-width: 16em; margin: 0 auto; }
.job-copy {
  max-width: 38rem;
  margin: 1.4rem auto 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  margin: 2.6rem auto 0;
  align-items: start;
}
.job-card {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 14px 0 rgba(11, 79, 97, 0.12); }
.job-card-teal { background: var(--teal); color: var(--blush); }
.job-card h3 {
  font-family: "Studio Jam Display", var(--sans);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.job-card ul { list-style: none; }
.job-card li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.45;
}
.job-card li::before { content: "\2737"; position: absolute; left: 0; }
.apply .kicker { margin-bottom: 0.4rem; }
.apply .ig a { margin-left: 0.3rem; }
@media (max-width: 640px) {
  .nav-links { text-align: center; line-height: 2; }
  .page-hero .hero-star { width: 54px; top: 3%; right: 4%; }
}

/* -- Pass 2: hero CTAs, nav CTA, footer links, a11y --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; animation: rise-in 0.8s ease 0.55s both; }
.hero .btn { animation: none; }
.btn-solid { background: var(--blush); color: var(--teal); border-color: var(--blush); }
.nav-cta {
  background: var(--teal); color: var(--blush) !important;
  padding: 0.55rem 1.1rem; border-radius: 999px;
  transition: transform 0.15s ease;
}
.nav-cta:hover { text-decoration: none !important; transform: rotate(-2deg) scale(1.05); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; margin-bottom: 2rem; }
.footer-links a {
  color: var(--blush); text-decoration: none;
  font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.footer-links a:hover { text-decoration: underline wavy; text-underline-offset: 4px; }
@media (max-width: 640px) {
  .nav-cta { display: inline-block; margin-top: 0.4rem; }
  .hero-ctas .btn { font-size: 0.72rem; padding: 0.85rem 1.4rem; }
}
.based { margin-top: 1.4rem; font-size: 0.85rem; opacity: 0.8; }
.notfound { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* -- Multi-page build: brand palette extras -------------- */
:root { --red: #B93D46; --sage: #849D9B; --offwhite: #ECEEEF; }
.badge { background: var(--red); }
.tier, .job-card, .pillar, .contact-card { background: var(--offwhite); }
.nav-links a[aria-current="page"] { text-decoration: underline wavy; text-underline-offset: 4px; }
.nav-cta[aria-current="page"] { text-decoration: none !important; box-shadow: 0 0 0 3px var(--blush), 0 0 0 5px var(--teal); }

/* teaser links on the homepage */
.teaser-link {
  display: inline-block; margin-top: 2rem;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem;
  color: var(--teal); text-decoration: underline wavy; text-underline-offset: 5px;
}
.teaser-link.light { color: var(--blush); }
.process .teaser-link { display: block; text-align: center; }
.teaser-btn { margin-top: 2.4rem; }
.about .teaser-link { display: block; }

/* testimonial */
.testimonial {
  background: var(--teal); color: var(--blush);
  text-align: center; padding: clamp(4rem, 9vw, 7rem) 6vw;
}
.quote {
  font-family: var(--sans); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem); line-height: 1.5;
  max-width: 44rem; margin: 0 auto 1.8rem; quotes: none;
}
.quote em { font-style: normal; font-weight: 500; }
.quote-by { font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; line-height: 1.8; }
.quote-by span { opacity: 0.75; font-size: 0.7rem; }

/* about page */
.story { background: var(--blush); padding: clamp(4rem, 9vw, 7rem) 6vw; }
.story-inner { max-width: 44rem; margin: 0 auto; }
.story h2 { margin: 0 0 1.6rem; font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.story p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; }
.mission { background: var(--berry); color: var(--blush); padding: clamp(4rem, 9vw, 7rem) 6vw; }
.mission-inner { max-width: 62rem; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: center; }
.mission h2 { margin-bottom: 1.2rem; }
.lead { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; }
.lead.aside { font-family: var(--mono); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.85; }
.mission-mascot { width: min(240px, 60%); justify-self: center;  }
.pillars-section { background: var(--blush); padding: clamp(4rem, 9vw, 7rem) 6vw; text-align: center; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; max-width: 62rem; margin: 2.6rem auto 0; text-align: left; }
.pillar-grid.three { grid-template-columns: repeat(3, 1fr); }
.pillar { border: 2px solid var(--teal); border-radius: 22px; padding: 1.8rem 1.6rem; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.pillar:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 14px 0 rgba(11, 79, 97, 0.12); }
.pillar h3 { font-family: "Studio Jam Display", var(--sans); text-transform: uppercase; font-weight: 400; font-size: 1.4rem; margin-bottom: 0.6rem; }
.pillar p { line-height: 1.65; font-size: 0.98rem; }

/* services page */
.service-rows { background: var(--blush); padding: clamp(3rem, 7vw, 5rem) 6vw; }
.service-row { max-width: 62rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; padding: 2.6rem 0; border-top: 2px solid var(--teal); }
.service-row:last-child { border-bottom: 2px solid var(--teal); }
.service-row .num { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.25em; opacity: 0.7; display: block; margin-bottom: 0.4rem; }
.service-row h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.service-row .good { margin-top: 0.9rem; font-size: 0.9rem; line-height: 1.55; opacity: 0.85; max-width: 24rem; }
.service-row-body p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; }
.service-row-body ul { list-style: none; }
.service-row-body li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; line-height: 1.5; }
.service-row-body li::before { content: "\2737"; position: absolute; left: 0; }
.mix { background: var(--berry); color: var(--blush); text-align: center; padding: clamp(4rem, 9vw, 7rem) 6vw; }
.mix h2 { max-width: 18em; margin: 0 auto; }
.mix .btn-teal { color: var(--blush); }

/* packages page */
.page-tiers { padding-top: clamp(3rem, 7vw, 5rem); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 62rem; margin: 2.6rem auto 0; }
.step-card { border: 2px solid var(--blush); border-radius: 22px; padding: 1.8rem 1.6rem; }
.step-card .step-num { font-size: 0.8rem; font-family: var(--mono); letter-spacing: 0.25em; opacity: 0.75; margin-bottom: 0.6rem; }
.step-card h3 { font-family: "Studio Jam Display", var(--sans); text-transform: uppercase; font-weight: 400; font-size: 1.35rem; margin-bottom: 0.6rem; }
.step-card p { line-height: 1.65; font-size: 0.98rem; }
.fine-print.light { color: var(--blush); text-align: center; }
.how h2 { text-align: center; }

/* process page */
.page-steps { padding-top: clamp(3rem, 7vw, 5rem); }
.steps.big { max-width: 52rem; margin-top: 0; }
.steps.big .step { padding: 2.2rem 0; }
.steps.big .step p:nth-child(2) { font-size: 1.1rem; line-height: 1.65; max-width: 40rem; }
.step-get { margin-top: 0.8rem; font-family: var(--mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.85; }
.expect { background: var(--blush); padding: clamp(4rem, 9vw, 7rem) 6vw; text-align: center; }

/* contact page */
.contact-details { background: var(--blush); padding: clamp(3rem, 7vw, 5rem) 6vw clamp(4rem, 9vw, 7rem); }
.contact-grid { max-width: 62rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: start; }
.contact-card { border: 2px solid var(--teal); border-radius: 22px; padding: 2rem 1.8rem; }
.contact-card.teal { background: var(--teal); color: var(--blush); border-color: var(--teal); }
.contact-card.teal a { color: var(--blush); }
.tips { list-style: none; }
.tips li { padding: 0.45rem 0 0.45rem 1.4rem; position: relative; line-height: 1.5; font-size: 0.98rem; }
.tips li::before { content: "\2737"; position: absolute; left: 0; }
.tip-note { margin-top: 1rem; font-size: 0.9rem; opacity: 0.85; line-height: 1.55; }

@media (max-width: 900px) {
  .mission-inner, .service-row, .contact-grid, .pillar-grid, .pillar-grid.three, .step-grid { grid-template-columns: 1fr; }
  .mission-mascot { width: 160px; }
}
.tier-popular { background: var(--teal); color: var(--blush); }
.job-card-teal { background: var(--teal); color: var(--blush); }
.contact-card.teal { background: var(--teal); }

.badge { color: #FFFDFC; }

/* -- Personality pass: photos, mascots, texture -------------- */
.photo-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 3px solid var(--blush); background: var(--offwhite);
  box-shadow: 12px 14px 0 var(--berry);
  transition: transform 0.3s ease;
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tilt-r { transform: rotate(2deg); } .tilt-l { transform: rotate(-2deg); }
.photo-frame:hover { transform: rotate(0deg) scale(1.01); }
.about .photo-frame, .story .photo-frame, .pillars-section .photo-frame { border-color: var(--teal); box-shadow: 12px 14px 0 var(--teal); }
.mission .photo-frame { border-color: var(--blush); box-shadow: 12px 14px 0 var(--teal); }
.mix .photo-frame { box-shadow: 12px 14px 0 var(--teal); }

.page-hero.with-photo { text-align: left; padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero-grid { max-width: 68rem; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem 4rem; align-items: center; }
.page-hero.with-photo h1 { margin: 0; max-width: none; }
.page-hero.with-photo .hero-tag { margin-left: 0; margin-right: 0; }
.page-hero.with-photo .hero-ctas { justify-content: flex-start; }
.page-hero.with-photo .photo-frame { max-width: 380px; justify-self: end; aspect-ratio: 4 / 5; }
.page-hero.with-photo .photo-frame img[width="1200"] { aspect-ratio: 3 / 2; }
.with-photo .photo-frame.wide { aspect-ratio: 3 / 2; max-width: 440px; }

.split .split-grid { max-width: 68rem; margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem 4rem; align-items: center; text-align: left; }
.split h2 { margin: 0 0 1.2rem; max-width: none; }
.split .about-copy, .split .packages-intro { margin-left: 0; margin-right: 0; }
.split .pillars { justify-content: flex-start; }
.split .teaser-link { display: inline-block; }
.mix.split { text-align: left; }
.mix.split .split-grid { grid-template-columns: 1.1fr 0.9fr; }
.mix .photo-frame { max-width: 360px; aspect-ratio: 4 / 5; justify-self: center; }
.about.split .photo-frame { aspect-ratio: 3 / 2; }
.mission .photo-frame.small { max-width: 320px; aspect-ratio: 4 / 5; justify-self: center; }

.deco { position: absolute; pointer-events: none; user-select: none; }
.services, .process, .contact, .page-hero, .mix { position: relative; overflow: hidden; }
.deco.kick { width: clamp(120px, 16vw, 230px); right: 2%; top: 1.5rem;  opacity: 0.95; }
.deco.walk { width: clamp(120px, 15vw, 210px); right: 4%; bottom: 1.5rem;  }
.deco.tall { width: clamp(70px, 8vw, 110px); left: 6%; bottom: 0;  }
.deco.stand { width: clamp(120px, 14vw, 200px); left: 6%; bottom: 0;  }
.deco.chat { width: clamp(90px, 10vw, 150px); right: 8%; bottom: 0; }
.has-chat { padding-bottom: clamp(6rem, 12vw, 9rem); }

.textured { position: relative; }
.textured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url(/assets/img/squiggle-white.png); background-size: 420px auto;
  opacity: 0.09;
}
.textured > * { position: relative; }
.mono-mark { width: 74px; display: block; margin: 0 auto 1.2rem; opacity: 0.9; }

@media (max-width: 900px) {
  .hero-grid, .split .split-grid, .mix.split .split-grid { grid-template-columns: 1fr; }
  .page-hero.with-photo { text-align: center; }
  .page-hero.with-photo .hero-ctas { justify-content: center; }
  .page-hero.with-photo .photo-frame { justify-self: center; max-width: 320px; }
  .split .split-grid { text-align: center; }
  .split .pillars { justify-content: center; }
  .about.split .photo-frame { max-width: 420px; margin: 0 auto; order: 2; }
  .split .split-copy { order: 1; }
  .mix.split .split-grid .photo-frame { order: 2; }
  .deco.kick, .deco.walk, .deco.tall, .deco.stand { display: none; }
  .deco.chat { width: 80px; right: 4%; }
}
.deco, .mono-mark { height: auto; }
.page-hero.with-photo h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
.deco.chat { right: 6%; }

.hero-mascot { height: 124px; margin-top: 18px; }
@media (max-width: 640px) { .hero-mascot { height: 96px; } }

.hero-star, .contact-star, .hero-logo, .hero-mascot { height: auto; }

/* -- Dev pass: mobile nav, focus, ticker pause ------------ */
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 50; background: var(--teal); color: var(--blush); padding: 0.6rem 1rem; border-radius: 999px; font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; text-decoration: none; transition: top 0.15s; }
.skip:focus { top: 0.8rem; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.footer-links a.mail { text-transform: none; letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 0.45rem; padding: 0.7rem 0 0.55rem; }
  .nav-logo { font-size: 1.25rem; }
  .nav-links { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; max-width: 100%; padding: 0.2rem 4vw; gap: 0.15rem; line-height: 1.4; text-align: left; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; margin: 0 0.45rem; font-size: 0.68rem; }
  .nav-cta { margin: 0 0.3rem 0 0.6rem !important; padding: 0.45rem 0.9rem; }
}

/* -- Client map (About) ----------------------------- */
.clientmap { background: var(--blush); padding: clamp(4rem, 9vw, 7rem) 6vw; text-align: center; }
.clientmap h2 { max-width: 16em; margin: 0 auto; }
.clientmap .mapbox { position: relative; max-width: 68rem; margin: 0 auto; background: var(--offwhite); border: 3px solid var(--teal); border-radius: 26px; overflow: hidden; box-shadow: 12px 14px 0 var(--berry); }
.clientmap svg.map { display: block; width: 100%; height: auto; }
.clientmap .st { fill: #F6F7F7; stroke: var(--teal); stroke-width: 1.6; stroke-linejoin: round; }
.clientmap .stl { font-family: var(--mono); font-size: 19px; letter-spacing: 0.2em; fill: var(--sage); text-anchor: middle; pointer-events: none; }
.clientmap .pin { cursor: pointer; outline: none; }
.clientmap .pin .halo { fill: var(--blush); opacity: 0; transition: opacity 0.2s; }
.clientmap .pin:hover .halo, .clientmap .pin:focus-visible .halo, .clientmap .pin.on .halo { opacity: 0.9; }
.clientmap .pin image { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); transform-origin: 0 0; }
.clientmap .pin:hover image, .clientmap .pin.on image { transform: rotate(-14deg) scale(1.12); }
.clientmap .cnt { fill: var(--red); stroke: #F6F7F7; stroke-width: 3; }
.clientmap .cntt { font-family: var(--mono); font-size: 15px; font-weight: 700; fill: #FFFDFC; text-anchor: middle; }
.clientmap .pinl { font-family: var(--mono); font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; fill: var(--teal); text-anchor: middle; paint-order: stroke; stroke: #F6F7F7; stroke-width: 4; stroke-linejoin: round; }
.clientmap .note { position: absolute; right: 1rem; top: 0.9rem; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.clientmap .mascot { position: absolute; left: 1.2rem; bottom: 0; width: 86px; height: auto; pointer-events: none; }
.clientmap .list { max-width: 68rem; margin: 1.6rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; align-items: start; text-align: left; }
.clientmap .place { background: var(--offwhite); border: 2px solid var(--teal); border-radius: 22px; padding: 1.2rem 1.25rem 1rem; transition: transform 0.25s, box-shadow 0.25s, background 0.2s, color 0.2s; }
.clientmap .place.home { border-style: dashed; }
.clientmap .place.on { background: var(--teal); color: var(--blush); transform: translateY(-4px) rotate(-0.4deg); box-shadow: 0 12px 0 rgba(11, 79, 97, 0.14); }
.clientmap .place h3 { font-family: "Studio Jam Display", var(--sans); text-transform: uppercase; font-weight: 400; font-size: 1.3rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.clientmap .place.on h3 img { filter: brightness(0) saturate(100%) invert(88%) sepia(9%) saturate(600%) hue-rotate(305deg); }
.clientmap .place ul { list-style: none; display: grid; gap: 0.35rem; }
.clientmap .place li a { display: grid; gap: 0.1rem; color: inherit; text-decoration: none; padding: 0.6rem 0.7rem; border-radius: 14px; border: 2px solid transparent; transition: border-color 0.15s; }
.clientmap .place li a:hover, .clientmap .place li a:focus-visible { border-color: currentColor; }
.clientmap .place li strong { font-weight: 600; }
.clientmap .place li span { font-size: 0.88rem; opacity: 0.85; }
.clientmap .place li em { font-style: normal; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.25rem; }
.clientmap .homep { font-size: 0.92rem; line-height: 1.6; opacity: 0.9; }
@media (max-width: 860px) { .clientmap .mapbox { box-shadow: 8px 10px 0 var(--berry); } .clientmap .stl { font-size: 26px; } .clientmap .pinl { font-size: 20px; } .clientmap .mascot { width: 60px; } }
.clientmap .list { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }
.clientmap .place li a, .clientmap .place { text-align: left; }
@media (max-width: 1024px) { .clientmap .list { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }

.clientmap .list { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.clientmap .place.home { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.5rem; padding: 1rem 1.4rem; }
.clientmap .place.home h3 { margin: 0; flex: 0 0 auto; }
.clientmap .place.home .homep { margin: 0; }
@media (max-width: 640px) { .clientmap .place.home { flex-direction: column; align-items: flex-start; gap: 0.6rem; } }
@media (max-width: 700px) { .clientmap .mascot { display: none; } .clientmap .stl { font-size: 30px; } .clientmap .pinl { font-size: 22px; } .clientmap .note { font-size: 0.6rem; } }
.testimonial.alt { background: var(--berry); }
.deco.walk { right: 4%; bottom: 0; }

.hero-mascot { height: 92px; width: auto; margin: 12px auto 0; }
@media (max-width: 640px) { .hero-mascot { height: 70px; } }

.nav-logo img { display: block; height: 44px; width: auto; }
@media (max-width: 640px) { .nav-logo img { height: 34px; } }

/* ===== Elevated treatment (applied) ===== */
:root { --disp: "Bricolage Grotesque", "Inclusive Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; }

/* type: Closeout kept for all headings (per Alise) */
.footer-big, .notfound h1 { font-family: "Studio Jam Display", var(--sans); }

/* geometry: calmer radii, straight photos, quieter shadows */
.tier, .job-card, .pillar, .contact-card, .step-card, .clientmap .place, .service { border-radius: 14px; }
.photo-frame { border-radius: 18px; border-width: 2px; box-shadow: 8px 10px 0 var(--berry); }
.about .photo-frame, .pillars-section .photo-frame, .mission .photo-frame, .mix .photo-frame { box-shadow: 8px 10px 0 var(--teal); }
.tilt-r, .tilt-l { transform: none; }
.photo-frame:hover { transform: translateY(-3px); }
.tier:hover, .pillar:hover, .job-card:hover { transform: translateY(-4px); box-shadow: 0 10px 0 rgba(11, 79, 97, 0.10); }
.service:hover { transform: translateY(-3px); }
.mapbox, .clientmap .mapbox { box-shadow: 8px 10px 0 var(--berry); border-radius: 18px; }

/* interaction: no rotation, no wavy underlines */
.btn:hover { transform: translateY(-2px); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-links a:hover, .footer-links a:hover, .teaser-link, .nav-links a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.pillars li:hover { transform: none; background: var(--teal); color: var(--blush); }
.badge { transform: translateX(-50%); font-size: 0.6rem; letter-spacing: 0.22em; }

/* ornament: keep the brand, lower the volume */
.deco.kick, .deco.walk, .deco.tall, .deco.stand { opacity: 0.45; }
.deco.chat { opacity: 0.9; width: clamp(80px, 8vw, 120px); }
.textured::before { opacity: 0.05; }
.services { background-image: linear-gradient(rgba(117, 63, 75, 0.96), rgba(117, 63, 75, 0.96)), url(/assets/img/squiggle-services.png); }
.ticker { padding: 0.5rem 0; }
.ticker-track span { font-size: 0.72rem; letter-spacing: 0.26em; opacity: 0.92; }
.hero-mascot { height: 104px; }
.kicker { font-size: 0.74rem; letter-spacing: 0.26em; opacity: 0.85; }

/* rhythm */
.about, .services, .packages, .process, .story, .mission, .pillars-section, .expect, .clientmap, .testimonial, .contact, .job, .service-rows, .mix, .contact-details { padding-top: clamp(4.5rem, 9.5vw, 7.5rem); padding-bottom: clamp(4.5rem, 9.5vw, 7.5rem); }
.quote { font-weight: 400; font-style: normal; font-size: clamp(1.2rem, 2.1vw, 1.6rem); line-height: 1.55; }
.quote::before { content: "\201C"; display: block; font-family: "Studio Jam Display", var(--sans); font-size: 3rem; line-height: 0.6; margin-bottom: 0.9rem; opacity: 0.8; }
.mono-mark { display: none; }
