:root {
  --pdf-ink: #211e22;
  --pdf-coral: #e78675;
  --pdf-teal: #54a494;
  --pdf-yellow: #e4b45c;
  --pdf-purple: #7c7cec;
  --pdf-blue: #4e97bd;
  --pdf-paper: #f7f6f3;
  --pdf-pink-paper: #f8eff0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (min-width: 1024px) {
  html { font-size: 18px; }
}

@media (min-width: 1440px) {
  html { font-size: 19px; }
}

body.pdf-site {
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: var(--pdf-ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}

body.pdf-site *,
body.pdf-site *::before,
body.pdf-site *::after {
  box-sizing: border-box;
}

body.pdf-site h1,
body.pdf-site h2,
body.pdf-site h3,
body.pdf-site .pdf-display {
  margin: 0;
  color: var(--pdf-ink);
  font-family: "Fraunces", Georgia, serif;
  font-feature-settings: "dlig" 0, "liga" 0, "ss01" 0, "ss02" 0;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  letter-spacing: -.04em;
}

.pdf-normal-glyph {
  display: inline !important;
  font-family: Georgia, serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-weight: inherit;
}

.pdf-normal-glyph-four {
  position: relative;
  top: -.15em;
}

.pdf-price .pdf-normal-glyph-four {
  top: 0;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
}

.pdf-normal-word {
  display: inline !important;
  white-space: nowrap;
}

body.pdf-site p {
  margin-top: 0;
}

body.pdf-site img {
  display: block;
  max-width: 100%;
}

body.pdf-site a,
body.pdf-site button,
body.pdf-site summary {
  -webkit-tap-highlight-color: transparent;
}

body.pdf-site :focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--pdf-ink);
}

body.pdf-site .skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 16px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--pdf-ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

body.pdf-site .skip-link:focus {
  top: 16px;
}

.pdf-wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}

.pdf-narrow {
  width: min(790px, calc(100% - 48px));
  margin-inline: auto;
}

.pdf-eyebrow {
  margin-bottom: 16px;
  color: #bd686f;
  font-family: "Lato", sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
}

body.pdf-site .btn {
  min-height: 42px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: #4f82aa;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(33, 30, 34, .15);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

body.pdf-site .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 23px rgba(33, 30, 34, .2);
}

/* Navigation */
body.pdf-site #nav {
  position: absolute;
  z-index: 210;
  top: 22px;
  left: 50%;
  width: min(1320px, calc(100% - 80px));
  min-height: 54px;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
  box-shadow: none;
}

body.pdf-site #nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 7px max(24px, 4vw);
  transform: none;
  border-bottom: 3px solid var(--pdf-coral);
  border-radius: 0;
  background: rgba(247, 233, 222, .96);
  box-shadow: 0 8px 24px rgba(33, 30, 34, .13);
  backdrop-filter: blur(14px);
}

body.pdf-site #nav.scrolled .logo-light {
  display: none;
  opacity: 0;
}

body.pdf-site #nav.scrolled .logo-dark {
  display: block;
  opacity: 1;
}

body.pdf-site #nav.scrolled ul a:not(.nav-cta) {
  color: var(--pdf-ink);
}

body.pdf-site #nav.scrolled ul a:not(.nav-cta):hover,
body.pdf-site #nav.scrolled ul a:not(.nav-cta):focus-visible {
  color: #b85f52;
}

body.pdf-site #nav.scrolled .nav-cta {
  border: 2px solid var(--pdf-ink);
  background: var(--pdf-yellow);
  color: var(--pdf-ink) !important;
  box-shadow: 4px 4px 0 var(--pdf-teal);
  transition: transform .2s ease, box-shadow .2s ease;
}

body.pdf-site #nav.scrolled .nav-cta:hover,
body.pdf-site #nav.scrolled .nav-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--pdf-teal);
}

body.pdf-site #nav .brandmark {
  width: 104px;
  height: 58px;
}

body.pdf-site #nav .brandmark img {
  width: 104px;
  height: 58px;
  object-fit: contain;
}

body.pdf-site #nav .logo-dark {
  display: none;
}

body.pdf-site #nav ul {
  gap: 24px;
}

body.pdf-site #nav ul a {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body.pdf-site #nav .nav-cta {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--pdf-coral);
  color: #fff;
  box-shadow: 0 7px 16px rgba(73, 32, 37, .18);
}

@media (min-width: 901px) and (max-width: 1040px) {
  body.pdf-site #nav {
    width: calc(100% - 32px);
  }

  body.pdf-site #nav ul {
    gap: 13px;
  }

  body.pdf-site #nav ul a {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
  }

  body.pdf-site #nav .nav-cta {
    padding-inline: 14px;
  }
}

/* Home hero */
.pdf-hero {
  position: relative;
  width: 100%;
  height: clamp(646px, 54vw, 780px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--pdf-blue);
  isolation: isolate;
}

.pdf-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 30, 40, .09), transparent 30%);
  pointer-events: none;
}

.pdf-hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
}

.pdf-hero-blobs {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pdf-hero-blobs .blob-coral { fill: var(--pdf-coral); }
.pdf-hero-blobs .blob-purple { fill: var(--pdf-purple); }
.pdf-hero-blobs .blob-yellow { fill: var(--pdf-yellow); }
.pdf-hero-blobs .blob-teal { fill: var(--pdf-teal); }

.pdf-hero-copy {
  position: absolute;
  z-index: 4;
  top: auto;
  bottom: 32px;
  left: 50%;
  width: min(520px, 46vw);
  transform: translateX(-50%);
  text-align: center;
}

body.pdf-site .pdf-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.3rem, 3.15vw, 3rem);
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
}

body.pdf-site .pdf-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  background: #dca65e;
  color: #fff;
}

.pdf-hero-stat {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  color: #fff;
}

.pdf-hero-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
}

.pdf-hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.stat-mobile { left: clamp(28px, 4vw, 64px); }
.stat-rating { right: clamp(30px, 4vw, 64px); }
.stat-rating i { color: var(--pdf-coral); font-style: normal; }

.pdf-marquee {
  width: 100%;
  height: 40px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--pdf-ink);
  color: #fff;
}

.pdf-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: pdf-marquee 30s linear infinite;
  will-change: transform;
}

.pdf-marquee span {
  padding-inline: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: .78rem;
  white-space: nowrap;
}

.pdf-marquee i {
  color: var(--pdf-yellow);
  font-size: .58rem;
  font-style: normal;
}

@keyframes pdf-marquee {
  to { transform: translateX(-50%); }
}

/* Approach */
.pdf-approach {
  padding: 92px 0 82px;
  background: #fff;
}

.pdf-approach-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: center;
}

.pdf-approach-head > div {
  max-width: 590px;
}

body.pdf-site .pdf-approach h2 {
  margin-bottom: 23px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: .98;
}

.pdf-approach-head p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #5b555a;
  font-size: .92rem;
  line-height: 1.75;
}

.pdf-paw-art {
  width: 100%;
  height: auto;
  transform: rotate(-5deg);
}

.pdf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.pdf-feature-grid article {
  position: relative;
  min-height: 184px;
  padding: 28px 26px;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f4f1;
}

.pdf-feature-grid article::after {
  content: "";
  position: absolute;
  top: -44px;
  right: -38px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(216, 120, 128, .16);
}

.pdf-feature-grid article:nth-child(2)::after { background: rgba(94, 156, 145, .16); }
.pdf-feature-grid article:nth-child(3)::after { background: rgba(223, 180, 91, .2); }

.pdf-feature-grid span {
  color: #aaa0ac;
  font-size: .7rem;
  font-weight: 700;
}

body.pdf-site .pdf-feature-grid h3 {
  margin: 20px 0 12px;
  font-size: 1.28rem;
  line-height: 1;
}

.pdf-feature-grid p {
  margin-bottom: 0;
  color: #5e585d;
  font-size: .76rem;
  line-height: 1.55;
}

/* Bone package */
.pdf-package {
  width: 100%;
  margin-inline: auto;
  padding: 0;
  background: #fff;
}

.pdf-package-scene {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: var(--pdf-pink-paper);
  isolation: isolate;
}

.pdf-package-scene::before,
.pdf-package-scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.pdf-package-scene::before {
  top: -145px;
  left: -110px;
  width: 410px;
  height: 410px;
  background: var(--pdf-coral);
}

.pdf-package-scene::after {
  right: -110px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  background: #76aca4;
}

.pdf-bone-art {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 50%;
  width: min(1040px, calc(100% - 96px));
  height: 374px;
  transform: translateX(-50%);
}

body.pdf-site .pdf-bone-art-mobile { display: none; }

.pdf-crown-art {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 50%;
  width: 84px;
  height: auto;
  transform: translateX(-50%) rotate(-2deg);
}

.pdf-package-content {
  position: absolute;
  z-index: 2;
  top: 145px;
  left: 50%;
  display: grid;
  grid-template-columns: 190px 465px 170px;
  gap: 50px;
  align-items: center;
  width: min(925px, calc(100% - 220px));
  transform: translateX(-50%);
}

.pdf-package-price .pdf-eyebrow {
  margin-bottom: 9px;
  font-size: .5rem;
  letter-spacing: .12em;
}

body.pdf-site .pdf-package-price h2 {
  font-size: 1.9rem;
  line-height: 1.02;
  letter-spacing: -.015em;
}

.pdf-price {
  margin: 8px 0 0;
  color: var(--pdf-ink);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .82;
}

.pdf-price small {
  margin-left: 8px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .06em;
}

body.pdf-site .pdf-price { margin-top: 8px; }

@media (min-width: 1101px) {
  .pdf-package-price { transform: translateX(10px); }
}

.pdf-package-list {
  margin: 0;
  padding: 4px 0 8px;
  transform: none;
  list-style: none;
}

.pdf-package-list li {
  position: relative;
  min-height: 28px;
  padding: 5px 0 5px 30px;
  color: #4e494d;
  font-size: .75rem;
  line-height: 1.5;
}

.pdf-package-list li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 30px;
  height: 1px;
  background: rgba(78, 73, 77, .14);
}

.pdf-package-list li:last-child::after { display: none; }

.pdf-package-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--pdf-teal);
  font-size: .88rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.pdf-package-action {
  text-align: center;
}

.pdf-package-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 48px;
}

.pdf-package-action p {
  max-width: 170px;
  margin: 10px auto 0;
  color: #514b50;
  font-size: .625rem;
  line-height: 1.4;
}

.pdf-package-action p span {
  display: block;
}

body.pdf-site .pdf-package-action p { margin: 10px auto 0; }

/* Gallery + team */
.pdf-colour-story {
  padding: 88px 0 72px;
  background: #f6f6f4;
}

.pdf-story-grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.pdf-four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdf-four-grid img {
  width: 100%;
  height: 206px;
  border-radius: 22px;
  object-fit: cover;
}

.pdf-story-copy p,
.pdf-team-grid p {
  color: #595359;
  font-size: .86rem;
  line-height: 1.72;
}

.pdf-story-copy p:last-child,
.pdf-team-grid p:last-of-type { margin-bottom: 0; }

.pdf-team {
  padding: 76px 0 84px;
  background: #fff;
}

.pdf-team-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 68px;
  align-items: center;
}

body.pdf-site .pdf-team h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  line-height: .96;
}

.pdf-team-grid > img {
  width: 100%;
  height: 470px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 22%;
}

.pdf-dark-btn {
  display: inline-flex;
  margin-top: 25px;
  background: var(--pdf-ink) !important;
}

.pdf-bubbles {
  width: min(1180px, calc(100% - 40px));
  height: auto;
  aspect-ratio: 1600 / 1067;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
}

.pdf-bubbles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Reviews */
.pdf-reviews {
  padding: 84px 0 92px;
  background: #fff;
}

body.pdf-site .pdf-reviews h2,
body.pdf-site .pdf-faq h2 {
  margin-bottom: 36px;
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  line-height: .98;
}

.pdf-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pdf-review-grid blockquote {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid #ebe7e4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(38, 31, 34, .07);
}

.pdf-review-grid [role="img"] {
  color: #d6a44e;
  font-size: .74rem;
  letter-spacing: .08em;
}

.pdf-review-grid blockquote p {
  margin: 17px 0 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: .91rem;
  font-style: italic;
  line-height: 1.48;
}

.pdf-review-grid cite {
  color: #777075;
  font-size: .65rem;
  font-style: normal;
}

/* FAQ */
.pdf-faq {
  width: 100%;
  margin-inline: auto;
  padding: 86px 0 92px;
  background: #f6f6f4;
}

.pdf-faq details {
  border-bottom: 1px solid #dcd7d6;
}

.pdf-faq summary {
  position: relative;
  min-height: 58px;
  padding: 19px 48px 19px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: .9rem;
  font-weight: 600;
}

.pdf-faq summary::-webkit-details-marker { display: none; }

.pdf-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: #bd686f;
  font-family: "Lato", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.pdf-faq details[open] summary::after { content: "−"; }

.pdf-faq details p {
  max-width: 650px;
  margin: -5px 0 20px;
  color: #5c565b;
  font-size: .78rem;
  line-height: 1.6;
}

/* Social */
.pdf-social {
  width: 100%;
  margin-inline: auto;
  padding: 54px 0 58px;
  background: #fff;
  text-align: center;
}

.pdf-social > p {
  margin-bottom: 12px;
  font-size: .68rem;
  font-weight: 600;
}

.pdf-social > [class*="elfsight-app-"] {
  width: 100%;
}

.pdf-social > [class*="elfsight-app-"]:empty {
  display: none;
}

.pdf-social > [class*="elfsight-app-"]:not(:empty) {
  min-height: 374px;
}

.pdf-social .eapps-instagram-feed-posts-slider-next {
  right: 42px !important;
}

.pdf-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-top: 18px;
  padding: 6px 4px;
  color: #4b6e87;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.pdf-instagram:hover { color: #c94f48; }

@media (min-width: 701px) and (max-width: 1100px) {
  .pdf-social > [class*="elfsight-app-"] { min-height: 430px; }
}

/* Final CTA + footer */
.pdf-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 370px;
  margin-inline: auto;
  padding: 56px 24px;
  background: #d7aa62;
  color: #fff;
  text-align: center;
}

.pdf-final-cta > img {
  width: 155px;
  height: auto;
  margin-bottom: 12px;
}

body.pdf-site .pdf-final-cta h2 {
  color: #fff;
  font-size: clamp(2.8rem, 4.4vw, 3.7rem);
  line-height: .96;
}

.pdf-final-cta p {
  margin: 20px 0 24px;
  font-size: .8rem;
}

.pdf-final-cta h2 + .btn {
  margin-top: 24px;
}

body.pdf-site .pdf-final-cta .btn {
  background: #fff;
  color: #a86f2d;
  box-shadow: none;
}

.pdf-footer {
  width: 100%;
  min-height: 180px;
  margin-inline: auto;
  padding: 38px 0 32px;
  background: var(--pdf-ink);
  color: #fff;
}

.pdf-footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.pdf-footer .footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 8px;
}

.pdf-footer p,
.pdf-footer li,
.pdf-footer a {
  color: rgba(255, 255, 255, .74);
  font-size: .63rem;
  line-height: 1.65;
  text-decoration: none;
}

.pdf-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: .65rem;
  letter-spacing: .08em;
}

.pdf-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdf-footer p { margin: 0; }

/* Shared inner page hero */
.pdf-page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--pdf-blue);
  isolation: isolate;
}

.pdf-page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 27, 32, .52), rgba(25, 27, 32, .02) 70%);
}

.pdf-page-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-page-hero-copy {
  position: absolute;
  z-index: 2;
  top: 150px;
  left: max(48px, calc((100% - 790px) / 2));
  max-width: 540px;
  color: #fff;
}

.pdf-page-hero-copy .pdf-eyebrow { color: #fff; }

body.pdf-site .pdf-page-hero h1 {
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 4.5rem);
  line-height: .92;
}

.pdf-page-hero-copy > p:last-child {
  max-width: 480px;
  margin: 19px 0 0;
  font-size: .82rem;
  line-height: 1.55;
}

/* Motion reveal is progressive enhancement only */
.pdf-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.pdf-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 701px) and (max-width: 1100px) {
  .pdf-wrap { width: calc(100% - 48px); }

  .pdf-bone-art {
    top: 28px;
    width: calc(100% - 40px);
    height: 400px;
  }

  .pdf-crown-art { top: 20px; }

  .pdf-package-content {
    top: 156px;
    grid-template-columns: 160px minmax(0, 1fr) 130px;
    gap: 24px;
    width: calc(100% - 150px);
  }

  body.pdf-site .pdf-package-price h2 { font-size: 1.55rem; }
  .pdf-price { font-size: 2.5rem; }
  .pdf-package-list li {
    min-height: 24px;
    padding: 3px 0 3px 24px;
    font-size: .67rem;
    line-height: 1.35;
  }
  .pdf-package-list li::after { left: 24px; }
  .pdf-package-action .btn {
    min-width: 118px;
    padding-inline: 14px;
  }
  .pdf-package-action p { font-size: .56rem; }
}

@media (min-width: 701px) and (max-width: 820px) {
  .pdf-package-scene {
    height: auto;
    padding: 72px 24px 48px;
  }

  body.pdf-site .pdf-bone-art { display: none; }

  .pdf-crown-art {
    top: 30px;
    width: 68px;
  }

  .pdf-package-content {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 50px 44px 28px;
    transform: none;
    border: 4px solid var(--pdf-ink);
    border-radius: 48px;
    background: #fffdfa;
    box-shadow: 8px 9px 0 rgba(190, 165, 137, .72);
  }

  .pdf-package-price { text-align: center; }
  body.pdf-site .pdf-package-price .pdf-eyebrow {
    margin-bottom: 12px;
    font-size: .64rem;
  }
  body.pdf-site .pdf-package-price h2 { font-size: 2.45rem; }
  .pdf-price { font-size: 3.4rem; }
  .pdf-package-action p { font-size: .72rem; }
}

@media (max-width: 900px) {
  body.pdf-site #nav {
    top: 12px;
    width: calc(100% - 28px);
  }

  body.pdf-site.menu-open #nav.scrolled {
    top: 12px;
    left: 50%;
    width: calc(100% - 28px);
    min-height: 54px;
    padding: 0;
    transform: translateX(-50%);
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.pdf-site #nav .brandmark,
  body.pdf-site #nav .brandmark img {
    width: 92px;
    height: 52px;
  }

  body.pdf-site #nav .burger {
    position: relative;
    z-index: 230;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    border-radius: 50%;
    background: rgba(33, 30, 34, .82);
  }

  .pdf-approach-head {
    grid-template-columns: 1fr 230px;
    gap: 24px;
  }

  .pdf-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .pdf-team-grid { gap: 38px; }
}

@media (max-width: 700px) {
  .pdf-wrap,
  .pdf-narrow {
    width: min(100% - 32px, 560px);
  }

  .pdf-hero {
    height: 650px;
  }

  .pdf-hero-photo {
    object-position: center top;
  }

  .pdf-hero-copy {
    top: 426px;
    bottom: auto;
    width: min(calc(100% - 48px), 360px);
  }

  body.pdf-site .pdf-hero-copy h1 {
    font-size: clamp(2.08rem, 9vw, 2.35rem);
    line-height: .98;
  }

  body.pdf-site .pdf-hero-cta {
    margin-top: 14px;
  }

  .pdf-hero-stat {
    bottom: 14px;
  }

  .pdf-hero-stat strong { font-size: 2.35rem; }
  .pdf-hero-stat span {
    font-size: .52rem;
    letter-spacing: .12em;
  }
  .stat-mobile { left: 24px; }
  .stat-rating { right: 28px; bottom: 16px; }

  .pdf-marquee { height: 38px; }

  .pdf-approach {
    padding: 66px 0 58px;
  }

  .pdf-approach-head {
    grid-template-columns: 1fr;
  }

  .pdf-paw-art {
    width: 220px;
    margin: -10px auto 0;
  }

  body.pdf-site .pdf-approach h2,
  body.pdf-site .pdf-team h2,
  body.pdf-site .pdf-reviews h2,
  body.pdf-site .pdf-faq h2 {
    font-size: 2.45rem;
  }

  .pdf-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .pdf-feature-grid article {
    min-height: 0;
    padding: 24px;
  }

  .pdf-feature-grid h3 { margin-top: 13px !important; }

  .pdf-package-scene {
    height: auto;
    min-height: 0;
    padding: 62px 16px 40px;
  }

  body.pdf-site .pdf-bone-art { display: none; }

  body.pdf-site .pdf-bone-art-mobile { display: none; }

  .pdf-crown-art {
    top: 28px;
    width: 62px;
  }

  .pdf-package-content {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 27px;
    width: min(100%, 500px);
    margin-inline: auto;
    padding: 44px 28px 34px;
    transform: none;
    border: 3px solid var(--pdf-ink);
    border-radius: 28px;
    background: #fffdfa;
    box-shadow: 7px 8px 0 #ddc8b0;
  }

  .pdf-package-price { text-align: center; }
  body.pdf-site .pdf-package-price .pdf-eyebrow {
    margin-bottom: 12px;
    font-size: .64rem;
  }
  body.pdf-site .pdf-package-price h2 { font-size: 2.45rem; }
  .pdf-price { font-size: 3.4rem; }
  .pdf-package-price small { font-size: .76rem; }
  .pdf-package-list { transform: none; padding: 4px 8px 8px; }
  .pdf-package-list li { font-size: .76rem; line-height: 1.45; padding: 5px 0 5px 30px; }
  .pdf-package-action p { font-size: .76rem; }

  .pdf-colour-story,
  .pdf-team,
  .pdf-reviews,
  .pdf-faq {
    padding: 62px 0;
  }

  .pdf-story-grid,
  .pdf-team-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pdf-four-grid img { height: 42vw; max-height: 220px; }
  .pdf-team-grid > img { height: 112vw; max-height: 520px; }
  .pdf-bubbles {
    width: 100%;
    height: auto;
    aspect-ratio: 1600 / 1067;
    border-radius: 0;
  }

  .pdf-review-grid { grid-template-columns: 1fr; }

  .pdf-social { padding: 42px 0 46px; }
  .pdf-social > p { padding-inline: 16px; }

  .pdf-instagram {
    min-height: 44px;
    padding-inline: 20px;
    font-size: .8rem;
  }

  .pdf-final-cta {
    min-height: 340px;
  }

  body.pdf-site .pdf-final-cta h2 { font-size: 2.65rem; }
  .pdf-final-cta p { max-width: 320px; line-height: 1.55; }

  .pdf-footer {
    padding: 48px 0;
  }

  .pdf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .pdf-footer-grid > div:first-child,
  .pdf-footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .pdf-page-hero { height: 430px; }

  .pdf-page-hero-copy {
    top: 165px;
    left: 24px;
    width: calc(100% - 48px);
  }

  body.pdf-site .pdf-page-hero h1 { font-size: 3rem; }
}

/* About page uses only the Meet content present in the PDF */
.pdf-about-team {
  padding-top: 132px;
  background: #fff;
}

body.pdf-site .pdf-about-team h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5vw, 4.5rem);
  line-height: .92;
}

.pdf-about-page #nav:not(.scrolled) .logo-light { display: none; }
.pdf-about-page #nav:not(.scrolled) .logo-dark { display: block; }
.pdf-about-page #nav:not(.scrolled) ul a:not(.nav-cta) { color: var(--pdf-ink); }

/* Pricing page */
.pdf-pricing-hero {
  background: #bd5a47;
}

.pdf-pricing-hero::after {
  background: linear-gradient(90deg, rgba(91, 22, 29, .7), rgba(169, 57, 42, .18) 62%, rgba(169, 57, 42, .05));
}

.pdf-pricing-hero > img {
  left: auto;
  right: 0;
  width: 51%;
  object-position: center 18%;
}

.pdf-pricing-hero .pdf-page-hero-copy {
  top: 140px;
  max-width: 620px;
}

body.pdf-site .pdf-pricing-hero h1 {
  font-size: clamp(3.25rem, 4.4vw, 3.9rem);
}

.pdf-pricing-notes {
  padding: 78px 0 92px;
  background: #fff;
}

body.pdf-site .pdf-pricing-notes h2 {
  margin-bottom: 36px;
  font-size: clamp(2.8rem, 4.2vw, 3.7rem);
  line-height: .96;
}

.pdf-pricing-notes article {
  margin-bottom: 28px;
}

body.pdf-site .pdf-pricing-notes h3 {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pdf-pricing-notes article p {
  max-width: 670px;
  margin-bottom: 0;
  color: #5b555a;
  font-size: .78rem;
  line-height: 1.7;
}

/* Gallery page */
.pdf-gallery-hero > img {
  object-position: center 47%;
}

.pdf-gallery-hero::after {
  background: linear-gradient(90deg, rgba(24, 24, 28, .68), rgba(24, 24, 28, .03) 72%);
}

.pdf-crumbs {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, .78);
  font-size: .61rem;
}

.pdf-crumbs a {
  color: inherit;
  text-decoration: none;
}

.pdf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(950px, calc(100% - 48px));
  margin: 44px auto 52px;
  padding: 0;
}

.pdf-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdf-gallery-column img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.pdf-gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 232px;
  margin-inline: auto;
  padding: 40px 24px;
  background: #dfae69;
  text-align: center;
}

body.pdf-site .pdf-gallery-cta h2 {
  margin-bottom: 21px;
  color: #fff;
  font-size: clamp(2.7rem, 4vw, 3.45rem);
  line-height: .95;
}

.pdf-gallery-cta .btn {
  background: #4f82aa !important;
}

/* Blog page */
.pdf-blog-hero {
  height: clamp(500px, 43vw, 620px);
  background: #4b9cc6;
}

.pdf-blog-hero::after {
  background: linear-gradient(90deg, rgba(25, 24, 27, .76) 0%, rgba(25, 24, 27, .5) 38%, rgba(25, 24, 27, .12) 68%, transparent 88%);
}

.pdf-blog-hero > img {
  left: 33%;
  width: 45%;
  object-fit: cover;
  object-position: center 30%;
}

.pdf-blog-hero .pdf-page-hero-copy {
  top: auto;
  bottom: 62px;
  left: max(48px, calc((100% - 1180px) / 2));
  width: min(620px, calc(100% - 96px));
  max-width: none;
}

body.pdf-site .pdf-blog-hero h1 {
  max-width: 620px;
  font-size: clamp(3.6rem, 5.5vw, 5.4rem);
  line-height: .94;
}

.pdf-blog-hero .pdf-page-hero-copy > p:last-child {
  max-width: 590px;
  font-size: .9rem;
  line-height: 1.5;
}

.pdf-blog-index {
  padding: 62px 0 70px;
  background: #fff;
}

body.pdf-site .pdf-blog-index h2 {
  margin-bottom: 36px;
  font-size: clamp(2.55rem, 4vw, 3.35rem);
  line-height: .98;
}

.pdf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
}

.pdf-blog-grid > a {
  overflow: hidden;
  border-radius: 19px;
  background: #fff;
  color: var(--pdf-ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(38, 31, 34, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pdf-blog-grid > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(38, 31, 34, .15);
}

.pdf-blog-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pdf-blog-grid a > div {
  min-height: 112px;
  padding: 17px 18px 20px;
}

.pdf-blog-grid span {
  display: block;
  margin-bottom: 9px;
  color: #bd686f;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .13em;
}

body.pdf-site .pdf-blog-grid h3 {
  font-size: .94rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.pdf-blog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 285px;
  margin-inline: auto;
  padding: 48px 24px;
  background: #d9a865;
  color: #fff;
  text-align: center;
}

.pdf-blog-cta .pdf-eyebrow { color: #fff; }

body.pdf-site .pdf-blog-cta h2 {
  color: #fff;
  font-size: clamp(2.75rem, 4.3vw, 3.65rem);
  line-height: .96;
}

.pdf-blog-cta > p:not(.pdf-eyebrow) {
  margin: 17px 0 23px;
  font-size: .76rem;
}

.pdf-blog-cta .btn {
  background: #fff !important;
  color: #a66e2e !important;
  box-shadow: none !important;
}

@media (max-width: 700px) {
  .pdf-pricing-hero > img {
    width: 100%;
    opacity: .66;
  }

  .pdf-pricing-notes { padding: 60px 0 68px; }
  body.pdf-site .pdf-pricing-notes h2 { font-size: 2.6rem; }

  .pdf-gallery-grid {
    gap: 7px;
    width: calc(100% - 20px);
    margin: 24px auto 34px;
  }

  .pdf-gallery-column { gap: 7px; }
  .pdf-gallery-column img { border-radius: 12px; }
  .pdf-gallery-cta { min-height: 210px; }

  .pdf-blog-hero > img {
    position: relative;
    grid-row: 1;
    left: 12.5%;
    width: 75%;
    height: 430px;
    opacity: 1;
    object-fit: cover;
    object-position: 50% center;
  }

  .pdf-blog-hero {
    display: grid;
    grid-template-rows: 430px auto;
    height: auto;
    background:
      linear-gradient(to bottom, transparent 0, transparent 430px, #211e22 430px, #211e22 100%),
      linear-gradient(90deg, #5a98cb 0%, #3c85bd 100%);
  }

  .pdf-blog-hero::after {
    display: none;
  }

  .pdf-blog-hero .pdf-page-hero-copy {
    position: relative;
    grid-row: 2;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 30px 24px 36px;
  }

  body.pdf-site .pdf-blog-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.45rem);
    line-height: .94;
  }

  .pdf-blog-hero .pdf-page-hero-copy > p:last-child {
    margin-top: 16px;
    font-size: .95rem;
    line-height: 1.48;
  }

  .pdf-blog-index { padding: 54px 0 58px; }
  .pdf-blog-grid { grid-template-columns: 1fr; }
  .pdf-blog-grid a > div { min-height: 0; }
  .pdf-blog-cta { min-height: 290px; }
}

@media (min-width: 501px) and (max-width: 700px) {
  .pdf-blog-hero > img {
    left: 0;
    width: 100%;
    object-position: 50% 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pdf-marquee-track { animation: none; }
  .pdf-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.pdf-site .btn,
  .pdf-blog-grid > a { transition: none; }
}

/* Client feedback refinements — July 2026 */
body.pdf-site {
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}

body.pdf-site h1,
body.pdf-site h2,
body.pdf-site h3,
body.pdf-site .pdf-display,
body.pdf-site .pdf-price {
  font-feature-settings: "dlig" 0, "ss01" 0, "ss02" 0;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

.pdf-eyebrow,
.pdf-marquee-track,
.pdf-how-grid article > span,
.pdf-price small,
.pdf-footer strong {
  font-family: "Lato", sans-serif;
}

body.pdf-site .btn {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
}

.pdf-package-content { top: 158px; }

.pdf-price {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.045em;
}

.pdf-colour-story .pdf-feature-grid { margin-top: 48px; }

.pdf-four-grid img { object-position: center 24%; }
.pdf-four-grid img:nth-child(2),
.pdf-four-grid img:nth-child(3) { object-position: center; }
.pdf-four-grid img:nth-child(4) { object-position: center 18%; }

.pdf-how {
  padding: 88px 0 94px;
  background: #f7e9de;
}

body.pdf-site .pdf-how h2 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: .94;
}

.pdf-how-subtitle {
  margin: 10px 0 38px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.pdf-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pdf-how-grid article {
  min-height: 285px;
  padding: 30px 28px;
  overflow: hidden;
  border: 2px solid var(--pdf-ink);
  border-radius: 36px;
  background: #fffdfa;
  box-shadow: 6px 7px 0 rgba(33, 30, 34, .12);
}

.pdf-how-grid article:nth-child(2) { background: #f0d8d1; }
.pdf-how-grid article:nth-child(3) { background: #dcebe7; }

.pdf-how-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--pdf-coral);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

body.pdf-site .pdf-how-grid h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1;
}

.pdf-how-grid p,
.pdf-how-grid li {
  color: #514b50;
  font-size: .77rem;
  line-height: 1.6;
}

.pdf-how-grid ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.pdf-team-media {
  margin: 0;
  height: 470px;
  overflow: hidden;
  border-radius: 26px;
}

.pdf-team-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 22%;
  transform: translateY(-5%) scale(1.025);
  transition: transform .25s ease-out;
}

.pdf-review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 28px;
}

.pdf-review-note {
  flex-basis: 100%;
  margin: 0;
  color: #777075;
  font-size: .7rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 820px) {
  .pdf-package-content { top: auto; }
  .pdf-how-grid { grid-template-columns: 1fr; }
  .pdf-how-grid article { min-height: 0; }
}

@media (max-width: 700px) {
  .pdf-colour-story .pdf-feature-grid { margin-top: 34px; }
  .pdf-hero-blobs { object-position: center bottom; }
  .pdf-hero-copy { top: 426px; bottom: auto; }
  .pdf-how { padding: 64px 0 70px; }
  body.pdf-site .pdf-how h2 { font-size: 2.55rem; }
  .pdf-how-subtitle { margin-bottom: 28px; }
  .pdf-team-media { height: min(112vw, 520px); }
  .pdf-team-media img { height: 110%; }
}

@media (prefers-reduced-motion: reduce) {
  .pdf-team-media img { transition: none; }
}

.pdf-gallery-hero .pdf-page-hero-copy { top: 128px; }
.pdf-gallery-hero .pdf-page-hero-copy > p:last-child { margin-bottom: 24px; }

.pdf-gallery-grid {
  width: min(1120px, calc(100% - 48px));
  gap: 16px;
}

.pdf-gallery-column { gap: 16px; }
.pdf-gallery-column img { border-radius: 28px; }

.pdf-blog-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .pdf-gallery-hero .pdf-page-hero-copy { top: 142px; }
  .pdf-gallery-grid { gap: 10px; }
  .pdf-gallery-column { gap: 10px; }
  .pdf-gallery-column img { border-radius: 16px; }
  .pdf-blog-grid { gap: 24px; }
}
