:root {
  --ink: #303033;
  --purple: #6040e8;
  --pink: #e68eae;
  --coral: #ed6747;
  --orange: #e7a83f;
  --teal: #4aaea5;
  --lavender: #e1d8ff;
  --peach: #ffe8dc;
  --mint: #ddf1d7;
  --accent: var(--purple);
  --soft: var(--lavender);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    400 1rem/1.6 "DM Sans",
    sans-serif;
  background: #fffdf8;
  background-image: radial-gradient(#ded8ef 1px, transparent 1px);
  background-size: 22px 22px;
}
a {
  color: inherit;
}
.service-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  border-bottom: 3px solid #292929;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
}
.service-logo img {
  display: block;
  width: 210px;
  height: 94px;
  object-fit: contain;
}
.service-header nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.service-header nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-cta {
  padding: 0.7rem 1rem;
  border: 2px solid #292929;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  box-shadow: 3px 3px 0 #292929;
}
.menu-button {
  display: none;
}
.service-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 6vw, 6rem);
  background: linear-gradient(140deg, #fff 0%, var(--soft) 100%);
  border-bottom: 3px solid #292929;
  overflow: hidden;
}
.service-tag {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border: 2px solid #292929;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  box-shadow: 3px 3px 0 #292929;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
.service-hero h1 {
  margin: 1rem 0;
  font:
    700 clamp(3.2rem, 6vw, 6.2rem)/0.92 "Fredoka",
    sans-serif;
  letter-spacing: -0.05em;
}
.service-hero h1 em {
  font:
    400 1.04em/0.8 "Patrick Hand",
    cursive;
  color: var(--coral);
}
.hero-copy > p {
  max-width: 690px;
  font-size: 1.15rem;
  color: #51515b;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 2px solid #292929;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  box-shadow: 4px 4px 0 #292929;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary {
  background: #fff;
  color: #292929;
}
.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 #292929;
}
.hero-board {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
}
.board-card {
  width: min(410px, 88%);
  padding: 2rem;
  border: 3px solid #292929;
  border-radius: 24px;
  background: #fff;
  box-shadow: 10px 10px 0 #292929;
  transform: rotate(2deg);
}
.board-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 3px solid #292929;
  border-radius: 24px;
  background: var(--soft);
  font-size: 2.8rem;
}
.board-card h2 {
  margin: 0.2rem 0 1rem;
  font:
    700 2rem/1 "Fredoka",
    sans-serif;
}
.board-list {
  display: grid;
  gap: 0.7rem;
}
.board-list span {
  padding: 0.65rem 0.8rem;
  border: 2px solid #292929;
  border-radius: 10px;
  background: var(--soft);
  font-weight: 800;
}
.board-note {
  position: absolute;
  right: 0;
  bottom: 8%;
  padding: 0.65rem 0.9rem;
  border: 2px solid #292929;
  border-radius: 12px;
  background: var(--orange);
  box-shadow: 4px 4px 0 #292929;
  font:
    400 1.25rem "Patrick Hand",
    cursive;
  transform: rotate(-4deg);
}
.content-section {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 6vw, 6rem);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 2.2rem;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-heading h2,
.process-copy h2,
.service-cta h2 {
  margin: 0.2rem 0 0.8rem;
  font:
    700 clamp(2.4rem, 4vw, 4.2rem)/1 "Fredoka",
    sans-serif;
  letter-spacing: -0.035em;
}
.section-heading p {
  font-size: 1.1rem;
  color: #5a5a63;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.deliverable {
  padding: 1.5rem;
  border: 3px solid #292929;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 5px 0 #292929;
}
.deliverable:nth-child(2n) {
  background: var(--soft);
}
.deliverable-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 2px solid #292929;
  border-radius: 16px;
  background: var(--soft);
  font-size: 1.6rem;
}
.deliverable h3 {
  margin: 1rem 0 0.5rem;
  font:
    700 1.2rem/1.15 "Fredoka",
    sans-serif;
}
.deliverable p {
  margin: 0;
  color: #5b5b64;
  font-size: 0.9rem;
}
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--soft);
  border-top: 3px solid #292929;
  border-bottom: 3px solid #292929;
}
.process-copy p {
  font-size: 1.05rem;
}
.steps {
  display: grid;
  gap: 0.8rem;
}
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 3px solid #292929;
  border-radius: 16px;
  background: #fff;
}
.step b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid #292929;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font:
    700 1.2rem "Fredoka",
    sans-serif;
}
.step h3,
.step p {
  margin: 0;
}
.step h3 {
  font:
    700 1.05rem "Fredoka",
    sans-serif;
}
.step p {
  font-size: 0.85rem;
  color: #5b5b64;
}
.fit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.fit-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 3px solid #292929;
  border-radius: 22px;
  background: #fff;
  box-shadow: 6px 6px 0 #292929;
}
.fit-card.good {
  background: var(--soft);
}
.fit-card h2 {
  margin: 0 0 1rem;
  font:
    700 1.8rem "Fredoka",
    sans-serif;
}
.fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.fit-card li:before {
  content: "✓";
  margin-right: 0.6rem;
  color: var(--accent);
  font-weight: 900;
}
.service-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.25rem, 6vw, 6rem);
  background: var(--accent);
  color: #fff;
  border-top: 3px solid #292929;
}
.service-cta p {
  max-width: 720px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.service-cta .button {
  background: var(--orange);
  color: #292929;
}
.cta-actions > a:not(.button) {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.service-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 6vw, 6rem);
  background: #fff;
  border-bottom: 10px solid var(--accent);
  font-size: 0.8rem;
  color: #666;
}
.service-footer img {
  width: 220px;
  height: 110px;
  object-fit: contain;
}
.tagline {
  font:
    400 1.5rem/1.1 "Patrick Hand",
    cursive;
  color: var(--accent);
  text-align: center;
}
.next-service {
  text-decoration: none;
  font-weight: 800;
}
.footer-legal { grid-column: 1 / -1; margin: -0.75rem 0 0; text-align: center; font-size: 0.82rem; color: #666; }
.footer-legal span { margin: 0 0.55rem; }
.footer-legal a { color: inherit; font-weight: 700; }
.privacy-home { padding: 0.65rem 0.9rem; border: 2px solid #292929; border-radius: 11px; background: #fff; box-shadow: 3px 3px 0 #292929; color: #292929; text-decoration: none; font-weight: 800; }
.privacy-hero { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 7vw, 7rem) 2.5rem; background: linear-gradient(135deg, #e8f7f2, #f4efff); border-bottom: 3px solid #292929; }
.privacy-hero h1 { margin: 0.35rem 0 0.8rem; font: 700 clamp(3rem, 7vw, 5.5rem) / 0.95 "Fredoka", sans-serif; }
.privacy-hero > p:last-child { margin: 0; color: #5d5963; font-weight: 700; }
.privacy-content { width: min(900px, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) 0; font-size: 1.05rem; }
.privacy-content > p:first-child { font-size: 1.2rem; font-weight: 600; }
.privacy-content section { padding: 1.15rem 0; border-bottom: 3px dotted #cfc9e7; }
.privacy-content h2 { margin: 0 0 0.5rem; font: 700 1.75rem/1.15 "Fredoka", sans-serif; }
.privacy-content p, .privacy-content ul { margin: 0.55rem 0; }
.privacy-content li + li { margin-top: 0.4rem; }
.privacy-content a { color: #6040e8; font-weight: 700; }
.privacy-contact { margin-top: 1rem; padding: 1.5rem !important; border: 3px solid #292929 !important; border-radius: 18px; background: #cfeee9; box-shadow: 6px 6px 0 #292929; }
.theme-pink {
  --accent: #d85d89;
  --soft: #f8dce6;
}
.theme-orange {
  --accent: #c77f13;
  --soft: #ffe2b0;
}
.theme-teal {
  --accent: #268d85;
  --soft: #cfeee9;
}
.theme-lavender {
  --accent: #6040e8;
  --soft: #e1d8ff;
}
.theme-peach {
  --accent: #d56845;
  --soft: #ffe8dc;
}
.theme-green {
  --accent: #4d8e54;
  --soft: #ddf1d7;
}
.theme-beyond {
  --accent: #6040e8;
  --soft: #e1d8ff;
}
.beyond-hero {
  grid-template-columns: 1.05fr 0.95fr;
}
.beyond-hero h1 {
  font-size: clamp(3.2rem, 5.7vw, 5.8rem);
}
.beyond-hero .hero-copy > p {
  margin: 0.7rem 0;
}
.beyond-pullquote {
  max-width: 650px;
  padding: 0.9rem 1rem;
  border: 2px solid #292929;
  border-radius: 14px;
  background: #fff0c9;
  box-shadow: 4px 4px 0 #292929;
  color: #292929 !important;
  font: 400 1.55rem/1.1 "Patrick Hand", cursive;
  transform: rotate(-1deg);
}
.beyond-pullquote.compact {
  margin-top: 1.4rem;
  font-size: 1.45rem;
}
.theme-beyond .script-subhead {
  margin: 0.4rem 0 1rem;
  color: var(--coral);
  font: 400 clamp(1.55rem, 2.5vw, 2.2rem)/1.05 "Patrick Hand", cursive;
}
.beyond-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid #292929;
  border-radius: 24px;
  background: #fff;
  box-shadow: 9px 9px 0 #292929;
}
.beyond-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beyond-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border: 2px solid #292929;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}
.beyond-hero-photo {
  height: 570px;
  transform: rotate(1.2deg);
}
.beyond-intro {
  background: #fffdf8;
}
.beyond-intro .section-heading {
  max-width: 940px;
}
.beyond-audience-layout,
.beyond-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.audience-photo {
  min-height: 590px;
  transform: rotate(-1deg);
}
.audience-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 3px solid #292929;
  border-radius: 22px;
  background: var(--soft);
  box-shadow: 7px 7px 0 #292929;
}
.audience-card h3 {
  margin: 0 0 1rem;
  font: 700 1.75rem/1.1 "Fredoka", sans-serif;
}
.audience-card > p {
  margin: 0 0 1rem;
  font-weight: 700;
}
.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.audience-list li {
  padding: 0.7rem 0.8rem;
  border: 2px solid #292929;
  border-radius: 10px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.audience-list li::before {
  content: "✦";
  margin-right: 0.5rem;
  color: var(--coral);
}
.beyond-services {
  border-block: 3px solid #292929;
  background: #eaf7f4;
}
.beyond-deliverables {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.beyond-deliverables .deliverable:nth-child(4),
.beyond-deliverables .deliverable:nth-child(7) {
  background: #fff0c9;
}
.beyond-story {
  background: #fff;
}
.story-photo {
  min-height: 530px;
}
.beyond-story-copy h2 {
  margin: 0.2rem 0 1rem;
  font: 700 clamp(2.4rem, 4vw, 4.2rem)/1 "Fredoka", sans-serif;
  letter-spacing: -0.035em;
}
.beyond-story-copy > p:not(.eyebrow):not(.beyond-pullquote) {
  font-size: 1.08rem;
  color: #55545e;
}
.beyond-flexibility {
  border-top: 3px solid #292929;
  background: linear-gradient(135deg, #fff0c9, #ffe6ef);
}
.beyond-flexibility .section-heading {
  max-width: 950px;
}
.flexibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.flexibility-grid article {
  padding: 1.4rem;
  border: 3px solid #292929;
  border-radius: 18px;
  background: #fff;
  box-shadow: 5px 5px 0 #292929;
}
.flexibility-grid span {
  color: var(--accent);
  font-weight: 900;
}
.flexibility-grid h3 {
  margin: 0.45rem 0;
  font: 700 1.25rem/1.2 "Fredoka", sans-serif;
}
.flexibility-grid p {
  margin: 0;
  font-weight: 800;
}
.beyond-signoff {
  margin: 2rem 0 0;
  color: var(--accent);
  font: 400 clamp(1.8rem, 3vw, 2.8rem)/1 "Patrick Hand", cursive;
  text-align: center;
}
.cta-eyebrow {
  color: #fff;
}
.work-section {
  background: #fff;
  border-top: 3px solid #292929;
}
.work-section .section-heading {
  max-width: 920px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.work-card {
  min-width: 0;
  overflow: hidden;
  border: 3px solid #292929;
  border-radius: 20px;
  background: #fff;
  box-shadow: 6px 6px 0 #292929;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.work-card:nth-child(2n) {
  transform: rotate(1deg);
}
.work-card:nth-child(3n) {
  transform: rotate(-1deg);
}
a.work-card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 9px 10px 0 #292929;
}
.work-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
  border-bottom: 3px solid #292929;
}
.work-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-image {
  height: 250px;
  padding: 1.4rem;
  background: #fff;
}
.logo-image .jubilee-logo {
  width: 68%;
  height: 68%;
}
.work-caption {
  padding: 1rem 1.1rem;
}
.work-caption h3 {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  font:
    700 1.15rem/1.15 "Fredoka",
    sans-serif;
}
.work-caption p {
  margin: 0.35rem 0 0;
  color: #676771;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #f1eff4;
  border-bottom: 2px solid #292929;
}
.browser-bar i {
  width: 8px;
  height: 8px;
  border: 1px solid #292929;
  border-radius: 50%;
  background: var(--accent);
}
.browser-bar span {
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  color: #686872;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-image {
  height: 230px;
}
.site-image img {
  object-fit: cover;
  object-position: top;
}
.print-grid {
  align-items: start;
}
.print-image {
  height: 340px;
  padding: 0.7rem;
}
.print-image img {
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.16));
}
@media (max-width: 950px) {
  .service-header nav {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    background: #fff;
    border-bottom: 3px solid #292929;
  }
  .service-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    padding: 0.55rem 0.75rem;
    border: 2px solid #292929;
    border-radius: 9px;
    background: #fff;
    font-weight: 800;
  }
  .service-hero,
  .process,
  .service-cta {
    grid-template-columns: 1fr;
  }
  .hero-board {
    min-height: 390px;
  }
  .deliverables {
    grid-template-columns: 1fr 1fr;
  }
  .service-footer {
    grid-template-columns: 1fr;
  }
  .tagline {
    text-align: left;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logo-image {
    height: 270px;
  }
  .site-image {
    height: 250px;
  }
  .print-image {
    height: 420px;
  }
  .beyond-hero,
  .beyond-audience-layout,
  .beyond-story {
    grid-template-columns: 1fr;
  }
  .beyond-hero-photo {
    height: 480px;
  }
  .audience-photo,
  .story-photo {
    min-height: 460px;
  }
  .beyond-deliverables,
  .flexibility-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .service-header {
    height: 86px;
  }
  .service-logo img {
    width: 165px;
    height: 78px;
  }
  .service-header nav {
    top: 86px;
  }
  .service-hero {
    padding-block: 3rem;
  }
  .service-hero h1 {
    font-size: 3.4rem;
  }
  .hero-board {
    min-height: 340px;
  }
  .board-card {
    padding: 1.4rem;
  }
  .board-note {
    right: 1rem;
  }
  .deliverables,
  .fit-section,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .content-section {
    padding-block: 3rem;
  }
  .service-footer img {
    width: 190px;
    height: 95px;
  }
  .tagline {
    font-size: 1.3rem;
  }
  .logo-image {
    height: 280px;
  }
  .site-image {
    height: 230px;
  }
  .print-image {
    height: 430px;
  }
  .beyond-hero h1 {
    font-size: 3.25rem;
  }
  .beyond-hero-photo {
    height: 370px;
  }
  .audience-photo,
  .story-photo {
    min-height: 370px;
  }
  .audience-list,
  .beyond-deliverables,
  .flexibility-grid {
    grid-template-columns: 1fr;
  }
  .beyond-photo figcaption {
    font-size: 0.85rem;
  }
}

/* Larger consultation contact details */
.service-cta .cta-actions .button {
  padding: 1.05rem 1.4rem;
  font-size: 1.15rem;
}
.service-cta .cta-actions > a[href^="tel:"] {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 800;
}
.service-cta .cta-actions .cta-email {
  font-size: 1rem;
}
