/* =====================================================================
   The Shepherd's Pie Guy — consolidated stylesheet

   All CSS for every page lives here. There is no <style> block and no
   style="" attribute left in the HTML.

   Pages do NOT share a single global theme: several redefine the same
   selectors (:root, body, .btn, .navlinks ...) with different values.
   Each page therefore carries a scope class on <html> (e.g. pg-home) and
   its rules are namespaced to it, so the pages cannot bleed into one
   another. Pages with byte-identical CSS share one scope (pg-shell).
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');
:root {
  /* Rich, warm, organic palette */
  --paper-base: #FAF6ED;       /* Cream/Eggshell paper */
  --paper-grain: #F3ECE0;      /* Slightly darker shadow paper */
  --paper-white: #FFFFFF;
  
  --ink-primary: #1F281E;      /* Rich forest charcoal */
  --ink-secondary: #485446;    /* Dark Sage gray */
  --ink-light: #F4F1EA;
  
  --accent-red: #A82823;       /* Carmine Red infill */
  --accent-red-light: rgba(168, 40, 35, 0.08);
  --accent-gold: #C69352;      /* Washi Tape Gold */
  --accent-green: #315136;     /* Brand Moss Green */
  --accent-forest: #0E351E;    /* Deep Forest Green for Logo & Headers */
  
  --border-sketchy: #CAC2B1;   /* Soft warm line for paper separators */
  --border-ink: #2C3E2D;
  
  --shadow-flat: 1px 1px 0px rgba(0,0,0,0.9);
  --shadow-paper: 2px 8px 25px rgba(27, 40, 28, 0.07);
  --shadow-polaroid: 8px 12px 24px rgba(27, 40, 28, 0.12);
  --shadow-tape: 0 1px 2px rgba(0,0,0,0.05);
  
  --transition-organic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* ---------- global at-rules (@font-face / @keyframes) ---------- */
@font-face {
  font-family: "Mistral";
  src: url("fonts/Mistral.ttf?v=1") format("truetype");
  font-display: swap;
}

@keyframes kenburns {
  from {
    transform: scale(1.02) translate(0, 0);
  }

  to {
    transform: scale(1.14) translate(-2%, -2%);
  }
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

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

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(187, 139, 60, 0.25);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(187, 139, 60, 0);
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(18%) translateX(0) scaleX(0.65) scaleY(0.9);
  }

  12% {
    opacity: 0.85;
  }

  35% {
    transform: translateY(-24%) translateX(10px) scaleX(0.95) scaleY(1.05);
  }

  55% {
    opacity: 0.7;
    transform: translateY(-55%) translateX(-16px) scaleX(1.15) scaleY(1.2);
  }

  78% {
    opacity: 0.35;
    transform: translateY(-88%) translateX(14px) scaleX(1.4) scaleY(1.35);
  }

  100% {
    opacity: 0;
    transform: translateY(-118%) translateX(-8px) scaleX(1.7) scaleY(1.5);
  }
}

@keyframes ring {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes mpulse {
  to {
    box-shadow: 0 0 0 20px rgba(187, 139, 60, 0);
  }
}

/* ═══════════════════════════════════
       PRINT
    ═══════════════════════════════════ */
@page {
  size: A4 landscape;
  margin: 0;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: rotateY(9deg) translateX(3%)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fall-and-drift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0
  }

  8% {
    opacity: .75
  }

  90% {
    opacity: .75
  }

  100% {
    transform: translateY(85vh) translateX(var(--drift)) scale(.3);
    opacity: 0
  }
}

@keyframes pinpulse {
  to {
    box-shadow: 0 0 0 18px rgba(187, 139, 60, 0)
  }
}

@keyframes flash {

  0%,
  100% {
    box-shadow: 0 26px 50px -30px rgba(0, 0, 0, .55)
  }

  50% {
    box-shadow: 0 0 0 4px var(--gold), 0 26px 50px -30px rgba(0, 0, 0, .55)
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pop {
  from {
    transform: scale(.6);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* ============================================================
   pg-shell
   404.html
   shepherds-pie-guy-blog-post.html
   shepherds-pie-guy-blog.html
   shepherds-pie-guy-cookie-policy.html
   shepherds-pie-guy-delivery-returns.html
   shepherds-pie-guy-faq.html
   shepherds-pie-guy-gallery.html
   shepherds-pie-guy-pie-spy-club.html
   shepherds-pie-guy-privacy.html
   shepherds-pie-guy-prize-draw-rules.html
   shepherds-pie-guy-search.html
   shepherds-pie-guy-terms.html
   ============================================================ */
html.pg-shell {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-shell,
html.pg-shell * {
  box-sizing: border-box
}

html.pg-shell body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

html.pg-shell h1,
html.pg-shell h2,
html.pg-shell h3,
html.pg-shell h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-shell img {
  display: block;
  max-width: 100%
}

html.pg-shell a {
  color: inherit
}

html.pg-shell .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-shell .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, border-color .3s
}

html.pg-shell .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-shell .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-shell .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-shell .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-shell .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-shell .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-shell .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-shell .btn-line:hover {
  border-color: var(--forest)
}

html.pg-shell .btn-dark {
  background: var(--forest);
  color: #fff
}

html.pg-shell .btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-2px)
}

html.pg-shell .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

html.pg-shell .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-shell .eyebrow.c {
  justify-content: center
}

html.pg-shell header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 243, 235, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-shell .site .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0
}

html.pg-shell .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-shell .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  transform: translateY(2px)
}

html.pg-shell .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

html.pg-shell .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-shell .navlinks {
  display: flex;
  gap: 30px
}

html.pg-shell .navlinks a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .92;
  position: relative;
  padding: 4px 0
}

html.pg-shell .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease)
}

html.pg-shell .navlinks a:hover::after,
html.pg-shell .navlinks a.on::after {
  width: 100%
}

html.pg-shell .navlinks a.on {
  color: var(--red)
}

html.pg-shell .nav-right {
  display: flex;
  gap: 14px;
  align-items: center
}

html.pg-shell .basket {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0
}

html.pg-shell .basket svg {
  display: block
}

html.pg-shell .basket .dot {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 10;
  padding: 0 2px;
  min-width: 17px;
  height: 17px;
  text-indent: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

html.pg-shell .nav-right .acct {
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  text-decoration: none
}

html.pg-shell .nav-right .acct:hover {
  color: var(--red)
}

@media(max-width:640px) {
  html.pg-shell .nav-right .acct {
    display: none
  }
}

html.pg-shell .burger {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--forest);
  cursor: pointer
}

@media(max-width:980px) {
  html.pg-shell .navlinks {
    display: none
  }

  html.pg-shell .burger {
    display: block
  }
}

html.pg-shell footer.site {
  background: var(--forest);
  color: #8FA389;
  padding: 48px 0 28px;
  margin-top: 24px
}

html.pg-shell .frow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

html.pg-shell .fcol h4 {
  color: #fff;
  font-family: var(--s);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px
}

html.pg-shell .fcol a {
  display: block;
  color: #B9C7B2;
  text-decoration: none;
  font-size: .9rem;
  margin: 0 0 8px
}

html.pg-shell .fcol a:hover {
  color: #fff
}

html.pg-shell .fbrand .bn {
  font-family: var(--d);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px
}

html.pg-shell .fbrand p {
  color: #8FA389;
  font-size: .9rem;
  max-width: 34ch;
  margin: 0
}

html.pg-shell .fbar {
  padding-top: 18px;
  font-size: .82rem;
  color: #8FA389
}

@media(max-width:760px) {
  html.pg-shell .frow {
    grid-template-columns: 1fr 1fr
  }

  html.pg-shell .fbrand {
    grid-column: 1/-1
  }
}

html.pg-shell .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

html.pg-shell .reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  html.pg-shell,
  html.pg-shell * {
    animation: none !important;
    transition-duration: .001ms !important
  }

  html.pg-shell .reveal {
    opacity: 1;
    transform: none
  }
}

html.pg-shell .ctaband {
  padding: 60px 0
}

html.pg-shell .ctaband .panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  padding: 50px 44px;
  text-align: center
}

html.pg-shell .ctaband .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .22), transparent 60%)
}

html.pg-shell .ctaband h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin: 6px 0 14px
}

html.pg-shell .ctaband p {
  color: rgba(234, 240, 228, .82);
  max-width: 54ch;
  margin: 0 auto 22px
}

html.pg-shell .phead {
  padding: 54px 0 10px;
  text-align: center
}

html.pg-shell .phead h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 12px 0 0
}

html.pg-shell .phead p {
  color: var(--muted);
  max-width: 56ch;
  margin: 14px auto 0;
  font-size: 1.08rem
}

html.pg-shell .gal {
  padding: 34px 0 60px
}

html.pg-shell .galgrid {
  columns: 3;
  column-gap: 16px
}

@media(max-width:860px) {
  html.pg-shell .galgrid {
    columns: 2
  }
}

@media(max-width:520px) {
  html.pg-shell .galgrid {
    columns: 1
  }
}

html.pg-shell .galitem {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 40px -28px rgba(16, 35, 26, .5)
}

html.pg-shell .galitem img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease)
}

html.pg-shell .galitem:hover img {
  transform: scale(1.05)
}

html.pg-shell .galitem .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(16, 35, 26, .78));
  color: #fff;
  font-family: var(--d);
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity .3s
}

html.pg-shell .galitem:hover .cap {
  opacity: 1
}

html.pg-shell .lb {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 9, .93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 30px
}

html.pg-shell .lb.on {
  display: flex
}

html.pg-shell .lb img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px
}

html.pg-shell .lb .x {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: 0
}

html.pg-shell .lb .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, .35);
  border: 0;
  border-radius: 50%;
  transition: background .2s
}

html.pg-shell .lb .nav:hover {
  background: rgba(0, 0, 0, .6)
}

html.pg-shell .lb .nav.prev {
  left: 24px
}

html.pg-shell .lb .nav.next {
  right: 24px
}

@media (max-width:600px) {
  html.pg-shell .lb .nav {
    width: 44px;
    height: 44px;
    font-size: 2rem
  }

  html.pg-shell .lb .nav.prev {
    left: 10px
  }

  html.pg-shell .lb .nav.next {
    right: 10px
  }
}

html.pg-shell .blog {
  padding: 34px 0 60px
}

html.pg-shell .feat-post {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px
}

html.pg-shell .feat-post .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px
}

html.pg-shell .feat-post .bd {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

html.pg-shell .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

@media(max-width:860px) {
  html.pg-shell .post-grid {
    grid-template-columns: 1fr
  }

  html.pg-shell .feat-post {
    grid-template-columns: 1fr
  }
}

html.pg-shell .pcard2 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
  text-decoration: none
}

html.pg-shell .pcard2:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-shell .pcard2 .im {
  height: 172px;
  overflow: hidden
}

html.pg-shell .pcard2 .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-shell .pcard2 .bd {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

html.pg-shell .pmeta {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  gap: 10px
}

html.pg-shell .pcard2 h3 {
  font-size: 1.3rem;
  margin: 6px 0 8px
}

html.pg-shell .pcard2 p {
  font-size: .92rem;
  color: var(--muted);
  flex: 1;
  margin: 0 0 12px
}

html.pg-shell .rmore {
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: .9rem
}

html.pg-shell .art {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0 60px
}

html.pg-shell .art .pmeta {
  justify-content: center;
  margin-bottom: 6px
}

html.pg-shell .art h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 10px 0;
  text-align: center
}

html.pg-shell .art .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 auto 26px;
  text-align: center;
  max-width: 54ch
}

html.pg-shell .art .hero-im {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px
}

html.pg-shell .art .hero-im img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

html.pg-shell .art h2 {
  font-size: 1.6rem;
  margin: 30px 0 10px
}

html.pg-shell .art p {
  margin: 0 0 18px
}

html.pg-shell .art blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--d);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 26px 0
}

html.pg-shell .art .tip {
  background: var(--green-soft);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0
}

html.pg-shell .art .tip b {
  color: var(--forest)
}

html.pg-shell .authorbox {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 24px
}

html.pg-shell .authorbox .av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--d);
  font-size: 1.4rem;
  flex: none
}

html.pg-shell .faq {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-shell .faq .grp {
  margin-bottom: 30px
}

html.pg-shell .faq .grp>h2 {
  font-size: 1.3rem;
  margin-bottom: 12px
}

html.pg-shell .fitem {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  margin-bottom: 10px;
  overflow: hidden
}

html.pg-shell .fitem>button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center
}

html.pg-shell .fitem .ic {
  transition: transform .3s;
  color: var(--gold);
  font-size: 1.3rem
}

html.pg-shell .fitem.open .ic {
  transform: rotate(45deg)
}

html.pg-shell .fitem .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease)
}

html.pg-shell .fitem .ans p {
  margin: 0 18px 16px;
  color: var(--muted)
}

html.pg-shell .fitem.open .ans {
  max-height: 320px
}

html.pg-shell .doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0 60px
}

html.pg-shell .doc .draft {
  background: #FBEFD6;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #6b4d18;
  margin: 0 0 26px
}

html.pg-shell .doc h2 {
  font-size: 1.35rem;
  margin: 28px 0 8px
}

html.pg-shell .doc p,
html.pg-shell .doc li {
  color: var(--ink)
}

html.pg-shell .doc ul {
  padding-left: 20px
}

html.pg-shell .doc a {
  color: var(--green);
  font-weight: 600
}

html.pg-shell .doc .upd {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 6px
}

html.pg-shell .e404 {
  text-align: center;
  padding: 80px 0
}

html.pg-shell .e404 .big {
  font-family: var(--d);
  font-size: clamp(5rem, 16vw, 11rem);
  color: var(--gold);
  line-height: .85
}

html.pg-shell .e404 h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 6px 0 12px
}

html.pg-shell .e404 p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 24px
}

html.pg-shell .e404 .cc {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-shell .srch {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-shell .searchbar {
  display: flex;
  gap: 10px;
  margin-bottom: 6px
}

html.pg-shell .searchbar input {
  flex: 1;
  font-size: 1.05rem;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--forest)
}

html.pg-shell .searchbar input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .15)
}

html.pg-shell .scount {
  color: var(--muted);
  font-size: .9rem;
  margin: 10px 0 14px
}

html.pg-shell .sresult {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none
}

html.pg-shell .sresult .im {
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex: none
}

html.pg-shell .sresult .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-shell .sresult h3 {
  font-size: 1.15rem
}

html.pg-shell .sresult p {
  font-size: .9rem;
  color: var(--muted);
  margin: 4px 0 0
}

html.pg-shell .skind {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red)
}

html.pg-shell .ab-hero {
  padding: 56px 0 30px
}

html.pg-shell .ab-hero .row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center
}

html.pg-shell .ab-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  margin: 14px 0 0
}

html.pg-shell .ab-hero .lede {
  font-size: 1.16rem;
  margin: 18px 0 0;
  max-width: 46ch
}

html.pg-shell .ab-hero .cc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px
}

html.pg-shell .ab-portrait {
  position: relative
}

html.pg-shell .ab-portrait .frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -38px rgba(16, 35, 26, .6);
  transform: rotate(-1.4deg)
}

html.pg-shell .ab-portrait .frame img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover
}

html.pg-shell .ab-portrait .tag {
  position: absolute;
  bottom: -16px;
  left: -14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--h);
  color: var(--red);
  font-size: 1.4rem;
  box-shadow: 0 18px 30px -18px rgba(16, 35, 26, .5)
}

html.pg-shell .ab-story {
  padding: 44px 0;
  border-top: 1px solid var(--line)
}

html.pg-shell .ab-story .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

html.pg-shell .ab-story:nth-of-type(even) .ab-im {
  order: 2
}

html.pg-shell .ab-im {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-shell .ab-im img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

html.pg-shell .ab-story h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin: 12px 0 0
}

html.pg-shell .ab-story p {
  margin: 14px 0 0
}

html.pg-shell .quote {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center
}

html.pg-shell .quote blockquote {
  font-family: var(--d);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--forest);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.25
}

html.pg-shell .quote .sig {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.8rem;
  margin-top: 18px
}

html.pg-shell .vals {
  padding: 54px 0
}

html.pg-shell .vals .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px
}

html.pg-shell .vcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px
}

html.pg-shell .vcard .ic {
  font-size: 1.6rem;
  margin-bottom: 10px
}

html.pg-shell .vcard h3 {
  font-size: 1.25rem;
  margin-bottom: 6px
}

html.pg-shell .vcard p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0
}

@media(max-width:860px) {

  html.pg-shell .ab-hero .row,
  html.pg-shell .ab-story .row,
  html.pg-shell .vals .grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  html.pg-shell .ab-story:nth-of-type(even) .ab-im {
    order: 0
  }
}

html.pg-shell .sp-hero {
  padding: 56px 0 34px;
  text-align: center
}

html.pg-shell .sp-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin: 14px 0 0
}

html.pg-shell .sp-hero .lede {
  font-size: 1.18rem;
  max-width: 54ch;
  margin: 18px auto 0
}

html.pg-shell .sp-hero .cc {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-shell .sp-prize {
  margin: 40px 0 0;
  padding: 46px 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: 22px;
  color: #EAF0E4;
  text-align: center;
  position: relative;
  overflow: hidden
}

html.pg-shell .sp-prize::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .25), transparent 60%)
}

html.pg-shell .sp-prize .lab {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--gold-soft)
}

html.pg-shell .sp-prize .big {
  font-family: var(--d);
  font-size: clamp(3rem, 9vw, 6rem);
  color: #fff;
  line-height: 1;
  margin: 8px 0
}

html.pg-shell .sp-prize .sm {
  color: rgba(234, 240, 228, .7);
  font-size: .9rem
}

html.pg-shell .perks {
  padding: 54px 0
}

html.pg-shell .perks .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px
}

html.pg-shell .pk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px
}

html.pg-shell .pk .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px
}

html.pg-shell .pk h3 {
  font-size: 1.18rem;
  margin-bottom: 6px
}

html.pg-shell .pk p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0
}

html.pg-shell .steps {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

html.pg-shell .steps .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px
}

html.pg-shell .stp {
  padding-top: 14px
}

html.pg-shell .stp .no {
  font-family: var(--d);
  font-size: 2.4rem;
  color: var(--gold)
}

html.pg-shell .stp h3 {
  font-size: 1.2rem;
  margin: 6px 0
}

html.pg-shell .stp p {
  font-size: .93rem;
  color: var(--muted);
  margin: 0
}

html.pg-shell .legalbox {
  padding: 34px 0
}

html.pg-shell .legalbox .box {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: .84rem;
  color: var(--muted);
  max-width: 80ch;
  margin: 0 auto
}

html.pg-shell .legalbox .box b {
  color: var(--forest)
}

html.pg-shell .legalbox .box a {
  color: var(--green);
  font-weight: 600
}

@media(max-width:860px) {

  html.pg-shell .perks .grid,
  html.pg-shell .steps .grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {

  html.pg-shell .perks .grid,
  html.pg-shell .steps .grid {
    grid-template-columns: 1fr
  }
}

html.pg-shell .ct-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  padding: 14px 0 60px;
  align-items: start
}

@media(max-width:880px) {
  html.pg-shell .ct-grid {
    grid-template-columns: 1fr
  }
}

html.pg-shell .ct-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px
}

html.pg-shell .ct-form .fld {
  margin-bottom: 16px
}

html.pg-shell .ct-form label {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--forest);
  margin-bottom: 7px
}

html.pg-shell .ct-form input,
html.pg-shell .ct-form textarea {
  width: 100%;
  font-family: var(--s);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--forest)
}

html.pg-shell .ct-form textarea {
  min-height: 140px;
  resize: vertical
}

html.pg-shell .ct-form input:focus,
html.pg-shell .ct-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .16)
}

html.pg-shell .ct-ok {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--forest-3);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  margin-bottom: 16px
}

html.pg-shell .ct-side {
  display: flex;
  flex-direction: column;
  gap: 14px
}

html.pg-shell .ct-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px
}

html.pg-shell .ct-card .ic {
  font-size: 1.3rem
}

html.pg-shell .ct-card h3 {
  font-size: 1.05rem;
  margin: 6px 0 4px
}

html.pg-shell .ct-card a,
html.pg-shell .ct-card p {
  color: var(--ink);
  text-decoration: none;
  margin: 0
}

html.pg-shell .ct-card .mut {
  color: var(--muted);
  font-size: .92rem
}

html.pg-shell .hand {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.6rem
}

html.pg-shell .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-shell footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-shell header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-shell .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-shell header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-shell header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-shell header.site.scrolled .in {
  height: 70px
}

html.pg-shell header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-shell .u-no-padding {
  padding: 0;
}

html.pg-shell .u-muted {
  color: var(--muted);
}

html.pg-shell .u-strong-forest {
  font-weight: 800;
  color: var(--forest);
}

html.pg-shell .u-note {
  color: var(--muted);
  font-size: .9rem;
}

html.pg-shell .u-mt-30 {
  margin-top: 30px;
}

html.pg-shell .u-no-underline {
  text-decoration: none;
}

html.pg-shell .u-title-sm {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 10px 0 12px;
}

html.pg-shell .u-muted-para {
  color: var(--muted);
  margin: 0 0 16px;
}

html.pg-shell .u-title-lg {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin: 10px 0 0;
}

html.pg-shell .u-note-spaced {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 20px;
}

html.pg-shell .u-link-green {
  color: var(--green);
  font-weight: 700;
}

html.pg-shell .u-measure-note {
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
  max-width: 60ch;
  margin: 0 auto 30px;
}

html.pg-shell .u-layer-above {
  position: relative;
  z-index: 1;
}

html.pg-shell .u-measure-center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}

html.pg-shell .u-title-md {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-top: 12px;
}

html.pg-shell .u-gold-soft {
  color: var(--gold-soft);
}

html.pg-shell .u-pb-6 {
  padding-bottom: 6px;
}

html.pg-shell .u-title-page.u-title-page {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   pg-font-test
   font-test.html
   ============================================================ */
html.pg-font-test body {
  background: #222;
  color: #fff;
  font-family: sans-serif;
  padding: 40px;
}

html.pg-font-test .test {
  font-family: "Mistral", cursive;
  font-size: 4rem;
}

html.pg-font-test .fallback {
  font-family: cursive;
  font-size: 4rem;
  color: #f88;
}

html.pg-font-test small {
  color: #8f8;
}

/* ============================================================
   pg-home
   index.html
   ============================================================ */
html.pg-home {
  --bone: #f2f3eb;
  --bone-2: #eaebe0;
  --paper: #fbfaf4;
  --forest: #10231a;
  --forest-2: #193024;
  --forest-3: #21402f;
  --green: #2f5b39;
  --green-soft: #e0e9d8;
  --red: #9a2b25;
  --red-bright: #b83328;
  --red-dark: #73201c;
  --gold: #bb8b3c;
  --gold-soft: #e7d3a6;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, 0.12);
  --d-serif: "Times New Roman", Times, serif;
  --d-sans: "Hanken Grotesk", system-ui, sans-serif;
  --hand: "Caveat", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
  --topbar-h: 38px;
}

html.pg-home,
html.pg-home * {
  box-sizing: border-box;
}

html.pg-home {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.pg-home body {
  margin: 0;
  font-family: var(--d-sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.pg-home h1,
html.pg-home h2,
html.pg-home h3,
html.pg-home h4 {
  font-family: var(--d-serif);
  font-weight: 500;
  color: var(--forest);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.012em;
}

html.pg-home a {
  color: inherit;
  text-decoration: none;
}

html.pg-home img {
  display: block;
  max-width: 100%;
}

html.pg-home .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

html.pg-home .eyebrow {
  font-family: var(--d-sans);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

html.pg-home .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

html.pg-home .eyebrow.center {
  justify-content: center;
}

html.pg-home .ar {
  font-family: var(--d-sans);
}

html.pg-home .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--d-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.4s var(--ease),
    background 0.35s,
    color 0.35s,
    box-shadow 0.4s;
  overflow: hidden;
}

html.pg-home .btn .ar {
  transition: transform 0.4s var(--ease);
}

html.pg-home .btn:hover .ar {
  transform: translateX(4px);
}

html.pg-home .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, 0.9);
}

html.pg-home .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(154, 43, 37, 0.95);
}

html.pg-home .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

html.pg-home .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

html.pg-home .btn-gold {
  background: var(--gold);
  color: #241a06;
}

html.pg-home .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-3px);
}

html.pg-home .btn-dark {
  background: var(--forest);
  color: #fff;
}

html.pg-home .btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-3px);
}

html.pg-home .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}

html.pg-home .btn-line:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

html.pg-home .topbar {
  background: var(--forest);
  color: #dce6d6;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0 16px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

html.pg-home .topbar b {
  color: var(--gold-soft);
}

html.pg-home header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 80;
  /* pre-create the backdrop render surface: promoting it lazily when .solid
         lands is what made the header hitch at the threshold */
  will-change: backdrop-filter;
  transition:
    background-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}

html.pg-home .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding 0.45s var(--ease);
}

html.pg-home header.solid {
  background-color: rgba(242, 243, 235, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

html.pg-home .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: #fff;
  transition: color 0.4s;
  white-space: nowrap;
}

html.pg-home header.solid .brand {
  color: var(--forest);
}

html.pg-home header.solid .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0;
}

html.pg-home .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(2px);
}

html.pg-home .brand .lg-main {
  font-family: var(--d-serif);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

html.pg-home .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(3px);
}

html.pg-home header.solid .nav {
  padding: 11px 0;
}

html.pg-home .navlinks {
  display: flex;
  gap: 34px;
}

html.pg-home .navlinks a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.92;
  position: relative;
  padding: 4px 0;
  transition:
    color 0.4s,
    opacity 0.3s;
}

html.pg-home header.solid .navlinks a {
  color: var(--forest);
}

html.pg-home .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

html.pg-home .navlinks a:hover::after {
  width: 100%;
}

html.pg-home .nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
}

html.pg-home header.solid .nav-right {
  color: var(--forest);
}

html.pg-home .basket {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

html.pg-home .basket svg {
  display: block;
}

html.pg-home .basket .dot {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 10;
  padding: 0 2px;
  min-width: 17px;
  height: 17px;
  text-indent: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

html.pg-home .burger {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

html.pg-home .hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

html.pg-home .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

html.pg-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 18, 12, 0.55) 0%,
      rgba(8, 18, 12, 0.05) 30%,
      rgba(8, 18, 12, 0.35) 62%,
      rgba(8, 18, 12, 0.88) 100%);
}

html.pg-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* animation: kenburns 24s ease-in-out infinite alternate;
        will-change: transform; */
}

html.pg-home .hero .wrap {
  position: relative;
  z-index: 3;
  padding-bottom: 84px;
  width: 100%;
}

html.pg-home .hero .eyebrow {
  padding: 5px 12px;
  background: var(--forest);
  color: #dce6d6;
  border-radius: 100px;
}

html.pg-home .hero .eyebrow::before {
  background: var(--gold-soft);
}

html.pg-home .hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 6.5vw, 4.5rem);
  max-width: 15ch;
  font-weight: 500;
}

html.pg-home .hero h1 .ln {
  display: block;
  overflow: hidden;
}

html.pg-home .hero h1 .ln i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}

html.pg-home .hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

html.pg-home .hero.go h1 .ln:nth-child(1) i {
  transform: none;
  transition-delay: 0.15s;
}

html.pg-home .hero.go h1 .ln:nth-child(2) i {
  transform: none;
  transition-delay: 0.3s;
}

html.pg-home .hero.go h1 .ln:nth-child(3) i {
  transform: none;
  transition-delay: 0.45s;
}

html.pg-home .hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease 0.7s,
    transform 0.9s var(--ease) 0.7s;
}

html.pg-home .hero.go .hero-foot {
  opacity: 1;
  transform: none;
}

html.pg-home .hero-foot p {
  max-width: 44ch;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

html.pg-home .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

html.pg-home .scrollcue {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

html.pg-home .scrollcue::before {
  content: "";
  writing-mode: horizontal-tb;
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
  animation: cue 2s ease-in-out infinite;
}

html.pg-home .marquee {
  background: var(--forest);
  color: var(--bone);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html.pg-home .marquee .track {
  display: inline-flex;
  gap: 48px;
  animation: scrollx 30s linear infinite;
  will-change: transform;
}

html.pg-home .marquee span {
  font-family: var(--d-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

html.pg-home .marquee span::after {
  content: "\2767";
  color: var(--gold);
  font-style: normal;
  font-size: 1rem;
}

html.pg-home .sec {
  padding: 130px 0;
  position: relative;
}

html.pg-home .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s ease,
    transform 0.9s var(--ease);
}

html.pg-home .reveal.in {
  opacity: 1;
  transform: none;
}

html.pg-home .img-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}

html.pg-home .img-reveal.in {
  clip-path: inset(0 0 0 0);
}

html.pg-home .lead {
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 54ch;
}

html.pg-home .chef {
  background: var(--forest);
  color: #e7ede2;
  overflow: hidden;
}

html.pg-home .chef .grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 74px;
  align-items: center;
}

html.pg-home .chef .eyebrow {
  color: var(--gold-soft);
}

html.pg-home .chef .eyebrow::before {
  background: var(--gold);
}

html.pg-home .chef h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 26px;
  max-width: 16ch;
}

html.pg-home .chef .quote {
  font-family: var(--d-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--gold-soft);
  line-height: 1.3;
  margin: 0 0 26px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

html.pg-home .chef p {
  color: rgba(231, 237, 226, 0.82);
  margin: 0 0 18px;
  max-width: 50ch;
}

html.pg-home .chef .sign {
  font-family: var(--hand);
  font-size: 2.4rem;
  color: #fff;
  margin-top: 8px;
}

html.pg-home .chef .role {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}

html.pg-home .chef-photo {
  position: relative;
}

html.pg-home .chef-photo .frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.7);
}

html.pg-home .chef-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

html.pg-home .chef-photo .tag {
  position: absolute;
  left: -26px;
  bottom: 42px;
  background: var(--gold);
  color: #221806;
  padding: 18px 24px;
  border-radius: 4px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  max-width: 210px;
}

html.pg-home .chef-photo .tag b {
  font-family: "Mistral", cursive;
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

html.pg-home .chef-photo .tag small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
}

html.pg-home .book {
  background: var(--bone);
}

html.pg-home .book .head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 22px;
}

html.pg-home .book .head h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 16px;
}

html.pg-home .book .head p {
  color: var(--muted);
  margin: 0 auto;
}

html.pg-home .figs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 34px auto 0;
}

html.pg-home .fig {
  padding: 0 30px;
  text-align: center;
}

html.pg-home .fig+.fig {
  border-left: 1px solid var(--line);
}

html.pg-home .fig .n {
  font-family: var(--d-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--green);
  font-weight: 600;
  line-height: 1;
}

html.pg-home .fig .l {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 7px;
}

html.pg-home .spread {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin: 64px auto 0;
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  min-height: 580px;
  box-shadow:
    0 60px 110px -54px rgba(16, 35, 26, 0.62),
    0 2px 0 rgba(16, 35, 26, 0.05);
}

html.pg-home .spread::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 54px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 35, 26, 0.09) 46%,
      rgba(16, 35, 26, 0.12) 50%,
      rgba(16, 35, 26, 0.09) 54%,
      transparent);
}

html.pg-home .leaf-photo {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

html.pg-home .leaf-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.pg-home .leaf-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 45%,
      rgba(8, 18, 12, 0.72));
}

html.pg-home .leaf-photo .cap {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}

html.pg-home .leaf-photo .cap .k {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

html.pg-home .leaf-photo .cap .k::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-soft);
}

html.pg-home .leaf-photo .cap .t {
  font-family: var(--d-serif);
  font-size: 1.7rem;
  line-height: 1.1;
  margin-top: 8px;
}

html.pg-home .leaf-text {
  padding: 50px 50px 46px;
  display: flex;
  flex-direction: column;
}

html.pg-home .contents-h {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

html.pg-home .contents-h .lbl {
  font-family: var(--d-serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--forest);
}

html.pg-home .contents-h .ln {
  flex: 1;
  height: 1px;
  background: var(--line);
}

html.pg-home .contents-h .pp {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

html.pg-home .toc {
  list-style: none;
  padding: 0;
  margin: 14px 0 auto;
}

html.pg-home .toc li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 13px 0;
  cursor: default;
  transition: color 0.25s;
}

html.pg-home .toc li+li {
  border-top: 1px solid var(--line);
}

html.pg-home .toc .rn {
  font-family: var(--d-serif);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  width: 30px;
  flex: none;
  transition: transform 0.3s var(--ease);
}

html.pg-home .toc .nm {
  font-family: var(--d-serif);
  font-size: 1.14rem;
  color: var(--forest);
  transition: color 0.25s;
}

html.pg-home .toc .dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--line);
  transform: translateY(-4px);
}

html.pg-home .toc .pg {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

html.pg-home .toc li:hover .nm {
  color: var(--green);
}

html.pg-home .toc li:hover .rn {
  transform: translateX(4px);
}

html.pg-home .toc li:hover .pg {
  color: var(--green);
}

html.pg-home .leaf-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

html.pg-home .leaf-foot .sig {
  font-family: 'Mistral', cursive;
  font-size: 1.7rem;
  color: var(--forest);
  line-height: 1;
}

html.pg-home .book-features {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 30px auto 0;
}

html.pg-home .bf {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 30px;
}

html.pg-home .bf+.bf {
  border-left: 1px solid var(--line);
}

html.pg-home .bf .ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

html.pg-home .bf b {
  font-family: var(--d-serif);
  font-size: 1.02rem;
  color: var(--forest);
  display: block;
  font-weight: 600;
  line-height: 1.1;
}

html.pg-home .bf small {
  color: var(--muted);
  font-size: 0.82rem;
}

html.pg-home .book-cta {
  text-align: center;
  margin-top: 44px;
}

html.pg-home .spread {
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s;
}

html.pg-home .spread:hover {
  transform: translateY(-5px);
  box-shadow: 0 76px 120px -54px rgba(16, 35, 26, 0.6);
}

html.pg-home .leaf-photo img {
  transition: transform 1.5s var(--ease);
}

html.pg-home .leaf-photo:hover img {
  transform: scale(1.05);
}

html.pg-home .toc li {
  opacity: 0;
  transform: translateX(14px);
  transition:
    opacity 0.55s ease,
    transform 0.6s var(--ease);
}

html.pg-home .spread.in .toc li {
  opacity: 1;
  transform: none;
}

html.pg-home .spread.in .toc li:nth-child(1) {
  transition-delay: 0.12s;
}

html.pg-home .spread.in .toc li:nth-child(2) {
  transition-delay: 0.2s;
}

html.pg-home .spread.in .toc li:nth-child(3) {
  transition-delay: 0.28s;
}

html.pg-home .spread.in .toc li:nth-child(4) {
  transition-delay: 0.36s;
}

html.pg-home .spread.in .toc li:nth-child(5) {
  transition-delay: 0.44s;
}

html.pg-home .spread.in .toc li:nth-child(6) {
  transition-delay: 0.52s;
}

html.pg-home .spread.in .toc li:nth-child(7) {
  transition-delay: 0.6s;
}

html.pg-home .contents-h .ln {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease) 0.25s;
}

html.pg-home .spread.in .contents-h .ln {
  transform: scaleX(1);
}

html.pg-home .fig {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease);
}

html.pg-home .figs.in .fig {
  opacity: 1;
  transform: none;
}

html.pg-home .figs.in .fig:nth-child(2) {
  transition-delay: 0.1s;
}

html.pg-home .figs.in .fig:nth-child(3) {
  transition-delay: 0.2s;
}

html.pg-home .book-features .bf {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease);
}

html.pg-home .book-features.in .bf {
  opacity: 1;
  transform: none;
}

html.pg-home .book-features.in .bf:nth-child(2) {
  transition-delay: 0.12s;
}

html.pg-home .book-features.in .bf:nth-child(3) {
  transition-delay: 0.24s;
}

html.pg-home .buy {
  background: var(--bone);
}

html.pg-home .buy .head {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto 30px;
}

html.pg-home .buy .head h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

html.pg-home .buy .head p {
  color: var(--muted);
  margin: 0 auto;
}

html.pg-home .member-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 910px;
  margin: 0 auto 72px;
  background: var(--forest);
  color: #eaf0e4;
  border-radius: 100px;
  padding: 16px 32px;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 24px 50px -34px rgba(16, 35, 26, 0.7);
}

html.pg-home .member-note .mn-text {
  flex: 1;
}

html.pg-home .member-note .star {
  flex: none;
  color: var(--gold);
  font-size: 1.1rem;
}

html.pg-home .member-note b {
  color: var(--gold-soft);
  font-weight: 700;
}

html.pg-home .editions {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

html.pg-home .edition {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -52px rgba(16, 35, 26, 0.6);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s;
}

html.pg-home .edition:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 90px -50px rgba(16, 35, 26, 0.55);
}

html.pg-home .edition:nth-child(even) .ed-media {
  order: 2;
}

html.pg-home .ed-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

html.pg-home .ed-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

html.pg-home .edition:hover .ed-media img {
  transform: scale(1.06);
}

html.pg-home .ed-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 55%,
      rgba(16, 35, 26, 0.18));
}

html.pg-home .ed-plate {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font-family: var(--d-serif);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

html.pg-home .ed-plate::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--gold-soft);
}

html.pg-home .ed-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--gold);
  color: #241806;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
}

html.pg-home .ed-body {
  padding: 46px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html.pg-home .ed-kicker {
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

html.pg-home .ed-kicker::after {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--gold);
}

html.pg-home .ed-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 12px 0 12px;
}

html.pg-home .ed-body .lede {
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 42ch;
}

html.pg-home .ed-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}

html.pg-home .ed-feat li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.96rem;
}

html.pg-home .ed-feat .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 1px;
}

html.pg-home .ed-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

html.pg-home .ed-price {
  font-family: var(--d-serif);
  font-weight: 600;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}

html.pg-home .ed-price small {
  display: block;
  font-family: var(--d-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

html.pg-home .ed-foot .btn {
  flex: none;
}

html.pg-home .spy {
  background: radial-gradient(120% 120% at 50% 0%,
      #21402f 0%,
      var(--forest) 55%);
  color: #eaf0e4;
  text-align: center;
  overflow: hidden;
  position: relative;
}

html.pg-home .spy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px,
      #fff 1px,
      transparent 0);
  background-size: 26px 26px;
}

html.pg-home .spy .wrap {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

html.pg-home .spy .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

html.pg-home .spy .eyebrow::before {
  background: var(--gold);
}

html.pg-home .spy .pre {
  font-size: 1.05rem;
  color: rgba(234, 240, 228, 0.78);
  max-width: 50ch;
  margin: 0 auto 6px;
}

html.pg-home .spy .grand {
  font-family: var(--d-serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(3.4rem, 12vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
  background: linear-gradient(180deg, #fff 40%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.pg-home .spy .sub {
  font-family: var(--d-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--gold-soft);
  margin: 0 0 10px;
}

html.pg-home .spy .explain {
  max-width: 60ch;
  margin: 24px auto 44px;
  color: rgba(234, 240, 228, 0.85);
  font-size: 1.08rem;
}

html.pg-home .tracker {
  max-width: 680px;
  margin: 0 auto 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 30px 34px;
  backdrop-filter: blur(4px);
}

html.pg-home .tracker .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

html.pg-home .tracker .row .now {
  font-family: var(--d-serif);
  font-size: 1.7rem;
  color: #fff;
}

html.pg-home .tracker .row .goal {
  color: var(--gold-soft);
}

html.pg-home .bar {
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

html.pg-home .bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 1.8s var(--ease);
}

html.pg-home .tracker .cap {
  margin: 16px 0 0;
  font-size: 0.82rem;
  color: rgba(234, 240, 228, 0.6);
}

html.pg-home .spy .auto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(187, 139, 60, 0.16);
  color: var(--gold-soft);
  border: 1px solid rgba(187, 139, 60, 0.4);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 30px;
}

html.pg-home .spy-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

html.pg-home .gal {
  background: var(--bone);
}

html.pg-home .gal .head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 58px;
}

html.pg-home .gal .head h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

html.pg-home .gal .head p {
  color: var(--muted);
  margin: 0;
}

html.pg-home .mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

html.pg-home .mosaic figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

html.pg-home .mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

html.pg-home .mosaic figure:hover img {
  transform: scale(1.08);
}

html.pg-home .mosaic figure::after {
  content: attr(data-cap);
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #fff;
  font-family: var(--hand);
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s,
    transform 0.4s var(--ease);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

html.pg-home .mosaic figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(8, 18, 12, 0.55));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

html.pg-home .mosaic figure:hover::after,
html.pg-home .mosaic figure:hover::before {
  opacity: 1;
  transform: none;
}

html.pg-home .g-tall {
  grid-row: span 2;
}

html.pg-home .g-wide {
  grid-column: span 2;
}

html.pg-home .join {
  background: var(--green-soft);
}

html.pg-home .join .box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  padding: 60px;
  box-shadow: 0 50px 90px -56px rgba(16, 35, 26, 0.6);
}

html.pg-home .join h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 14px;
  max-width: 16ch;
}

html.pg-home .join p {
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 46ch;
}

html.pg-home .jform .field {
  margin-bottom: 14px;
}

html.pg-home .jform label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

html.pg-home .jform input {
  width: 100%;
  font-family: var(--d-sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
}

html.pg-home .jform input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, 0.16);
}

html.pg-home .jform .btn {
  width: 100%;
  justify-content: center;
}

html.pg-home .jform .consent {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

html.pg-home .jform .consent a {
  color: var(--green);
  text-decoration: underline;
}

html.pg-home footer {
  background: var(--forest);
  color: #b9c7b2;
}

html.pg-home footer .top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 84px 0 56px;
}

html.pg-home footer .brand .m {
  color: #fff;
  font-size: 1.6rem;
}

html.pg-home footer .brand .t {
  color: #8da189;
}

html.pg-home footer .brand .m b {
  color: var(--gold);
}

html.pg-home footer p {
  color: #8da189;
  font-size: 0.94rem;
  margin: 16px 0 0;
  max-width: 30ch;
}

html.pg-home footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 18px;
  font-family: var(--d-serif);
  font-weight: 600;
}

html.pg-home footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

html.pg-home footer ul a {
  color: #b9c7b2;
  font-size: 0.94rem;
  transition: color 0.3s;
}

html.pg-home footer ul a:hover {
  color: var(--gold-soft);
}

html.pg-home footer .contact div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: 0.94rem;
}

html.pg-home footer .contact .ic {
  color: var(--gold);
  margin-top: 2px;
}

html.pg-home .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #7e9079;
}

html.pg-home .legal a {
  color: #7e9079;
}

html.pg-home .legal a:hover {
  color: #fff;
}

html.pg-home .oven-scene {
  position: relative;
  height: 235vh;
  background: radial-gradient(130% 80% at 50% 48%,
      #22432f 0%,
      var(--forest) 62%);
}

html.pg-home .pie-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  --reveal: 0;
  --steam: 0;
  --hot: 0;
}

html.pg-home .reveal-frame {
  position: relative;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  overflow: hidden;
}

html.pg-home .pie-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(calc((1 - var(--reveal)) * 42%) calc((1 - var(--reveal)) * 46%) round 0);
  transform: scale(calc(1.18 - var(--reveal) * 0.18));
}

html.pg-home .reveal-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(8, 18, 12, 0.72) 0%,
      rgba(8, 18, 12, 0.12) 22%,
      transparent 48%,
      rgba(8, 18, 12, 0.2) 68%,
      rgba(8, 18, 12, 0.85) 100%);
}

html.pg-home .r-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 13vh 24px 0;
}

html.pg-home .r-top .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

html.pg-home .r-top .eyebrow::before {
  background: var(--gold-soft);
}

html.pg-home .r-top h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  max-width: 18ch;
  margin: 0 auto 10px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

html.pg-home .r-top .hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  opacity: calc(1 - var(--reveal));
}

html.pg-home .r-top .hint::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(187, 139, 60, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

html.pg-home .steam {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: 52%;
  height: 58%;
  pointer-events: none;
  z-index: 4;
  /* fully tied to the reveal: 0 while the pie is closing/clipped,
           on once the image is fully shown, and back to 0 on scroll-up */
  opacity: var(--steam);
  mix-blend-mode: screen;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

html.pg-home .wisp {
  width: 44px;
  height: 100%;
  background: radial-gradient(60% 70% at 50% 65%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.55) 42%,
      rgba(255, 255, 255, 0) 72%);
  border-radius: 60% 60% 50% 50%;
  filter: blur(9px);
  opacity: 0;
  transform-origin: bottom center;
  animation: rise 5.5s ease-in infinite;
  will-change: transform, opacity;
}

html.pg-home .wisp:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 5s;
}

html.pg-home .wisp:nth-child(2) {
  animation-delay: 1.1s;
  animation-duration: 6.2s;
  width: 24px;
}

html.pg-home .wisp:nth-child(3) {
  animation-delay: 2.2s;
  animation-duration: 5.6s;
  width: 34px;
}

html.pg-home .wisp:nth-child(4) {
  animation-delay: 0.6s;
  animation-duration: 6.8s;
  width: 22px;
}

html.pg-home .wisp:nth-child(5) {
  animation-delay: 3s;
  animation-duration: 5.2s;
}

html.pg-home .reveal-frame:hover .wisp {
  animation-duration: 3.6s !important;
}

html.pg-home .hot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  background: rgba(187, 139, 60, 0.28);
  cursor: pointer;
  z-index: 6;
  transition:
    background 0.3s,
    transform 0.3s;
  opacity: var(--hot);
}

html.pg-home .hot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(231, 211, 166, 0.5);
  animation: ring 2.4s ease-out infinite;
}

html.pg-home .hot:hover,
html.pg-home .hot:focus-visible {
  background: var(--gold);
  transform: scale(1.18);
  outline: none;
}

html.pg-home .hot .lab {
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--paper);
  color: var(--forest);
  border-radius: 10px;
  padding: 13px 17px;
  width: max-content;
  max-width: 200px;
  text-align: left;
  box-shadow: 0 22px 40px -22px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease);
  z-index: 8;
}

html.pg-home .hot .lab b {
  font-family: var(--d-serif);
  font-size: 1.05rem;
  display: block;
  line-height: 1.15;
}

html.pg-home .hot .lab small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  display: block;
  margin-top: 3px;
}

html.pg-home .hot .lab::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--paper);
}

html.pg-home .hot:hover .lab,
html.pg-home .hot:focus-visible .lab {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

html.pg-home .hot.h1 {
  top: 40%;
  left: 50%;
  margin-left: -15px;
}

html.pg-home .hot.h2 {
  top: 56%;
  left: 39%;
}

html.pg-home .hot.h3 {
  top: 59%;
  left: 61%;
}

html.pg-home .r-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 5vw 5vh;
  flex-wrap: wrap;
  opacity: var(--reveal);
}

html.pg-home .r-cap {
  text-align: left;
}

html.pg-home .r-cap .pl {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

html.pg-home .r-cap .pl::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold-soft);
}

html.pg-home .r-cap .ti {
  font-family: var(--d-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: #fff;
  margin-top: 7px;
  text-transform: capitalize;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

html.pg-home .oven-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

html.pg-home .gal .feature-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

html.pg-home .gal .stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

html.pg-home .gtile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 230px;
}

html.pg-home .gtile.lg {
  min-height: 478px;
}

html.pg-home .gtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease);
}

html.pg-home .gtile:hover img {
  transform: scale(1.06);
}

html.pg-home .gtile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(8, 18, 12, 0.7));
  z-index: 1;
}

html.pg-home .gtile .meta {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

html.pg-home .gtile .meta .n {
  font-family: var(--d-sans);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  opacity: 0.95;
}

html.pg-home .gtile .meta .c {
  font-family: var(--d-serif);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-top: 4px;
}

html.pg-home .gtile.lg .meta .c {
  font-size: 2rem;
}

html.pg-home .gal .trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

html.pg-home .blog {
  background: var(--bone-2);
}

html.pg-home .blog .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

html.pg-home .blog .head h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
}

html.pg-home .blog .head .tbc {
  font-family: var(--hand);
  color: var(--red);
  font-size: 1.3rem;
}

html.pg-home .blog .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

html.pg-home .bcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}

html.pg-home .bcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 40px 70px -44px rgba(16, 35, 26, 0.5);
}

html.pg-home .bcard .ph {
  aspect-ratio: 16/10;
  overflow: hidden;
}

html.pg-home .bcard .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

html.pg-home .bcard:hover .ph img {
  transform: scale(1.06);
}

html.pg-home .bcard .bd {
  padding: 22px 24px 26px;
}

html.pg-home .bcard .tag {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

html.pg-home .bcard h3 {
  font-family: var(--d-serif);
  font-size: 1.3rem;
  margin: 9px 0 8px;
  line-height: 1.15;
}

html.pg-home .bcard p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

html.pg-home .join {
  background: var(--forest);
  color: #e7ede2;
}

html.pg-home .join .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 60px 110px -50px rgba(0, 0, 0, 0.7);
  background: var(--paper);
  padding: 0;
}

html.pg-home .join .visual {
  position: relative;
  min-height: 100%;
}

html.pg-home .join .visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.pg-home .join .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(16, 35, 26, 0.25),
      rgba(16, 35, 26, 0.7));
}

html.pg-home .join .visual .ov {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
}

html.pg-home .join .visual .ov .big {
  font-family: var(--d-serif);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.pg-home .join .visual .ov small {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-top: 8px;
}

html.pg-home .join .panel {
  padding: 54px 50px;
  color: var(--ink);
}

html.pg-home .join .panel .eyebrow {
  color: var(--red);
}

html.pg-home .join h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 12px;
  max-width: 16ch;
}

html.pg-home .join .panel p {
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 44ch;
}

html.pg-home .grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 120;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

html.pg-home .sig-wrap {
  margin-top: 14px;
}

html.pg-home .sig-name {
  font-family: 'Mistral', cursive;
  font-size: 2.4rem;
  color: #fff;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s var(--ease) 0.2s;
}

html.pg-home .sig-wrap.in .sig-name {
  clip-path: inset(0 0 0 0);
}

html.pg-home .sig-flourish {
  display: block;
  width: 210px;
  height: 34px;
  margin-top: -4px;
}

html.pg-home .sig-flourish path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1.5s var(--ease) 0.55s;
}

html.pg-home .sig-wrap.in .sig-flourish path {
  stroke-dashoffset: 0;
}

html.pg-home .regions {
  background: var(--forest);
  color: #e7ede2;
  overflow: hidden;
  position: relative;
}

html.pg-home .regions .head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 56px;
}

html.pg-home .regions .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

html.pg-home .regions .eyebrow::before {
  background: var(--gold);
}

html.pg-home .regions h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

html.pg-home .regions .head p {
  color: rgba(231, 237, 226, 0.8);
  margin: 0 auto;
}

html.pg-home .map-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

html.pg-home .map-stage {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

html.pg-home .map-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  user-select: none;
}

html.pg-home .mpin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: var(--gold-soft);
  border: 2px solid var(--forest);
  z-index: 3;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}

html.pg-home .mpin::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
}

html.pg-home .mpin:hover,
html.pg-home .mpin:focus,
html.pg-home .mpin.active {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.45);
  outline: none;
  z-index: 6;
}

html.pg-home .mpin.active {
  box-shadow: 0 0 0 0 rgba(187, 139, 60, 0.55);
  animation: mpulse 2.1s ease-out infinite;
}

html.pg-home .mlab {
  position: absolute;
  left: 50%;
  bottom: 175%;
  transform: translateX(-50%) translateY(4px);
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
  box-shadow: 0 12px 24px -14px rgba(0, 0, 0, 0.6);
}

html.pg-home .mlab::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--paper);
}

html.pg-home .mpin:hover .mlab,
html.pg-home .mpin:focus-visible .mlab {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

html.pg-home .region-card {
  background: var(--paper);
  color: var(--forest);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 0.6);
}

html.pg-home .region-card .rc-photo {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

html.pg-home .region-card .rc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s;
}

html.pg-home .region-card .rc-photo .rc-region {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

html.pg-home .region-card .rc-photo .rc-region::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold-soft);
}

html.pg-home .region-card .rc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(8, 18, 12, 0.6));
}

html.pg-home .region-card .rc-body {
  padding: 26px 30px 30px;
}

html.pg-home .region-card .rc-no {
  font-family: var(--d-sans);
  font-weight: 800;
  font-size: 25px;
  /* letter-spacing: 0.1em; */
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 6px;
}

html.pg-home .region-card .rc-name {
  font-family: var(--d-serif);
  font-size: 1.7rem;
  color: var(--forest);
  margin: 0 0 18px;
  line-height: 1.1;
}

html.pg-home .region-card .rc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

html.pg-home .region-card .rc-page {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
}

html.pg-home .region-card .rc-page b {
  font-family: var(--d-serif);
  font-size: 1.2rem;
  color: var(--red);
  margin-left: 6px;
}

html.pg-home .region-card .rc-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

html.pg-home .ded-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  padding: 60px 40px;
  min-height: 380px;
}

html.pg-home .ded-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.pg-home .ded-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(16, 35, 26, 0.5),
      rgba(16, 35, 26, 0.72));
}

html.pg-home .ded-page {
  z-index: 2;
}

html.pg-home .ded-page {
  position: relative;
  width: 100%;
  max-width: 261px;
  background: var(--paper);
  border-radius: 3px;
  box-shadow: 0 30px 60px -34px rgba(16, 35, 26, 0.5),
    inset 0 0 0 1px rgba(16, 35, 26, 0.05);
  padding: 14px 14px;
  text-align: center;
  color: var(--forest);
  align-self: flex-start;
  min-height: 216px;
}

html.pg-home .ded-page.lastPage {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

html.pg-home .pie-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

html.pg-home .pie-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 440;
  border-radius: 2px;
  overflow: hidden;
}

html.pg-home .pie-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

html.pg-home .pie-slide.is-active {
  opacity: 1;
}

html.pg-home .pie-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

html.pg-home .pie-tab {
  font-family: var(--s);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 9px 22px;
  border-radius: 100px;
  cursor: pointer;
  background: var(--paper);
  color: var(--forest);
  border: 1.5px solid var(--line);
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

html.pg-home .pie-tab:hover {
  border-color: var(--forest);
}

html.pg-home .pie-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #241a06;
}

html.pg-home .pie-tab.is-active:hover {
  background: #cda04f;
  border-color: #cda04f;
}

@media (prefers-reduced-motion: reduce) {
  html.pg-home .pie-slide {
    transition: none;
  }
}

html.pg-home .ded-page .ded-orn {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

html.pg-home .ded-photo {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #e7e1d2;
  border: 1px solid rgba(16, 35, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

html.pg-home .ded-photo .ded-photo-ph {
  font-family: var(--d-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

html.pg-home .ded-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}

html.pg-home .ded-photo.has img {
  opacity: 1;
}

html.pg-home .ded-photo.has .ded-photo-ph {
  display: none;
}

html.pg-home .ded-upload {
  margin: 0 0 22px;
}

html.pg-home .up-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--forest);
  border: 1.5px dashed var(--green);
  border-radius: 10px;
  padding: 13px 18px;
  transition:
    background 0.25s,
    border-color 0.25s;
  background: #fff;
}

html.pg-home .up-btn:hover {
  background: var(--green-soft);
}

html.pg-home .up-btn .up-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

html.pg-home .up-btn em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
  margin-left: 2px;
}

html.pg-home .up-hint {
  display: block;
  margin-top: 9px;
  font-size: 0.78rem;
  color: var(--muted);
}

html.pg-home .ded-small {
  font-family: var(--d-serif);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0 0 8px;
}

html.pg-home .ded-name {
  font-family: var(--d-serif);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--forest);
  margin: 0 0 8px;
  line-height: 1.1;
  min-height: 1.1em;
  transition: color 0.2s;
}

html.pg-home .ded-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
}

html.pg-home .ded-line span {
  color: var(--green);
  font-weight: 700;
}

html.pg-home .ded-rule {
  height: 1px;
  background: var(--line);
  margin: 0 auto 16px;
  width: 60%;
}

html.pg-home .ded-no {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

html.pg-home .ded-input {
  margin: 0 0 22px;
}

html.pg-home .ded-input label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

html.pg-home .ded-input input {
  width: 100%;
  font-family: var(--d-sans);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
}

html.pg-home .ded-input input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, 0.16);
}

/* ── Bespoke edition · open-book dedication ─────────────────── */
html.pg-home .ded-book {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  align-self: flex-start;
  perspective: 1600px;
}

html.pg-home .ded-book-spread {
  position: relative;
  display: flex;
  align-items: stretch;
  /* min-height: 330px; */
  min-width: 490px;
  border-radius: 5px 8px 8px 5px;
  /* pages carry their own paper background; a background here would paint
     coplanar over the rotating cover in the preserve-3d context */
  background: transparent;
  transform: rotateX(2deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  box-shadow:
    0 2px 0 0 #efe9d7,
    0 3px 0 0 rgba(16, 35, 26, 0.1),
    0 4px 0 0 #f4efe1,
    0 5px 0 0 rgba(16, 35, 26, 0.08),
    0 42px 62px -34px rgba(16, 35, 26, 0.6),
    0 16px 26px -18px rgba(16, 35, 26, 0.42);
}

/* the two facing pages */
html.pg-home .ded-book-pg {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  padding: 30px 19px 26px;
  background-color: var(--paper);
  background-image: radial-gradient(120% 78% at 50% -12%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0) 62%);
}

html.pg-home .ded-book-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--forest);
  border-radius: 5px 0 0 5px;
  /* gutter shading toward the central spine (right edge) */
  box-shadow: inset -16px 0 26px -18px rgba(16, 35, 26, 0.32);
}

html.pg-home .ded-book-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 8px 8px 0;
  box-shadow: inset 16px 0 26px -18px rgba(16, 35, 26, 0.32);
  /* sit a hair behind the spine plane so the closed cover always
     wins the z-order without fighting the right page */
  transform: translateZ(-4px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* shadow the lifting cover casts across the right page while it opens */
html.pg-home .ded-book-right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg,
      rgba(11, 26, 19, 0.55) 0%,
      rgba(11, 26, 19, 0.2) 32%,
      rgba(11, 26, 19, 0) 64%);
  opacity: 0;
}

/* central spine / fold */
html.pg-home .ded-book-spread::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 18px;
  transform: translateX(-50%) translateZ(2px);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(16, 35, 26, 0) 0%,
      rgba(16, 35, 26, 0.05) 30%,
      rgba(16, 35, 26, 0.22) 48%,
      rgba(16, 35, 26, 0.32) 50%,
      rgba(16, 35, 26, 0.22) 52%,
      rgba(16, 35, 26, 0.05) 70%,
      rgba(16, 35, 26, 0) 100%);
}

/* fine keyline framing the open spread */
html.pg-home .ded-book-spread::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  transform: translateZ(2px);
  box-shadow: inset 0 0 0 1px rgba(16, 35, 26, 0.07);
}

/* ── the hinged cover leaf (left page + book cover on its back) ── */
html.pg-home .ded-book-leaf {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  transform-origin: right center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

/* front of the leaf = the dedication page */
html.pg-home .ded-leaf-front {
  flex: 1 1 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* back of the leaf = the closed hardback cover */
html.pg-home .ded-book-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 20px;
  border-radius: 6px 4px 4px 6px;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  color: var(--gold-soft);
  background:
    radial-gradient(125% 90% at 50% 0%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0) 55%),
    linear-gradient(158deg,
      var(--forest-3) 0%,
      var(--forest) 52%,
      #0a1811 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.45),
    inset 8px 0 20px -10px rgba(0, 0, 0, 0.65),
    inset 0 0 46px rgba(0, 0, 0, 0.34);
}

/* inner gold keyline on the cover */
html.pg-home .ded-book-cover::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(191, 143, 60, 0.5);
  border-radius: 3px;
  pointer-events: none;
}

html.pg-home .ded-cover-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

html.pg-home .ded-cover-orn {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  margin: 0 0 10px;
}

html.pg-home .ded-cover-title {
  font-family: var(--d-serif);
  font-size: clamp(1.35rem, 6vw, 1.95rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #f3e6c6;
  margin: 0;
}

html.pg-home .ded-cover-rule {
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

html.pg-home .ded-cover-by {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 217, 163, 0.82);
  margin: 0;
}

/* ── opening motion (desktop, when JS marks the book animatable) ── */
html.pg-home .ded-book-leaf {
  transition: transform 1.7s cubic-bezier(0.52, 0.02, 0.16, 1);
}

html.pg-home .ded-book-spread::before,
html.pg-home .ded-book-spread::after,
html.pg-home .ded-book-right::after {
  transition: opacity 1s ease;
}

@media (min-width: 601px) {

  /* closed — applied instantly the moment JS adds .ded-anim */
  html.pg-home .ded-book.ded-anim .ded-book-leaf {
    transform: rotateY(-179deg);
    transition: none;
  }

  html.pg-home .ded-book.ded-anim .ded-book-spread::before,
  html.pg-home .ded-book.ded-anim .ded-book-spread::after {
    opacity: 0;
    transition: none;
  }

  html.pg-home .ded-book.ded-anim .ded-book-right::after {
    opacity: 1;
    transition: none;
  }

  /* open — the slow, elegant reveal once scrolled into view */
  html.pg-home .ded-book.ded-anim.is-open .ded-book-leaf {
    transform: rotateY(0deg);
    transition: transform 1.7s cubic-bezier(0.52, 0.02, 0.16, 1);
  }

  html.pg-home .ded-book.ded-anim.is-open .ded-book-spread::before,
  html.pg-home .ded-book.ded-anim.is-open .ded-book-spread::after {
    opacity: 1;
    transition: opacity 0.7s ease 1s;
  }

  html.pg-home .ded-book.ded-anim.is-open .ded-book-right::after {
    opacity: 0;
    transition: opacity 1.5s ease 0.15s;
  }
}

/* left page — the dedication */
html.pg-home .ded-book .ded-orn {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 0 11px;
}

html.pg-home .ded-book .ded-small {
  font-size: 0.8rem;
  margin: 0 0 6px;
}

html.pg-home .ded-book .ded-name {
  font-size: clamp(1.1rem, 4.7vw, 1.1rem);
  margin: 0 0 9px;
  line-height: 1.12;
  min-height: 0;
}

html.pg-home .ded-book .ded-line {
  font-size: 0.7rem;
  line-height: 1.5;
  margin: 0 0 11px;
}

html.pg-home .ded-book .ded-rule {
  width: 42%;
  margin: 0 auto 11px;
  background: linear-gradient(90deg,
      transparent,
      var(--gold),
      transparent);
}

html.pg-home .ded-book .ded-no {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

html.pg-home .ded-book .ded-recipe-no {
  font-family: var(--d-serif);
  font-weight: 700;
  font-size: clamp(1rem, 4.2vw, 1.35rem);
  color: var(--forest);
  line-height: 1.1;
  margin: 0 0 6px;
}

html.pg-home .ded-book .ded-recipe-title {
  font-family: var(--d-serif);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1.2;
}

html.pg-home .ded-book .ded-recipe-text {
  display: block;
  width: 100%;
  min-height: 78px;
  resize: vertical;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

html.pg-home .ded-book .ded-recipe-text:focus {
  border-color: var(--gold);
  background: #fff;
}

/* right page — the photograph */
html.pg-home .ded-book .ded-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0 0 11px;
  border-radius: 2px;
  background: #ece6d7;
  border: 1px solid rgba(16, 35, 26, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 18px -12px rgba(16, 35, 26, 0.55);
}

html.pg-home .ded-book .ded-photo-ph {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

html.pg-home .ded-book .ded-cap {
  margin: 0;
  text-align: center;
  font-family: var(--d-serif);
  font-style: italic;
  font-size: 0.74rem;
  color: var(--muted);
}

/* stack the spread on very small screens so it stays legible */
@media (max-width: 600px) {
  html.pg-home .ded-book-spread {
    flex-direction: column;
    transform: none;
    min-height: 0;
  }

  html.pg-home .ded-book-pg {
    padding: 18px 16px;
  }

  html.pg-home .ded-book-spread::before {
    display: none;
  }

  html.pg-home .ded-book-left {
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 -14px 22px -18px rgba(16, 35, 26, 0.28);
  }

  html.pg-home .ded-book-right {
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    transform: none;
  }

  html.pg-home .ded-book .ded-photo {
    aspect-ratio: 16 / 10;
  }

  /* stacked layout has no 3D turn — show the open spread, hide the cover */
  html.pg-home .ded-book-leaf {
    transform: none;
  }

  html.pg-home .ded-book-cover,
  html.pg-home .ded-book-right::after {
    display: none;
  }
}

@media (max-width: 980px) {
  html.pg-home .regions .map-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  html.pg-home .region-card {
    max-width: 480px;
    margin: 0 auto;
  }

  html.pg-home .ded-page {
    min-height: 300px;
  }

  html.pg-home .chef .grid,
  html.pg-home .join .box,
  html.pg-home .gal .feature-row,
  html.pg-home .edition,
  html.pg-home .spread {
    grid-template-columns: 1fr;
    gap: 0;
  }

  html.pg-home .spread::after {
    display: none;
  }

  html.pg-home .leaf-photo {
    min-height: 300px;
  }

  html.pg-home .leaf-text {
    padding: 40px 38px;
  }

  html.pg-home .edition:nth-child(even) .ed-media {
    order: 0;
  }

  html.pg-home .ed-media {
    min-height: 300px;
  }

  html.pg-home .ed-body {
    padding: 36px 34px;
  }

  html.pg-home .join .box {
    gap: 0;
  }

  html.pg-home .gal .feature-row {
    gap: 18px;
  }

  html.pg-home .gtile.lg {
    min-height: 300px;
  }

  html.pg-home .gal .stack {
    grid-template-rows: auto;
    gap: 18px;
  }

  html.pg-home .join .visual {
    min-height: 240px;
  }

  html.pg-home .join .panel {
    padding: 40px;
  }

  html.pg-home .gal .trio {
    grid-template-columns: 1fr 1fr;
  }

  html.pg-home .blog .cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  html.pg-home .chef-photo {
    max-width: 440px;
    margin: 0 auto;
  }

  html.pg-home .chef-photo .tag {
    left: 14px;
  }

  html.pg-home footer .top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  html.pg-home .navlinks {
    display: none;
  }

  html.pg-home .burger {
    display: inline-flex;
  }

  html.pg-home .sec {
    padding: 88px 0;
  }

  html.pg-home .oven-scene {
    height: auto;
  }

  html.pg-home .pie-pin {
    position: static;
    height: auto;
    padding: 60px 14px;
    --reveal: 1;
    --steam: 1;
    --hot: 1;
  }

  html.pg-home .reveal-frame {
    height: min(76vh, 560px);
  }

  html.pg-home .r-top {
    padding-top: 34px;
  }

  html.pg-home .r-bottom {
    padding: 0 24px 28px;
  }

  html.pg-home .hero {
    min-height: 600px;
  }

  html.pg-home .hero-media img {
    animation: none;
  }

  html.pg-home .figs .fig+.fig,
  html.pg-home .book-features .bf+.bf {
    border-left: none;
  }

  html.pg-home .book-features {
    flex-direction: column;
    align-items: stretch;
  }

  html.pg-home .bf {
    justify-content: center;
    border-top: 1px solid var(--line);
  }

  html.pg-home .gal .trio {
    grid-template-columns: 1fr;
  }

  html.pg-home footer .top {
    grid-template-columns: 1fr;
  }

  html.pg-home .join .panel {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

  html.pg-home,
  html.pg-home * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html.pg-home .wisp {
    opacity: 0.6 !important;
    transform: translateY(-30%) scaleY(1.2) !important;
  }

  html.pg-home .reveal,
  html.pg-home .hero-foot {
    opacity: 1 !important;
    transform: none !important;
  }

  html.pg-home .img-reveal {
    clip-path: none !important;
  }

  html.pg-home .hero h1 .ln i {
    transform: none !important;
  }

  html.pg-home .toc li,
  html.pg-home .fig,
  html.pg-home .book-features .bf {
    opacity: 1 !important;
    transform: none !important;
  }

  html.pg-home .contents-h .ln {
    transform: none !important;
  }

  html.pg-home .oven-scene {
    height: auto;
  }

  html.pg-home .pie-pin {
    position: static;
    height: auto;
    padding: 96px 0;
    --reveal: 1;
    --steam: 1;
    --hot: 1;
  }
}

html.pg-home .nav-right .acct {
  font-weight: 600;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

html.pg-home .nav-right .acct::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s;
}

html.pg-home .nav-right .acct:hover::after {
  width: 100%;
}

html.pg-home .nav-right .reg {
  font-weight: 700;
  font-size: 0.82rem;
  color: #241806;
  background: var(--gold);
  border-radius: 100px;
  padding: 9px 16px;
  text-decoration: none;
  white-space: nowrap;
}

html.pg-home .nav-right .reg:hover {
  background: #cda04f;
}

@media (max-width: 640px) {
  html.pg-home .nav-right .acct {
    display: none;
  }
}

html.pg-home .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-home footer .brand-logo {
  background-color: #f2f3eb;
  padding: 4px 8px;
  border-radius: 8px;
}

html.pg-home header .brand-logo {
  transform-origin: left center;
  transition:
    transform 0.45s var(--ease),
    margin 0.45s var(--ease);
}

/* --- extracted from inline style attributes --- */
html.pg-home .u-mx-auto.u-mx-auto.u-mx-auto {
  margin: 0 auto;
}

/* Pin positions derived from each region's real lat/lon, projected onto the
   map image (≈41.8px/° lon, ≈66.7px/° lat) and snapped onto the landmass. */
html.pg-home .pin-1 {
  left: 31.85%;
  top: 14.85%;
}

/* Western Isles */
html.pg-home .pin-2 {
  left: 46.26%;
  top: 19.09%;
}

/* Ross-shire */
html.pg-home .pin-3 {
  left: 47.86%;
  top: 26.51%;
}

/* Highlands */
html.pg-home .pin-4 {
  left: 64.67%;
  top: 23.33%;
}

/* Aberdeenshire */
html.pg-home .pin-5 {
  left: 59.87%;
  top: 33.92%;
}

/* Fife */
html.pg-home .pin-6 {
  left: 59.55%;
  top: 37.31%;
}

/* Lothian */
html.pg-home .pin-7 {
  left: 63.07%;
  top: 41.34%;
}

/* The Borders */
html.pg-home .pin-8 {
  left: 53.86%;
  top: 46.64%;
}

/* Dumfries & Galloway */
html.pg-home .pin-9 {
  left: 26.48%;
  top: 47.27%;
}

/* Londonderry */
html.pg-home .pin-10 {
  left: 61.07%;
  top: 51.94%;
}

/* Cumbria */
html.pg-home .pin-11 {
  left: 38.25%;
  top: 53.53%;
}

/* County Down */
html.pg-home .pin-12 {
  left: 49.04%;
  top: 55.48%;
}

/* Isle of Man */
html.pg-home .pin-13 {
  left: 63.47%;
  top: 59.88%;
}

/* Lancashire */
html.pg-home .pin-14 {
  left: 68.67%;
  top: 60.94%;
}

/* The Pennines */
html.pg-home .pin-15 {
  left: 69.47%;
  top: 55.65%;
}

/* Yorkshire Dales */
html.pg-home .pin-16 {
  left: 34.65%;
  top: 64.65%;
}

/* Ireland */
html.pg-home .pin-17 {
  left: 64.27%;
  top: 66.24%;
}

/* Cheshire */
html.pg-home .pin-18 {
  left: 82.68%;
  top: 67.30%;
}

/* Lincolnshire */
html.pg-home .pin-19 {
  left: 93.09%;
  top: 72.07%;
}

/* Norfolk */
html.pg-home .pin-20 {
  left: 75.88%;
  top: 72.07%;
}

/* Leicestershire */
html.pg-home .pin-21 {
  left: 55.46%;
  top: 74.72%;
}

/* Wales */
html.pg-home .pin-22 {
  left: 63.47%;
  top: 72.60%;
}

/* Shropshire */
html.pg-home .pin-23 {
  left: 85.08%;
  top: 75.25%;
}

/* Cambridgeshire */
html.pg-home .pin-24 {
  left: 93.09%;
  top: 76.84%;
}

/* Suffolk */
html.pg-home .pin-25 {
  left: 93.49%;
  top: 81.08%;
}

/* Essex Coast */
html.pg-home .pin-26 {
  left: 52.87%;
  top: 76.47%;
}

/* Ceredigion */
html.pg-home .pin-27 {
  left: 89.08%;
  top: 81.29%;
}

/* Essex */
html.pg-home .pin-28 {
  left: 51.46%;
  top: 80.02%;
}

/* Carmarthenshire */
html.pg-home .pin-29 {
  left: 51.86%;
  top: 83.20%;
}

/* Gower */
html.pg-home .pin-30 {
  left: 61.87%;
  top: 81.61%;
}

/* Monmouthshire */
html.pg-home .pin-31 {
  left: 60.73%;
  top: 89.19%;
}

/* Somerset */
html.pg-home .pin-32 {
  left: 63.63%;
  top: 86.59%;
}

/* The Mendips */
html.pg-home .pin-33 {
  left: 69.87%;
  top: 86.16%;
}

/* Wiltshire */
html.pg-home .pin-34 {
  left: 76.28%;
  top: 84.79%;
}

/* Berkshire */
html.pg-home .pin-35 {
  left: 83.08%;
  top: 80.86%;
}

/* Hertfordshire */
html.pg-home .pin-36 {
  left: 91.08%;
  top: 84.04%;
}

/* Thames Estuary */
html.pg-home .pin-37 {
  left: 84.12%;
  top: 84.15%;
}

/* London */
html.pg-home .pin-38 {
  left: 89.72%;
  top: 85.74%;
}

/* North Kent */
html.pg-home .pin-39 {
  left: 89.88%;
  top: 87.86%;
}

/* Kent */
html.pg-home .pin-40 {
  left: 94.53%;
  top: 87.22%;
}

/* East Kent */
html.pg-home .pin-41 {
  left: 81.72%;
  top: 86.90%;
}

/* Surrey */
html.pg-home .pin-42 {
  left: 74.67%;
  top: 89.02%;
}

/* Hampshire */
html.pg-home .pin-43 {
  left: 56.66%;
  top: 92.20%;
}

/* West Country */
html.pg-home .pin-44 {
  left: 46.74%;
  top: 96.03%;
}

/* Cornwall */
html.pg-home .u-row-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

html.pg-home .u-btn-gold-solid.u-btn-gold-solid {
  background: #bb8b3c;
  color: #000;
  border-color: #bb8b3c;
}

html.pg-home .u-fit-block {
  width: fit-content;
  margin-bottom: 15px;
}

html.pg-home .u-mt-22 {
  margin-top: 22px;
}

html.pg-home .u-text-white {
  color: #fff;
}

/* ============================================================
   pg-book-bespoke
   shepherds-book-bespoke.html
   ============================================================ */
html.pg-book-bespoke {
  --paper: #FAFAF5;
  --cream: #F4F2EA;
  --bone: #EDE9DC;
  --forest: #0F2118;
  --fd: #05110D;
  --green: #3D7048;
  --gold: #BF8F3C;
  --goldl: #D4A85A;
  --goldp: #EDD9A3;
  --red: #8C2318;
  --ink: #262C25;
  --inks: #454D42;
  --muted: #7A8272;
  --rule: rgba(28, 58, 40, 0.13);
  --fc: "Cormorant Garamond", serif;
  --fb: "EB Garamond", Georgia, serif;
  --fs: "Hanken Grotesk", system-ui, sans-serif;
  --fh: "Caveat", cursive;
  --ff: "Fraunces", Georgia, serif;
  --sw: 300px;
}

html.pg-book-bespoke,
html.pg-book-bespoke * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.pg-book-bespoke body {
  font-family: var(--fs);
  background: #B8B4AB;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
}

html.pg-book-bespoke .sb {
  width: var(--sw);
  background: var(--fd);
  color: #fff;
  padding: 22px 18px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 6px 0 24px rgba(0, 0, 0, .32);
  scrollbar-width: thin;
}

html.pg-book-bespoke .sb::-webkit-scrollbar {
  width: 6px;
}

html.pg-book-bespoke .sb::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
}

html.pg-book-bespoke .sb-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

html.pg-book-bespoke .sb-ic {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

html.pg-book-bespoke .sb-nm {
  font-family: var(--ff);
  font-size: .86rem;
  line-height: 1.25;
  color: var(--goldp);
}

html.pg-book-bespoke .sb-h {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  font-weight: 700;
  margin: .5rem 0 .7rem;
}

html.pg-book-bespoke .mt {
  display: flex;
  background: rgba(0, 0, 0, .22);
  border-radius: 6px;
  padding: 3px;
  margin-bottom: 16px;
}

html.pg-book-bespoke .mb {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  padding: 7px 4px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all .18s;
  font-family: var(--fs);
}

html.pg-book-bespoke .mb.on {
  background: var(--gold);
  color: #1a0d00;
}

html.pg-book-bespoke .fg {
  margin-bottom: 12px;
}

html.pg-book-bespoke .fg label {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 4px;
  font-weight: 600;
}

html.pg-book-bespoke .fg input[type=text],
html.pg-book-bespoke .fg textarea {
  width: 100%;
  padding: 7px 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  color: #fff;
  font-family: var(--fs);
  font-size: .82rem;
  resize: vertical;
}

html.pg-book-bespoke .fg input[type=file] {
  font-size: .75rem;
  color: rgba(255, 255, 255, .62);
  margin-top: 4px;
}

html.pg-book-bespoke .fn {
  font-size: .62rem;
  color: rgba(255, 255, 255, .32);
  margin-top: 3px;
}

html.pg-book-bespoke hr.d {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin: 14px 0;
}

html.pg-book-bespoke .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 700;
  font-size: .82rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
  font-family: var(--fs);
  margin-bottom: 8px;
}

html.pg-book-bespoke .bg {
  background: var(--gold);
  color: #1a0d00;
}

html.pg-book-bespoke .bg:hover {
  background: var(--goldl);
  transform: translateY(-1px);
}

html.pg-book-bespoke .bl {
  background: transparent;
  color: rgba(255, 255, 255, .76);
  border-color: rgba(255, 255, 255, .2);
}

html.pg-book-bespoke .bl:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .04);
}

html.pg-book-bespoke .vp {
  margin-left: var(--sw);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 28px 60px;
}

html.pg-book-bespoke .ph {
  width: 100%;
  max-width: 297mm;
  background: #fff;
  border-radius: 7px;
  padding: 11px 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

html.pg-book-bespoke .ph-t {
  font-family: var(--ff);
  font-size: .98rem;
  color: var(--forest);
}

html.pg-book-bespoke .ph-s {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 2px;
}

html.pg-book-bespoke .ph-b {
  font-size: .68rem;
  font-weight: 800;
  color: var(--red);
  background: #FCECEA;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

html.pg-book-bespoke .bs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 297mm;
  align-items: center;
}

html.pg-book-bespoke .pg {
  width: 100%;
  height: 150mm;
  background: var(--paper);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14), 0 2px 6px rgba(0, 0, 0, .07);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  flex-shrink: 0;
}

html.pg-book-bespoke .rf {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fs);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: .6px solid var(--rule);
  padding-top: 3px;
}

html.pg-book-bespoke .rf-dark {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fs);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border-top: .6px solid rgba(255, 255, 255, .12);
  padding-top: 3px;
}

html.pg-book-bespoke .pg.cov {
  background: var(--fd);
  color: #fff;
}

html.pg-book-bespoke .cov-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 46% 50%, rgba(191, 143, 60, .16) 0%, transparent 64%);
  pointer-events: none;
  z-index: 1;
}

html.pg-book-bespoke .cov-in {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10mm 14mm 8.5mm;
  z-index: 2;
}

html.pg-book-bespoke .cov-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  padding-bottom: 5px;
  border-bottom: .7px solid rgba(255, 255, 255, .14);
}

html.pg-book-bespoke .cov-tl {
  display: flex;
  align-items: center;
  gap: 7px;
}

html.pg-book-bespoke .cov-body {
  display: flex;
  align-items: center;
  flex: 1;
}

html.pg-book-bespoke .cov-txt {
  flex: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

html.pg-book-bespoke .cov-ey {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-bespoke .cov-title {
  font-family: var(--fc);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: .87;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
}

html.pg-book-bespoke .cov-it {
  font-family: var(--fc);
  font-size: 2.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--goldp);
  line-height: 1;
  margin-bottom: 15px;
}

html.pg-book-bespoke .cov-rr {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

html.pg-book-bespoke .cov-rl {
  height: 1px;
  width: 32px;
  background: var(--gold);
}

html.pg-book-bespoke .cov-rt {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

html.pg-book-bespoke .cov-by {
  font-family: var(--ff);
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  font-style: italic;
}

html.pg-book-bespoke .cov-by strong {
  font-family: var(--fh);
  font-size: 1.45rem;
  color: var(--goldl);
  font-style: normal;
  display: block;
  margin-top: 1px;
}

html.pg-book-bespoke .cov-img {
  flex: .88;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* dishpie.png (1402x1122) is a full photo, not a cut-out: it carries its own
   dark studio background, warm backlight, contact shadow and table reflection.
   So NO css shadow/reflection here — a drop-shadow or box-reflect would act on
   the opaque rectangle and render as a visible box.
   The one thing needed is hiding the rectangle's edges: the photo's black
   (3,1,1) is darker than the cover green (--fd #05110D), so butted straight on
   it reads as a pasted-on panel. These two gradients feather each edge and are
   intersected, so the frame dissolves into the cover. */
html.pg-book-bespoke .cov-pie {
  width: 430px;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 20%, #000 80%, transparent 100%);
  /* `intersect` is required — the default (add) unions the two gradients and
     would leave the image fully opaque, i.e. the box back again. */
  mask-composite: intersect;
}

html.pg-book-bespoke .cov-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  border-top: .7px solid rgba(255, 255, 255, .11);
  font-size: .56rem;
  color: rgba(255, 255, 255, .44);
  letter-spacing: .06em;
}

html.pg-book-bespoke .cov-bc {
  display: flex;
  align-items: center;
  gap: 6px;
}

html.pg-book-bespoke .cov-bc svg {
  width: 64px;
  height: 15px;
  fill: rgba(255, 255, 255, .44);
}

html.pg-book-bespoke .pg.ded {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20mm 30mm;
  text-align: center;
}

html.pg-book-bespoke .ded-content {
  max-width: 180mm;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.pg-book-bespoke .ded-kick {
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

html.pg-book-bespoke .ded-bq {
  font-family: var(--fc);
  font-size: 5.8rem;
  font-weight: 600;
  line-height: .75;
  color: var(--bone);
  margin-bottom: -5px;
  display: block;
}

html.pg-book-bespoke .ded-quote {
  font-family: var(--fb);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--forest);
  margin-bottom: 25px;
  max-width: 90%;
}

html.pg-book-bespoke .ded-bar {
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

html.pg-book-bespoke .ded-sn {
  font-family: var(--fh);
  font-size: 2.0rem;
  color: var(--gold);
}

html.pg-book-bespoke .ded-ss {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

html.pg-book-bespoke .pg.photo-page {
  background: var(--forest);
  padding: 0;
  position: relative;
}

html.pg-book-bespoke .photo-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

html.pg-book-bespoke .photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}

html.pg-book-bespoke .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 33, 24, 0.85) 0%, rgba(15, 33, 24, 0.3) 50%, transparent 100%),
    linear-gradient(to right, rgba(15, 33, 24, 0.4) 0%, transparent 40%);
  z-index: 1;
}

html.pg-book-bespoke .photo-caption {
  position: absolute;
  bottom: 12mm;
  left: 15mm;
  font-family: var(--fh);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

html.pg-book-bespoke .pg.toc {
  background: var(--fd);
  color: #fff;
}

html.pg-book-bespoke .toc-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-bespoke .toc-lp {
  width: 36%;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12mm;
  position: relative;
}

html.pg-book-bespoke .toc-lp::after {
  content: '';
  position: absolute;
  top: 8%;
  right: -1px;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

html.pg-book-bespoke .toc-bn {
  font-family: var(--fc);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(191, 143, 60, .12);
  line-height: .78;
  margin-bottom: 5px;
}

html.pg-book-bespoke .toc-lb {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}

html.pg-book-bespoke .toc-h {
  font-family: var(--fc);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: .93;
  color: #fff;
  margin-bottom: 11px;
  text-transform: uppercase;
}

html.pg-book-bespoke .toc-sub {
  font-family: var(--fb);
  font-size: .85rem;
  font-style: italic;
  color: rgba(255, 255, 255, .54);
  line-height: 1.5;
}

html.pg-book-bespoke .toc-rp {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9mm 12mm;
}

html.pg-book-bespoke .toc-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

html.pg-book-bespoke .toc-rg {
  margin-bottom: 13px;
}

html.pg-book-bespoke .toc-rh {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  margin-bottom: 6px;
  border-bottom: .7px solid rgba(191, 143, 60, .28);
}

html.pg-book-bespoke .toc-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
  gap: 4px;
}

html.pg-book-bespoke .toc-rn {
  font-family: var(--fb);
  font-size: .84rem;
  color: rgba(255, 255, 255, .8);
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.3;
  max-width: 74%;
}

html.pg-book-bespoke .toc-dt {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, .15);
  margin: 0 4px;
}

html.pg-book-bespoke .toc-pg {
  font-family: var(--fs);
  font-size: .66rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

html.pg-book-bespoke .toc-rf {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  font-size: .53rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .24);
  border-top: .7px solid rgba(255, 255, 255, .09);
  padding-top: 3px;
}

html.pg-book-bespoke .pg.ch {
  background: var(--forest);
  color: #fff;
  overflow: hidden;
}

html.pg-book-bespoke .ch-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-bespoke .ch-img {
  width: 54%;
  position: relative;
  overflow: hidden;
}

html.pg-book-bespoke .ch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-bespoke .ch-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 20, 16, .25) 0%, rgba(6, 20, 16, .7) 100%);
}

html.pg-book-bespoke .ch-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13mm 12mm 13mm 13mm;
  position: relative;
}

html.pg-book-bespoke .ch-txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 28%, var(--gold) 72%, transparent);
}

html.pg-book-bespoke .ch-num {
  font-family: var(--fc);
  font-size: 6.2rem;
  font-weight: 700;
  color: rgba(191, 143, 60, .14);
  line-height: .78;
  margin-bottom: 5px;
}

html.pg-book-bespoke .ch-lb {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-bespoke .ch-ti {
  font-family: var(--fc);
  font-size: 3.1rem;
  font-weight: 600;
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 12px;
}

html.pg-book-bespoke .ch-in2 {
  font-family: var(--fb);
  font-size: .88rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 16px;
}

html.pg-book-bespoke .ch-ct {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: .7px solid rgba(191, 143, 60, .34);
  padding-top: 8px;
}

html.pg-book-bespoke .pg.rp1 {
  padding: 0;
}

html.pg-book-bespoke .rp1-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

html.pg-book-bespoke .rp1-ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 17, 13, .97) 0%, rgba(5, 17, 13, .82) 25%, rgba(5, 17, 13, .3) 55%, rgba(5, 17, 13, .05) 75%, transparent 100%),
    linear-gradient(to right, rgba(5, 17, 13, .35) 0%, transparent 38%);
}

html.pg-book-bespoke .rp1-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 7mm 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

html.pg-book-bespoke .rp1-tag {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3.5px 8px;
  border-radius: 24px;
  border: .7px solid rgba(255, 255, 255, .12);
}

html.pg-book-bespoke .rp1-pg-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  font-family: var(--fs);
}

html.pg-book-bespoke .rp1-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 13mm 10mm;
}

html.pg-book-bespoke .rp1-line {
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-bespoke .rp1-region {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--goldl);
  margin-bottom: 4px;
}

html.pg-book-bespoke .rp1-name {
  font-family: var(--fc);
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  line-height: .94;
  margin-bottom: 6px;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Long recipe names: step the display size down so the full title still fits the page */
html.pg-book-bespoke .rp1-name.is-long { font-size: 2.7rem; line-height: 1; }
html.pg-book-bespoke .rp1-name.is-xlong { font-size: 2.1rem; line-height: 1.04; }

html.pg-book-bespoke .rp1-sub {
  font-family: var(--fb);
  font-size: .92rem;
  font-style: italic;
  color: rgba(255, 255, 255, .66);
  line-height: 1.38;
  max-width: 55%;
}

html.pg-book-bespoke .pg.rp2 {
  background: var(--paper);
}

html.pg-book-bespoke .rp2-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-bespoke .rp2-left {
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11mm 14mm 11mm 13mm;
}

html.pg-book-bespoke .rp2-kick {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}

html.pg-book-bespoke .rp2-title {
  font-family: var(--fc);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--forest);
  line-height: .9;
  margin-bottom: 9px;
  overflow-wrap: break-word;
  hyphens: auto;
}

html.pg-book-bespoke .rp2-title.is-long { font-size: 2.8rem; line-height: .98; }
html.pg-book-bespoke .rp2-title.is-xlong { font-size: 2.2rem; line-height: 1.04; }

html.pg-book-bespoke .rp2-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

html.pg-book-bespoke .rp2-icons {
  display: flex;
  gap: 0;
  margin-bottom: 13px;
  border-top: .7px solid var(--rule);
  border-bottom: .7px solid var(--rule);
  padding: 8px 0;
}

html.pg-book-bespoke .rp2-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 12px 0 0;
}

html.pg-book-bespoke .rp2-icon:not(:last-child) {
  border-right: .7px solid var(--rule);
  margin-right: 12px;
}

html.pg-book-bespoke .rp2-ic-svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

html.pg-book-bespoke .rp2-ic-lbl {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

html.pg-book-bespoke .rp2-ic-val {
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--ink);
  margin-top: 1px;
}

html.pg-book-bespoke .rp2-about {
  font-family: var(--fb);
  font-size: .97rem;
  font-style: italic;
  line-height: 1.68;
  color: var(--inks);
}

html.pg-book-bespoke .gfb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
  background: #E3EEE5;
  border: .7px solid rgba(61, 112, 72, .2);
  border-radius: 3px;
  padding: 2.5px 6px;
  margin-left: 10px;
  vertical-align: middle;
}

html.pg-book-bespoke .rp2-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

html.pg-book-bespoke .rp2-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-bespoke .rp2-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(to right, var(--paper), transparent);
  z-index: 1;
}

html.pg-book-bespoke .pg.rp3 {
  background: var(--cream);
  height: 220mm;
}

html.pg-book-bespoke .rp3-in {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 12mm 12mm 14mm 12mm;
  gap: 6mm;
  overflow: hidden;
}

html.pg-book-bespoke .rp3-col-h {
  font-family: var(--fs);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}

html.pg-book-bespoke .rp3-count {
  margin-left: auto;
  font-size: .56rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

html.pg-book-bespoke .rp3-block {
  display: flex;
  align-items: stretch;
  gap: 10mm;
  flex: 0 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

html.pg-book-bespoke .rp3-block.b-a {
  flex-direction: row;
  align-items: stretch;
}

html.pg-book-bespoke .rp3-block.b-b {
  flex-direction: row-reverse;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
}

html.pg-book-bespoke .rp3-block-list {
  flex: 0 0 calc(50% - 5mm);
  width: calc(50% - 5mm);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

html.pg-book-bespoke .rp3-sec-title {
  font-family: var(--fh);
  font-size: 30px;
  color: var(--forest);
  margin-bottom: 5px;
  letter-spacing: .02em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  flex: 0 0 auto;
}

html.pg-book-bespoke .ing-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 1 auto;
  min-height: 0;
  overflow: hidden;
}

html.pg-book-bespoke .ing-row {
  display: flex;
  gap: 9px;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: .5px solid rgba(28, 58, 40, .07);
}

html.pg-book-bespoke .ing-a {
  font-family: var(--fs);
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
  flex-shrink: 0;
  min-width: 54px;
  letter-spacing: .02em;
}

html.pg-book-bespoke .ing-n {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--inks);
  line-height: 1.3;
}

html.pg-book-bespoke .rp3-note {
  width: 100%;
  flex: 0 0 auto;
}

html.pg-book-bespoke .rp3-note-t {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--inks);
  line-height: 1.45;
  margin-top: 6px;
}

html.pg-book-bespoke .rp4-left .step-list {
  flex: 0 0 auto;
}

html.pg-book-bespoke .rp4-sub-h {
  font-family: var(--fs);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 4px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}

html.pg-book-bespoke .rp4-oven {
  font-family: var(--fs);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--forest);
  padding: 6px 9px;
  margin: 10px 0;
  border-left: 2px solid var(--gold);
  background: rgba(28, 58, 40, .05);
}

html.pg-book-bespoke .rp3-block-photo {
  flex: 0 0 calc(50% - 5mm);
  width: calc(50% - 5mm);
  min-height: 0;
  max-height: 62mm;
  align-self: center;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(5, 17, 13, .22);
  background: #0a1812;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.pg-book-bespoke .rp3-block-photo img {
  width: 100%;
  height: 62mm;
  max-height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

html.pg-book-bespoke .rp3-block-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 9px;
  background: rgba(5, 17, 13, .65);
  font-family: var(--fh);
  font-size: .76rem;
  color: rgba(255, 255, 255, .9);
}

html.pg-book-bespoke .pg.rp4 {
  background: var(--paper);
  height: auto;
  min-height: 150mm;
}

html.pg-book-bespoke .rp4-in {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 150mm;
}

html.pg-book-bespoke .rp4-left {
  width: 52%;
  display: flex;
  flex-direction: column;
  padding: 10mm 14mm 14mm 13mm;
}

html.pg-book-bespoke .rp4-col-h {
  font-family: var(--fs);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

html.pg-book-bespoke .step-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

html.pg-book-bespoke .step {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

html.pg-book-bespoke .step-n {
  font-family: var(--fc);
  font-size: 2.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: .8;
  width: 34px;
  text-align: right;
  flex-shrink: 0;
  padding-right: 10px;
}

html.pg-book-bespoke .step-t {
  font-family: var(--fb);
  font-size: .87rem;
  line-height: 1.52;
  color: var(--ink);
  padding-top: 3px;
}

html.pg-book-bespoke .rp4-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

html.pg-book-bespoke .rp4-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-bespoke .rp4-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(to right, var(--paper), transparent);
  z-index: 1;
}

html.pg-book-bespoke .rp4-cap {
  position: absolute;
  bottom: 11mm;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--fh);
  font-size: .85rem;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  z-index: 2;
}

html.pg-book-bespoke .rp4-qr {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: .7px solid var(--rule);
  border-radius: 4px;
  padding: 5px 8px;
  margin-top: auto;
}

html.pg-book-bespoke .rp4-qr-sq {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: #fff;
  border: 1.2px solid var(--forest);
  padding: 2px;
}

html.pg-book-bespoke .rp4-qr-sq svg {
  width: 100%;
  height: 100%;
  display: block;
}

html.pg-book-bespoke .rp4-qr-ey {
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
}

html.pg-book-bespoke .rp4-qr-ds {
  font-size: .57rem;
  color: var(--muted);
  line-height: 1.3;
}

html.pg-book-bespoke .bflag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

html.pg-book-bespoke .list-builder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

html.pg-book-bespoke .list-builder-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

html.pg-book-bespoke .list-builder-items::-webkit-scrollbar {
  width: 4px;
}

html.pg-book-bespoke .list-builder-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
}

html.pg-book-bespoke .builder-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

html.pg-book-bespoke .builder-row input[type=text] {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  color: #fff;
  font-family: var(--fs);
  font-size: .8rem;
  padding: 5px 8px;
}

html.pg-book-bespoke .builder-row input[type=text]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
}

html.pg-book-bespoke .builder-row input.ing-amt-input {
  width: 70px;
  flex-shrink: 0;
}

html.pg-book-bespoke .builder-row input.ing-name-input {
  flex: 1;
  width: auto;
  min-width: 0;
}

html.pg-book-bespoke .step-text-input {
  flex: 1;
}

html.pg-book-bespoke .btn-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}

html.pg-book-bespoke .btn-remove:hover {
  color: var(--red);
}

html.pg-book-bespoke .btn-add {
  background: rgba(255, 255, 255, .05);
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: 4px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--fs);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  margin-top: 4px;
}

html.pg-book-bespoke .btn-add:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--gold);
  color: #fff;
}

html.pg-book-bespoke .step-num-badge {
  font-family: var(--fs);
  font-size: .75rem;
  font-weight: 700;
  color: var(--goldp);
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}

@media print {
  html.pg-book-bespoke body {
    background: transparent !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html.pg-book-bespoke .sb,
  html.pg-book-bespoke .ph {
    display: none !important;
  }

  html.pg-book-bespoke .vp {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  html.pg-book-bespoke .bs {
    gap: 0 !important;
  }

  html.pg-book-bespoke .pg {
    width: 297mm !important;
    height: 210mm !important;
    page-break-before: always !important;
    page-break-inside: avoid !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html.pg-book-bespoke .pg:first-child {
    page-break-before: avoid !important;
  }
}

/* --- extracted from inline style attributes --- */
html.pg-book-bespoke .u-tag-label {
  font-family: var(--fs);
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
}

html.pg-book-bespoke .u-panel-heading {
  color: var(--gold);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(191, 143, 60, .3);
  padding-bottom: 5px;
  margin-bottom: 15px;
}

html.pg-book-bespoke .u-block {
  display: block;
}

html.pg-book-bespoke .u-contents {
  display: contents;
}

html.pg-book-bespoke .u-no-right-rule {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

html.pg-book-bespoke .u-img-center-30 {
  object-position: center 30%;
}

html.pg-book-bespoke .u-mt-auto {
  margin-top: auto;
}

html.pg-book-bespoke .u-img-center {
  object-position: center;
}

/* ============================================================
   pg-book-standard
   shepherds-book-standard.html
   ============================================================ */
html.pg-book-standard {
  --paper: #FAFAF5;
  --cream: #F4F2EA;
  --bone: #EDE9DC;
  --forest: #0F2118;
  --fd: #05110D;
  --green: #3D7048;
  --gold: #BF8F3C;
  --goldl: #D4A85A;
  --goldp: #EDD9A3;
  --red: #8C2318;
  --ink: #262C25;
  --inks: #454D42;
  --muted: #7A8272;
  --rule: rgba(28, 58, 40, 0.13);
  --fc: "Cormorant Garamond", serif;
  --fb: "EB Garamond", Georgia, serif;
  --fs: "Hanken Grotesk", system-ui, sans-serif;
  --fh: "Caveat", cursive;
  --ff: "Fraunces", Georgia, serif;
  --sw: 300px;
}

html.pg-book-standard,
html.pg-book-standard * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.pg-book-standard body {
  font-family: var(--fs);
  background: #B8B4AB;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
}

html.pg-book-standard .sb {
  width: var(--sw);
  background: var(--fd);
  color: #fff;
  padding: 22px 18px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 6px 0 24px rgba(0, 0, 0, .32);
  scrollbar-width: thin;
}

html.pg-book-standard .sb::-webkit-scrollbar {
  width: 6px;
}

html.pg-book-standard .sb::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
}

html.pg-book-standard .sb-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

html.pg-book-standard .sb-ic {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

html.pg-book-standard .sb-nm {
  font-family: var(--ff);
  font-size: .86rem;
  line-height: 1.25;
  color: var(--goldp);
}

html.pg-book-standard .sb-h {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  font-weight: 700;
  margin: .5rem 0 .7rem;
}

html.pg-book-standard .mt {
  display: flex;
  background: rgba(0, 0, 0, .22);
  border-radius: 6px;
  padding: 3px;
  margin-bottom: 16px;
}

html.pg-book-standard .mb {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  padding: 7px 4px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all .18s;
  font-family: var(--fs);
}

html.pg-book-standard .mb.on {
  background: var(--gold);
  color: #1a0d00;
}

html.pg-book-standard .fg {
  margin-bottom: 12px;
}

html.pg-book-standard .fg label {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 4px;
  font-weight: 600;
}

html.pg-book-standard .fg input[type=text],
html.pg-book-standard .fg textarea {
  width: 100%;
  padding: 7px 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  color: #fff;
  font-family: var(--fs);
  font-size: .82rem;
  resize: vertical;
}

html.pg-book-standard .fg input[type=file] {
  font-size: .75rem;
  color: rgba(255, 255, 255, .62);
  margin-top: 4px;
}

html.pg-book-standard .fn {
  font-size: .62rem;
  color: rgba(255, 255, 255, .32);
  margin-top: 3px;
}

html.pg-book-standard hr.d {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin: 14px 0;
}

html.pg-book-standard .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 700;
  font-size: .82rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
  font-family: var(--fs);
  margin-bottom: 8px;
}

html.pg-book-standard .bg {
  background: var(--gold);
  color: #1a0d00;
}

html.pg-book-standard .bg:hover {
  background: var(--goldl);
  transform: translateY(-1px);
}

html.pg-book-standard .bl {
  background: transparent;
  color: rgba(255, 255, 255, .76);
  border-color: rgba(255, 255, 255, .2);
}

html.pg-book-standard .bl:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .04);
}

html.pg-book-standard .vp {
  margin-left: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 28px 60px;
}

html.pg-book-standard .ph {
  width: 100%;
  background: #fff;
  border-radius: 7px;
  padding: 11px 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

html.pg-book-standard .ph-t {
  font-family: var(--ff);
  font-size: .98rem;
  color: var(--forest);
}

html.pg-book-standard .ph-s {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 2px;
}

html.pg-book-standard .ph-b {
  font-size: .68rem;
  font-weight: 800;
  color: var(--red);
  background: #FCECEA;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

html.pg-book-standard .bs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: center;
}

html.pg-book-standard .pg {
  width: 100%;
  height: 150mm;
  background: var(--paper);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14), 0 2px 6px rgba(0, 0, 0, .07);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  flex-shrink: 0;
}

html.pg-book-standard .rf {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fs);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: .6px solid var(--rule);
  padding-top: 3px;
}

html.pg-book-standard .rf-dark {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fs);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border-top: .6px solid rgba(255, 255, 255, .12);
  padding-top: 3px;
}

html.pg-book-standard .pg.cov {
  background: var(--fd);
  color: #fff;
}

html.pg-book-standard .cov-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 46% 50%, rgba(191, 143, 60, .16) 0%, transparent 64%);
  pointer-events: none;
  z-index: 1;
}

html.pg-book-standard .cov-in {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10mm 14mm 8.5mm;
  z-index: 2;
}

html.pg-book-standard .cov-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  padding-bottom: 5px;
  border-bottom: .7px solid rgba(255, 255, 255, .14);
}

html.pg-book-standard .cov-tl {
  display: flex;
  align-items: center;
  gap: 7px;
}

html.pg-book-standard .cov-body {
  display: flex;
  align-items: center;
  flex: 1;
}

html.pg-book-standard .cov-txt {
  flex: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

html.pg-book-standard .cov-ey {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-standard .cov-title {
  font-family: var(--fc);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: .87;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
}

html.pg-book-standard .cov-it {
  font-family: var(--fc);
  font-size: 2.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--goldp);
  line-height: 1;
  margin-bottom: 15px;
}

html.pg-book-standard .cov-rr {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

html.pg-book-standard .cov-rl {
  height: 1px;
  width: 32px;
  background: var(--gold);
}

html.pg-book-standard .cov-rt {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

html.pg-book-standard .cov-by {
  font-family: var(--ff);
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  font-style: italic;
}

html.pg-book-standard .cov-by strong {
  font-family: var(--fh);
  font-size: 1.45rem;
  color: var(--goldl);
  font-style: normal;
  display: block;
  margin-top: 1px;
}

html.pg-book-standard .cov-img {
  flex: .88;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.pg-book-standard .cov-pie {
  width: 430px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .65)) drop-shadow(0 2px 7px rgba(0, 0, 0, .4));
}

html.pg-book-standard .cov-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  border-top: .7px solid rgba(255, 255, 255, .11);
  font-size: .56rem;
  color: rgba(255, 255, 255, .44);
  letter-spacing: .06em;
}

html.pg-book-standard .cov-bc {
  display: flex;
  align-items: center;
  gap: 6px;
}

html.pg-book-standard .cov-bc svg {
  width: 64px;
  height: 15px;
  fill: rgba(255, 255, 255, .44);
}

html.pg-book-standard .rp2-logo {
  ma
}

html.pg-book-standard .pg.ded {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20mm 30mm;
  text-align: center;
}

html.pg-book-standard .ded-content {
  max-width: 180mm;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.pg-book-standard .ded-logo {
  width: 300px;
  height: auto;
  margin-bottom: 16px;
}

html.pg-book-standard .ded-kick {
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

html.pg-book-standard .ded-bq {
  font-family: var(--fc);
  font-size: 5.8rem;
  font-weight: 600;
  line-height: .75;
  color: var(--bone);
  margin-bottom: -5px;
  display: block;
}

html.pg-book-standard .ded-quote {
  font-family: var(--fb);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--forest);
  margin-bottom: 25px;
  max-width: 90%;
}

html.pg-book-standard .ded-bar {
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

html.pg-book-standard .ded-sn {
  font-family: var(--fh);
  font-size: 2.0rem;
  color: var(--gold);
}

html.pg-book-standard .ded-ss {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

html.pg-book-standard .pg.photo-page {
  background: var(--forest);
  padding: 0;
  position: relative;
}

html.pg-book-standard .photo-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

html.pg-book-standard .photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}

html.pg-book-standard .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 33, 24, 0.85) 0%, rgba(15, 33, 24, 0.3) 50%, transparent 100%),
    linear-gradient(to right, rgba(15, 33, 24, 0.4) 0%, transparent 40%);
  z-index: 1;
}

html.pg-book-standard .photo-caption {
  position: absolute;
  bottom: 12mm;
  left: 15mm;
  font-family: var(--fh);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

html.pg-book-standard .pg.toc {
  background: var(--fd);
  color: #fff;
}

html.pg-book-standard .toc-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-standard .toc-lp {
  width: 36%;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12mm;
  position: relative;
}

html.pg-book-standard .toc-lp::after {
  content: '';
  position: absolute;
  top: 8%;
  right: -1px;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

html.pg-book-standard .toc-bn {
  font-family: var(--fc);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(191, 143, 60, .12);
  line-height: .78;
  margin-bottom: 5px;
}

html.pg-book-standard .toc-lb {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}

html.pg-book-standard .toc-h {
  font-family: var(--fc);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: .93;
  color: #fff;
  margin-bottom: 11px;
  text-transform: uppercase;
}

html.pg-book-standard .toc-sub {
  font-family: var(--fb);
  font-size: .85rem;
  font-style: italic;
  color: rgba(255, 255, 255, .54);
  line-height: 1.5;
}

html.pg-book-standard .toc-rp {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9mm 12mm;
}

html.pg-book-standard .toc-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

html.pg-book-standard .toc-rg {
  margin-bottom: 13px;
}

html.pg-book-standard .toc-rh {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  margin-bottom: 6px;
  border-bottom: .7px solid rgba(191, 143, 60, .28);
}

html.pg-book-standard .toc-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
  gap: 4px;
}

html.pg-book-standard .toc-rn {
  font-family: var(--fb);
  font-size: .84rem;
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 74%;
}

html.pg-book-standard .toc-dt {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, .15);
  margin: 0 4px;
}

html.pg-book-standard .toc-pg {
  font-family: var(--fs);
  font-size: .66rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

html.pg-book-standard .toc-rf {
  position: absolute;
  bottom: 6.5mm;
  left: 12mm;
  right: 12mm;
  display: flex;
  justify-content: space-between;
  font-size: .53rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .24);
  border-top: .7px solid rgba(255, 255, 255, .09);
  padding-top: 3px;
}

html.pg-book-standard .pg.ch {
  background: var(--forest);
  color: #fff;
  overflow: hidden;
}

html.pg-book-standard .ch-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-standard .ch-img {
  width: 54%;
  position: relative;
  overflow: hidden;
}

html.pg-book-standard .ch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-standard .ch-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 20, 16, .25) 0%, rgba(6, 20, 16, .7) 100%);
}

html.pg-book-standard .ch-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13mm 12mm 13mm 13mm;
  position: relative;
}

html.pg-book-standard .ch-txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 28%, var(--gold) 72%, transparent);
}

html.pg-book-standard .ch-num {
  font-family: var(--fc);
  font-size: 6.2rem;
  font-weight: 700;
  color: rgba(191, 143, 60, .14);
  line-height: .78;
  margin-bottom: 5px;
}

html.pg-book-standard .ch-lb {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-standard .ch-ti {
  font-family: var(--fc);
  font-size: 3.1rem;
  font-weight: 600;
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 12px;
}

html.pg-book-standard .ch-in2 {
  font-family: var(--fb);
  font-size: .88rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 16px;
}

html.pg-book-standard .ch-ct {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: .7px solid rgba(191, 143, 60, .34);
  padding-top: 8px;
}

html.pg-book-standard .pg.rp1 {
  padding: 0;
}

html.pg-book-standard .rp1-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

html.pg-book-standard .rp1-ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 17, 13, .97) 0%, rgba(5, 17, 13, .82) 25%, rgba(5, 17, 13, .3) 55%, rgba(5, 17, 13, .05) 75%, transparent 100%),
    linear-gradient(to right, rgba(5, 17, 13, .35) 0%, transparent 38%);
}

html.pg-book-standard .rp1-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 7mm 12mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

html.pg-book-standard .rp1-tag {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3.5px 8px;
  border-radius: 24px;
  border: .7px solid rgba(255, 255, 255, .12);
}

html.pg-book-standard .rp1-pg-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  font-family: var(--fs);
}

html.pg-book-standard .rp1-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 13mm 10mm;
}

html.pg-book-standard .rp1-line {
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 7px;
}

html.pg-book-standard .rp1-region {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--goldl);
  margin-bottom: 4px;
}

html.pg-book-standard .rp1-name {
  font-family: var(--fc);
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  line-height: .94;
  margin-bottom: 6px;
}

html.pg-book-standard .rp1-sub {
  font-family: var(--fb);
  font-size: .92rem;
  font-style: italic;
  color: rgba(255, 255, 255, .66);
  line-height: 1.38;
  max-width: 55%;
}

html.pg-book-standard .pg.rp2 {
  background: var(--paper);
}

html.pg-book-standard .rp2-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-standard .rp2-left {
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11mm 14mm 11mm 13mm;
}

html.pg-book-standard .rp2-kick {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}

html.pg-book-standard .rp2-title {
  font-family: var(--fc);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--forest);
  line-height: .9;
  margin-bottom: 9px;
}

html.pg-book-standard .rp2-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

html.pg-book-standard .rp2-icons {
  display: flex;
  gap: 0;
  margin-bottom: 13px;
  border-top: .7px solid var(--rule);
  border-bottom: .7px solid var(--rule);
  padding: 8px 0;
}

html.pg-book-standard .rp2-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 12px 0 0;
}

html.pg-book-standard .rp2-icon:not(:last-child) {
  border-right: .7px solid var(--rule);
  margin-right: 12px;
}

html.pg-book-standard .rp2-ic-svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

html.pg-book-standard .rp2-ic-lbl {
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

html.pg-book-standard .rp2-ic-val {
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--ink);
  margin-top: 1px;
}

html.pg-book-standard .rp2-about {
  font-family: var(--fb);
  font-size: .97rem;
  font-style: italic;
  line-height: 1.68;
  color: var(--inks);
}

html.pg-book-standard .gfb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
  background: #E3EEE5;
  border: .7px solid rgba(61, 112, 72, .2);
  border-radius: 3px;
  padding: 2.5px 6px;
  margin-left: 10px;
  vertical-align: middle;
}

html.pg-book-standard .rp2-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

html.pg-book-standard .rp2-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-standard .rp2-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(to right, var(--paper), transparent);
  z-index: 1;
}

html.pg-book-standard .pg.rp3 {
  background: var(--cream);
  height: 220mm;
}

html.pg-book-standard .rp3-in {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 12mm 12mm 14mm 12mm;
  gap: 10mm;
  overflow: visible;
}

html.pg-book-standard .rp3-col-h {
  font-family: var(--fs);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html.pg-book-standard .rp3-count {
  font-size: .56rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

html.pg-book-standard .rp3-block {
  display: flex;
  align-items: stretch;
  gap: 10mm;
  flex: 1;
  min-height: 0;
  width: 100%;
}

html.pg-book-standard .rp3-block.b-a {
  flex-direction: row;
  align-items: center;
}

html.pg-book-standard .rp3-block.b-b {
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 8mm;
  margin-bottom: 8mm;
}

html.pg-book-standard .rp3-block-list {
  flex: 0 0 calc(50% - 5mm);
  width: calc(50% - 5mm);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

html.pg-book-standard .rp3-sec-title {
  font-family: var(--fh);
  font-size: 30px;
  color: var(--forest);
  margin-bottom: 5px;
  letter-spacing: .02em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
}

html.pg-book-standard .ing-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

html.pg-book-standard .ing-row {
  display: flex;
  gap: 9px;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: .5px solid rgba(28, 58, 40, .07);
}

html.pg-book-standard .ing-a {
  font-family: var(--fs);
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
  flex-shrink: 0;
  min-width: 54px;
  letter-spacing: .02em;
}

html.pg-book-standard .ing-n {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--inks);
  line-height: 1.3;
}

html.pg-book-standard .rp3-block-photo {
  flex: 0 0 calc(50% - 5mm);
  width: calc(50% - 5mm);
  position: relative;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(5, 17, 13, .22);
  background: #0a1812;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.pg-book-standard .rp3-block-photo img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

html.pg-book-standard .rp3-block-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 9px;
  background: rgba(5, 17, 13, .65);
  font-family: var(--fh);
  font-size: .76rem;
  color: rgba(255, 255, 255, .9);
}

html.pg-book-standard .pg.rp4 {
  background: var(--paper);
}

html.pg-book-standard .rp4-in {
  position: absolute;
  inset: 0;
  display: flex;
}

html.pg-book-standard .rp4-left {
  width: 52%;
  display: flex;
  flex-direction: column;
  padding: 10mm 14mm 10mm 13mm;
}

html.pg-book-standard .rp4-col-h {
  font-family: var(--fs);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

html.pg-book-standard .step-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

html.pg-book-standard .step {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

html.pg-book-standard .step-n {
  font-family: var(--fc);
  font-size: 2.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: .8;
  width: 34px;
  text-align: right;
  flex-shrink: 0;
  padding-right: 10px;
}

html.pg-book-standard .step-t {
  font-family: var(--fb);
  font-size: .87rem;
  line-height: 1.52;
  color: var(--ink);
  padding-top: 3px;
}

html.pg-book-standard .rp4-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

html.pg-book-standard .rp4-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.pg-book-standard .rp4-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(to right, var(--paper), transparent);
  z-index: 1;
}

html.pg-book-standard .rp4-cap {
  position: absolute;
  bottom: 11mm;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--fh);
  font-size: .85rem;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  z-index: 2;
}

html.pg-book-standard .rp4-qr {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: .7px solid var(--rule);
  border-radius: 4px;
  padding: 5px 8px;
  margin-top: auto;
}

html.pg-book-standard .rp4-qr-sq {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: #fff;
  border: 1.2px solid var(--forest);
  padding: 2px;
}

html.pg-book-standard .rp4-qr-sq svg {
  width: 100%;
  height: 100%;
  display: block;
}

html.pg-book-standard .rp4-qr-ey {
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
}

html.pg-book-standard .rp4-qr-ds {
  font-size: .57rem;
  color: var(--muted);
  line-height: 1.3;
}

html.pg-book-standard .bflag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

html.pg-book-standard .list-builder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

html.pg-book-standard .list-builder-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

html.pg-book-standard .list-builder-items::-webkit-scrollbar {
  width: 4px;
}

html.pg-book-standard .list-builder-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
}

html.pg-book-standard .builder-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

html.pg-book-standard .builder-row input[type=text] {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  color: #fff;
  font-family: var(--fs);
  font-size: .8rem;
  padding: 5px 8px;
}

html.pg-book-standard .builder-row input[type=text]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
}

html.pg-book-standard .ing-amt-input {
  width: 70px;
  flex-shrink: 0;
}

html.pg-book-standard .ing-name-input {
  flex: 1;
}

html.pg-book-standard .step-text-input {
  flex: 1;
}

html.pg-book-standard .btn-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}

html.pg-book-standard .btn-remove:hover {
  color: var(--red);
}

html.pg-book-standard .btn-add {
  background: rgba(255, 255, 255, .05);
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: 4px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--fs);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  margin-top: 4px;
}

html.pg-book-standard .btn-add:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--gold);
  color: #fff;
}

html.pg-book-standard .step-num-badge {
  font-family: var(--fs);
  font-size: .75rem;
  font-weight: 700;
  color: var(--goldp);
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}

@media print {
  html.pg-book-standard body {
    background: transparent !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html.pg-book-standard .sb,
  html.pg-book-standard .ph {
    display: none !important;
  }

  html.pg-book-standard .vp {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  html.pg-book-standard .bs {
    gap: 0 !important;
  }

  html.pg-book-standard .pg {
    width: 297mm !important;
    height: 210mm !important;
    page-break-before: always !important;
    page-break-inside: avoid !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html.pg-book-standard .pg:first-child {
    page-break-before: avoid !important;
  }
}

/* --- extracted from inline style attributes --- */
html.pg-book-standard .u-contents {
  display: contents;
}

/* ============================================================
   pg-about
   shepherds-pie-guy-about.html
   ============================================================ */
html.pg-about {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-about,
html.pg-about * {
  box-sizing: border-box
}

html.pg-about body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

html.pg-about h1,
html.pg-about h2,
html.pg-about h3,
html.pg-about h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-about img {
  display: block;
  max-width: 100%
}

html.pg-about a {
  color: inherit
}

html.pg-about .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-about .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, border-color .3s
}

html.pg-about .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-about .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-about .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-about .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-about .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-about .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-about .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-about .btn-line:hover {
  border-color: var(--forest)
}

html.pg-about .btn-dark {
  background: var(--forest);
  color: #fff
}

html.pg-about .btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-2px)
}

html.pg-about .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

html.pg-about .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-about .eyebrow.c {
  justify-content: center
}

html.pg-about header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 243, 235, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-about .site .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0
}

html.pg-about .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-about .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  transform: translateY(2px)
}

html.pg-about .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

html.pg-about .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-about .navlinks {
  display: flex;
  gap: 30px
}

html.pg-about .navlinks a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .92;
  position: relative;
  padding: 4px 0
}

html.pg-about .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease)
}

html.pg-about .navlinks a:hover::after,
html.pg-about .navlinks a.on::after {
  width: 100%
}

html.pg-about .navlinks a.on {
  color: var(--red)
}

html.pg-about .nav-right {
  display: flex;
  gap: 14px;
  align-items: center
}

html.pg-about .basket {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0
}

html.pg-about .basket svg {
  display: block
}

html.pg-about .basket .dot {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 10;
  padding: 0 2px;
  min-width: 17px;
  height: 17px;
  text-indent: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

html.pg-about .nav-right .acct {
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  text-decoration: none
}

html.pg-about .nav-right .acct:hover {
  color: var(--red)
}

@media(max-width:640px) {
  html.pg-about .nav-right .acct {
    display: none
  }
}

html.pg-about .burger {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--forest);
  cursor: pointer
}

@media(max-width:980px) {
  html.pg-about .navlinks {
    display: none
  }

  html.pg-about .burger {
    display: block
  }
}

html.pg-about footer.site {
  background: var(--forest);
  color: #8FA389;
  padding: 48px 0 28px;
  margin-top: 24px
}

html.pg-about .frow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

html.pg-about .fcol h4 {
  color: #fff;
  font-family: var(--s);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px
}

html.pg-about .fcol a {
  display: block;
  color: #B9C7B2;
  text-decoration: none;
  font-size: .9rem;
  margin: 0 0 8px
}

html.pg-about .fcol a:hover {
  color: #fff
}

html.pg-about .fbrand .bn {
  font-family: var(--d);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px
}

html.pg-about .fbrand p {
  color: #8FA389;
  font-size: .9rem;
  max-width: 34ch;
  margin: 0
}

html.pg-about .fbar {
  padding-top: 18px;
  font-size: .82rem;
  color: #8FA389
}

@media(max-width:760px) {
  html.pg-about .frow {
    grid-template-columns: 1fr 1fr
  }

  html.pg-about .fbrand {
    grid-column: 1/-1
  }
}

html.pg-about .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

html.pg-about .reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  html.pg-about,
  html.pg-about * {
    animation: none !important;
    transition-duration: .001ms !important
  }

  html.pg-about .reveal {
    opacity: 1;
    transform: none
  }
}

html.pg-about .ctaband {
  padding: 60px 0
}

html.pg-about .ctaband .panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  padding: 50px 44px;
  text-align: center
}

html.pg-about .ctaband .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .22), transparent 60%)
}

html.pg-about .ctaband h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin: 6px 0 14px
}

html.pg-about .ctaband p {
  color: rgba(234, 240, 228, .82);
  max-width: 54ch;
  margin: 0 auto 22px
}

html.pg-about .phead {
  padding: 54px 0 10px;
  text-align: center
}

html.pg-about .phead h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 12px 0 0
}

html.pg-about .phead p {
  color: var(--muted);
  max-width: 56ch;
  margin: 14px auto 0;
  font-size: 1.08rem
}

html.pg-about .gal {
  padding: 34px 0 60px
}

html.pg-about .galgrid {
  columns: 3;
  column-gap: 16px
}

@media(max-width:860px) {
  html.pg-about .galgrid {
    columns: 2
  }
}

@media(max-width:520px) {
  html.pg-about .galgrid {
    columns: 1
  }
}

html.pg-about .galitem {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 40px -28px rgba(16, 35, 26, .5)
}

html.pg-about .galitem img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease)
}

html.pg-about .galitem:hover img {
  transform: scale(1.05)
}

html.pg-about .galitem .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(16, 35, 26, .78));
  color: #fff;
  font-family: var(--d);
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity .3s
}

html.pg-about .galitem:hover .cap {
  opacity: 1
}

html.pg-about .lb {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 9, .93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 30px
}

html.pg-about .lb.on {
  display: flex
}

html.pg-about .lb img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px
}

html.pg-about .lb .x {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: 0
}

html.pg-about .blog {
  padding: 34px 0 60px
}

html.pg-about .feat-post {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px
}

html.pg-about .feat-post .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px
}

html.pg-about .feat-post .bd {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

html.pg-about .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

@media(max-width:860px) {
  html.pg-about .post-grid {
    grid-template-columns: 1fr
  }

  html.pg-about .feat-post {
    grid-template-columns: 1fr
  }
}

html.pg-about .pcard2 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
  text-decoration: none
}

html.pg-about .pcard2:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-about .pcard2 .im {
  height: 172px;
  overflow: hidden
}

html.pg-about .pcard2 .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-about .pcard2 .bd {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

html.pg-about .pmeta {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  gap: 10px
}

html.pg-about .pcard2 h3 {
  font-size: 1.3rem;
  margin: 6px 0 8px
}

html.pg-about .pcard2 p {
  font-size: .92rem;
  color: var(--muted);
  flex: 1;
  margin: 0 0 12px
}

html.pg-about .rmore {
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: .9rem
}

html.pg-about .art {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0 60px
}

html.pg-about .art .pmeta {
  justify-content: center;
  margin-bottom: 6px
}

html.pg-about .art h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 10px 0;
  text-align: center
}

html.pg-about .art .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 auto 26px;
  text-align: center;
  max-width: 54ch
}

html.pg-about .art .hero-im {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px
}

html.pg-about .art .hero-im img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

html.pg-about .art h2 {
  font-size: 1.6rem;
  margin: 30px 0 10px
}

html.pg-about .art p {
  margin: 0 0 18px
}

html.pg-about .art blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--d);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 26px 0
}

html.pg-about .art .tip {
  background: var(--green-soft);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0
}

html.pg-about .art .tip b {
  color: var(--forest)
}

html.pg-about .authorbox {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 24px
}

html.pg-about .authorbox .av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--d);
  font-size: 1.4rem;
  flex: none
}

html.pg-about .faq {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-about .faq .grp {
  margin-bottom: 30px
}

html.pg-about .faq .grp>h2 {
  font-size: 1.3rem;
  margin-bottom: 12px
}

html.pg-about .fitem {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  margin-bottom: 10px;
  overflow: hidden
}

html.pg-about .fitem>button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center
}

html.pg-about .fitem .ic {
  transition: transform .3s;
  color: var(--gold);
  font-size: 1.3rem
}

html.pg-about .fitem.open .ic {
  transform: rotate(45deg)
}

html.pg-about .fitem .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease)
}

html.pg-about .fitem .ans p {
  margin: 0 18px 16px;
  color: var(--muted)
}

html.pg-about .fitem.open .ans {
  max-height: 320px
}

html.pg-about .doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0 60px
}

html.pg-about .doc .draft {
  background: #FBEFD6;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #6b4d18;
  margin: 0 0 26px
}

html.pg-about .doc h2 {
  font-size: 1.35rem;
  margin: 28px 0 8px
}

html.pg-about .doc p,
html.pg-about .doc li {
  color: var(--ink)
}

html.pg-about .doc ul {
  padding-left: 20px
}

html.pg-about .doc a {
  color: var(--green);
  font-weight: 600
}

html.pg-about .doc .upd {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 6px
}

html.pg-about .e404 {
  text-align: center;
  padding: 80px 0
}

html.pg-about .e404 .big {
  font-family: var(--d);
  font-size: clamp(5rem, 16vw, 11rem);
  color: var(--gold);
  line-height: .85
}

html.pg-about .e404 h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 6px 0 12px
}

html.pg-about .e404 p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 24px
}

html.pg-about .e404 .cc {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-about .srch {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-about .searchbar {
  display: flex;
  gap: 10px;
  margin-bottom: 6px
}

html.pg-about .searchbar input {
  flex: 1;
  font-size: 1.05rem;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--forest)
}

html.pg-about .searchbar input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .15)
}

html.pg-about .scount {
  color: var(--muted);
  font-size: .9rem;
  margin: 10px 0 14px
}

html.pg-about .sresult {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none
}

html.pg-about .sresult .im {
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex: none
}

html.pg-about .sresult .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-about .sresult h3 {
  font-size: 1.15rem
}

html.pg-about .sresult p {
  font-size: .9rem;
  color: var(--muted);
  margin: 4px 0 0
}

html.pg-about .skind {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red)
}

html.pg-about .ab-hero {
  padding: 56px 0 30px
}

html.pg-about .ab-hero .row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center
}

html.pg-about .ab-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  margin: 14px 0 0
}

html.pg-about .ab-hero .lede {
  font-size: 1.16rem;
  margin: 18px 0 0;
  max-width: 46ch
}

html.pg-about .ab-hero .cc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px
}

html.pg-about .ab-portrait {
  position: relative
}

html.pg-about .ab-portrait .frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -38px rgba(16, 35, 26, .6);
  transform: rotate(0deg)
}

html.pg-about .ab-portrait .frame img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover
}

html.pg-about .ab-portrait .tag {
  position: absolute;
  bottom: -16px;
  left: -14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--h);
  color: var(--red);
  font-size: 1.4rem;
  box-shadow: 0 18px 30px -18px rgba(16, 35, 26, .5)
}

html.pg-about .ab-story {
  padding: 44px 0;
  border-top: 1px solid var(--line)
}

html.pg-about .ab-story .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

html.pg-about .ab-story:nth-of-type(even) .ab-im {
  order: 2
}

html.pg-about .ab-im {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-about .ab-im img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

html.pg-about .ab-story h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin: 12px 0 0
}

html.pg-about .ab-story p {
  margin: 14px 0 0
}

html.pg-about .quote {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center
}

html.pg-about .quote blockquote {
  font-family: var(--d);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--forest);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.25
}

html.pg-about .quote .sig {
  font-family: 'Mistral', cursive;
  color: var(--red);
  font-size: 1.8rem;
  margin-top: 18px
}

html.pg-about .vals {
  padding: 54px 0
}

html.pg-about .vals .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px
}

html.pg-about .vcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px
}

html.pg-about .vcard .ic {
  font-size: 1.6rem;
  margin-bottom: 10px
}

html.pg-about .vcard h3 {
  font-size: 1.25rem;
  margin-bottom: 6px
}

html.pg-about .vcard p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0
}

@media(max-width:860px) {

  html.pg-about .ab-hero .row,
  html.pg-about .ab-story .row,
  html.pg-about .vals .grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  html.pg-about .ab-story:nth-of-type(even) .ab-im {
    order: 0
  }
}

html.pg-about .sp-hero {
  padding: 56px 0 34px;
  text-align: center
}

html.pg-about .sp-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin: 14px 0 0
}

html.pg-about .sp-hero .lede {
  font-size: 1.18rem;
  max-width: 54ch;
  margin: 18px auto 0
}

html.pg-about .sp-hero .cc {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-about .sp-prize {
  margin: 40px 0 0;
  padding: 46px 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: 22px;
  color: #EAF0E4;
  text-align: center;
  position: relative;
  overflow: hidden
}

html.pg-about .sp-prize::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .25), transparent 60%)
}

html.pg-about .sp-prize .lab {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--gold-soft)
}

html.pg-about .sp-prize .big {
  font-family: var(--d);
  font-size: clamp(3rem, 9vw, 6rem);
  color: #fff;
  line-height: 1;
  margin: 8px 0
}

html.pg-about .sp-prize .sm {
  color: rgba(234, 240, 228, .7);
  font-size: .9rem
}

html.pg-about .perks {
  padding: 54px 0
}

html.pg-about .perks .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px
}

html.pg-about .pk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px
}

html.pg-about .pk .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px
}

html.pg-about .pk h3 {
  font-size: 1.18rem;
  margin-bottom: 6px
}

html.pg-about .pk p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0
}

html.pg-about .steps {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

html.pg-about .steps .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px
}

html.pg-about .stp {
  padding-top: 14px
}

html.pg-about .stp .no {
  font-family: var(--d);
  font-size: 2.4rem;
  color: var(--gold)
}

html.pg-about .stp h3 {
  font-size: 1.2rem;
  margin: 6px 0
}

html.pg-about .stp p {
  font-size: .93rem;
  color: var(--muted);
  margin: 0
}

html.pg-about .legalbox {
  padding: 34px 0
}

html.pg-about .legalbox .box {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: .84rem;
  color: var(--muted);
  max-width: 80ch;
  margin: 0 auto
}

html.pg-about .legalbox .box b {
  color: var(--forest)
}

html.pg-about .legalbox .box a {
  color: var(--green);
  font-weight: 600
}

@media(max-width:860px) {

  html.pg-about .perks .grid,
  html.pg-about .steps .grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {

  html.pg-about .perks .grid,
  html.pg-about .steps .grid {
    grid-template-columns: 1fr
  }
}

html.pg-about .ct-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  padding: 14px 0 60px;
  align-items: start
}

@media(max-width:880px) {
  html.pg-about .ct-grid {
    grid-template-columns: 1fr
  }
}

html.pg-about .ct-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px
}

html.pg-about .ct-form .fld {
  margin-bottom: 16px
}

html.pg-about .ct-form label {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--forest);
  margin-bottom: 7px
}

html.pg-about .ct-form input,
html.pg-about .ct-form textarea {
  width: 100%;
  font-family: var(--s);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--forest)
}

html.pg-about .ct-form textarea {
  min-height: 140px;
  resize: vertical
}

html.pg-about .ct-form input:focus,
html.pg-about .ct-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .16)
}

html.pg-about .ct-ok {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--forest-3);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  margin-bottom: 16px
}

html.pg-about .ct-side {
  display: flex;
  flex-direction: column;
  gap: 14px
}

html.pg-about .ct-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px
}

html.pg-about .ct-card .ic {
  font-size: 1.3rem
}

html.pg-about .ct-card h3 {
  font-size: 1.05rem;
  margin: 6px 0 4px
}

html.pg-about .ct-card a,
html.pg-about .ct-card p {
  color: var(--ink);
  text-decoration: none;
  margin: 0
}

html.pg-about .ct-card .mut {
  color: var(--muted);
  font-size: .92rem
}

html.pg-about .hand {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.6rem
}

html.pg-about .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-about footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-about header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-about .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-about header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-about header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-about header.site.scrolled .in {
  height: 70px
}

html.pg-about header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-about .u-text-red {
  color: var(--red);
}

html.pg-about .u-measure-center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}

html.pg-about .u-title-md {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-top: 12px;
}

html.pg-about .u-gold-soft {
  color: var(--gold-soft);
}

/* ============================================================
   pg-contact
   shepherds-pie-guy-contact.html
   ============================================================ */
html.pg-contact {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-contact,
html.pg-contact * {
  box-sizing: border-box
}

html.pg-contact body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

html.pg-contact h1,
html.pg-contact h2,
html.pg-contact h3,
html.pg-contact h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-contact img {
  display: block;
  max-width: 100%
}

html.pg-contact a {
  color: inherit
}

html.pg-contact .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-contact .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, border-color .3s
}

html.pg-contact .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-contact .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-contact .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-contact .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-contact .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-contact .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-contact .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-contact .btn-line:hover {
  border-color: var(--forest)
}

html.pg-contact .btn-dark {
  background: var(--forest);
  color: #fff
}

html.pg-contact .btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-2px)
}

html.pg-contact .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

html.pg-contact .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-contact .eyebrow.c {
  justify-content: center
}

html.pg-contact header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 243, 235, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-contact .site .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0
}

html.pg-contact .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-contact .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  transform: translateY(2px)
}

html.pg-contact .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

html.pg-contact .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-contact .navlinks {
  display: flex;
  gap: 30px
}

html.pg-contact .navlinks a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .92;
  position: relative;
  padding: 4px 0
}

html.pg-contact .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease)
}

html.pg-contact .navlinks a:hover::after,
html.pg-contact .navlinks a.on::after {
  width: 100%
}

html.pg-contact .navlinks a.on {
  color: var(--red)
}

html.pg-contact .nav-right {
  display: flex;
  gap: 14px;
  align-items: center
}

html.pg-contact .basket {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0
}

html.pg-contact .basket svg {
  display: block
}

html.pg-contact .basket .dot {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 10;
  padding: 0 2px;
  min-width: 17px;
  height: 17px;
  text-indent: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

html.pg-contact .nav-right .acct {
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  text-decoration: none
}

html.pg-contact .nav-right .acct:hover {
  color: var(--red)
}

@media(max-width:640px) {
  html.pg-contact .nav-right .acct {
    display: none
  }
}

html.pg-contact .burger {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--forest);
  cursor: pointer
}

@media(max-width:980px) {
  html.pg-contact .navlinks {
    display: none
  }

  html.pg-contact .burger {
    display: block
  }
}

html.pg-contact footer.site {
  background: var(--forest);
  color: #8FA389;
  padding: 48px 0 28px;
  margin-top: 24px
}

html.pg-contact .frow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

html.pg-contact .fcol h4 {
  color: #fff;
  font-family: var(--s);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px
}

html.pg-contact .fcol a {
  display: block;
  color: #B9C7B2;
  text-decoration: none;
  font-size: .9rem;
  margin: 0 0 8px
}

html.pg-contact .fcol a:hover {
  color: #fff
}

html.pg-contact .fbrand .bn {
  font-family: var(--d);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px
}

html.pg-contact .fbrand p {
  color: #8FA389;
  font-size: .9rem;
  max-width: 34ch;
  margin: 0
}

html.pg-contact .fbar {
  padding-top: 18px;
  font-size: .82rem;
  color: #8FA389
}

@media(max-width:760px) {
  html.pg-contact .frow {
    grid-template-columns: 1fr 1fr
  }

  html.pg-contact .fbrand {
    grid-column: 1/-1
  }
}

html.pg-contact .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

html.pg-contact .reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  html.pg-contact,
  html.pg-contact * {
    animation: none !important;
    transition-duration: .001ms !important
  }

  html.pg-contact .reveal {
    opacity: 1;
    transform: none
  }
}

html.pg-contact .ctaband {
  padding: 60px 0
}

html.pg-contact .ctaband .panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  padding: 50px 44px;
  text-align: center
}

html.pg-contact .ctaband .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .22), transparent 60%)
}

html.pg-contact .ctaband h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin: 6px 0 14px
}

html.pg-contact .ctaband p {
  color: rgba(234, 240, 228, .82);
  max-width: 54ch;
  margin: 0 auto 22px
}

html.pg-contact .phead {
  padding: 54px 0 10px;
  text-align: center
}

html.pg-contact .phead h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 12px 0 0
}

html.pg-contact .phead p {
  color: var(--muted);
  max-width: 56ch;
  margin: 14px auto 0;
  font-size: 1.08rem
}

html.pg-contact .gal {
  padding: 34px 0 60px
}

html.pg-contact .galgrid {
  columns: 3;
  column-gap: 16px
}

@media(max-width:860px) {
  html.pg-contact .galgrid {
    columns: 2
  }
}

@media(max-width:520px) {
  html.pg-contact .galgrid {
    columns: 1
  }
}

html.pg-contact .galitem {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 40px -28px rgba(16, 35, 26, .5)
}

html.pg-contact .galitem img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease)
}

html.pg-contact .galitem:hover img {
  transform: scale(1.05)
}

html.pg-contact .galitem .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(16, 35, 26, .78));
  color: #fff;
  font-family: var(--d);
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity .3s
}

html.pg-contact .galitem:hover .cap {
  opacity: 1
}

html.pg-contact .lb {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 9, .93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 30px
}

html.pg-contact .lb.on {
  display: flex
}

html.pg-contact .lb img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px
}

html.pg-contact .lb .x {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: 0
}

html.pg-contact .blog {
  padding: 34px 0 60px
}

html.pg-contact .feat-post {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px
}

html.pg-contact .feat-post .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px
}

html.pg-contact .feat-post .bd {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

html.pg-contact .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

@media(max-width:860px) {
  html.pg-contact .post-grid {
    grid-template-columns: 1fr
  }

  html.pg-contact .feat-post {
    grid-template-columns: 1fr
  }
}

html.pg-contact .pcard2 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
  text-decoration: none
}

html.pg-contact .pcard2:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-contact .pcard2 .im {
  height: 172px;
  overflow: hidden
}

html.pg-contact .pcard2 .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-contact .pcard2 .bd {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

html.pg-contact .pmeta {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  gap: 10px
}

html.pg-contact .pcard2 h3 {
  font-size: 1.3rem;
  margin: 6px 0 8px
}

html.pg-contact .pcard2 p {
  font-size: .92rem;
  color: var(--muted);
  flex: 1;
  margin: 0 0 12px
}

html.pg-contact .rmore {
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: .9rem
}

html.pg-contact .art {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 0 60px
}

html.pg-contact .art .pmeta {
  justify-content: center;
  margin-bottom: 6px
}

html.pg-contact .art h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin: 10px 0;
  text-align: center
}

html.pg-contact .art .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 auto 26px;
  text-align: center;
  max-width: 54ch
}

html.pg-contact .art .hero-im {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px
}

html.pg-contact .art .hero-im img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

html.pg-contact .art h2 {
  font-size: 1.6rem;
  margin: 30px 0 10px
}

html.pg-contact .art p {
  margin: 0 0 18px
}

html.pg-contact .art blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--d);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 26px 0
}

html.pg-contact .art .tip {
  background: var(--green-soft);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0
}

html.pg-contact .art .tip b {
  color: var(--forest)
}

html.pg-contact .authorbox {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 24px
}

html.pg-contact .authorbox .av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--d);
  font-size: 1.4rem;
  flex: none
}

html.pg-contact .faq {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-contact .faq .grp {
  margin-bottom: 30px
}

html.pg-contact .faq .grp>h2 {
  font-size: 1.3rem;
  margin-bottom: 12px
}

html.pg-contact .fitem {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  margin-bottom: 10px;
  overflow: hidden
}

html.pg-contact .fitem>button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center
}

html.pg-contact .fitem .ic {
  transition: transform .3s;
  color: var(--gold);
  font-size: 1.3rem
}

html.pg-contact .fitem.open .ic {
  transform: rotate(45deg)
}

html.pg-contact .fitem .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease)
}

html.pg-contact .fitem .ans p {
  margin: 0 18px 16px;
  color: var(--muted)
}

html.pg-contact .fitem.open .ans {
  max-height: 320px
}

html.pg-contact .doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0 60px
}

html.pg-contact .doc .draft {
  background: #FBEFD6;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #6b4d18;
  margin: 0 0 26px
}

html.pg-contact .doc h2 {
  font-size: 1.35rem;
  margin: 28px 0 8px
}

html.pg-contact .doc p,
html.pg-contact .doc li {
  color: var(--ink)
}

html.pg-contact .doc ul {
  padding-left: 20px
}

html.pg-contact .doc a {
  color: var(--green);
  font-weight: 600
}

html.pg-contact .doc .upd {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 6px
}

html.pg-contact .e404 {
  text-align: center;
  padding: 80px 0
}

html.pg-contact .e404 .big {
  font-family: var(--d);
  font-size: clamp(5rem, 16vw, 11rem);
  color: var(--gold);
  line-height: .85
}

html.pg-contact .e404 h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 6px 0 12px
}

html.pg-contact .e404 p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 24px
}

html.pg-contact .e404 .cc {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-contact .srch {
  padding: 30px 0 60px;
  max-width: 840px;
  margin: 0 auto
}

html.pg-contact .searchbar {
  display: flex;
  gap: 10px;
  margin-bottom: 6px
}

html.pg-contact .searchbar input {
  flex: 1;
  font-size: 1.05rem;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--forest)
}

html.pg-contact .searchbar input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .15)
}

html.pg-contact .scount {
  color: var(--muted);
  font-size: .9rem;
  margin: 10px 0 14px
}

html.pg-contact .sresult {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none
}

html.pg-contact .sresult .im {
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex: none
}

html.pg-contact .sresult .im img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-contact .sresult h3 {
  font-size: 1.15rem
}

html.pg-contact .sresult p {
  font-size: .9rem;
  color: var(--muted);
  margin: 4px 0 0
}

html.pg-contact .skind {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red)
}

html.pg-contact .ab-hero {
  padding: 56px 0 30px
}

html.pg-contact .ab-hero .row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center
}

html.pg-contact .ab-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  margin: 14px 0 0
}

html.pg-contact .ab-hero .lede {
  font-size: 1.16rem;
  margin: 18px 0 0;
  max-width: 46ch
}

html.pg-contact .ab-hero .cc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px
}

html.pg-contact .ab-portrait {
  position: relative
}

html.pg-contact .ab-portrait .frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -38px rgba(16, 35, 26, .6);
  transform: rotate(-1.4deg)
}

html.pg-contact .ab-portrait .frame img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover
}

html.pg-contact .ab-portrait .tag {
  position: absolute;
  bottom: -16px;
  left: -14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--h);
  color: var(--red);
  font-size: 1.4rem;
  box-shadow: 0 18px 30px -18px rgba(16, 35, 26, .5)
}

html.pg-contact .ab-story {
  padding: 44px 0;
  border-top: 1px solid var(--line)
}

html.pg-contact .ab-story .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

html.pg-contact .ab-story:nth-of-type(even) .ab-im {
  order: 2
}

html.pg-contact .ab-im {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(16, 35, 26, .5)
}

html.pg-contact .ab-im img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

html.pg-contact .ab-story h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin: 12px 0 0
}

html.pg-contact .ab-story p {
  margin: 14px 0 0
}

html.pg-contact .quote {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center
}

html.pg-contact .quote blockquote {
  font-family: var(--d);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--forest);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.25
}

html.pg-contact .quote .sig {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.8rem;
  margin-top: 18px
}

html.pg-contact .vals {
  padding: 54px 0
}

html.pg-contact .vals .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px
}

html.pg-contact .vcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px
}

html.pg-contact .vcard .ic {
  font-size: 1.6rem;
  margin-bottom: 10px
}

html.pg-contact .vcard h3 {
  font-size: 1.25rem;
  margin-bottom: 6px
}

html.pg-contact .vcard p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0
}

@media(max-width:860px) {

  html.pg-contact .ab-hero .row,
  html.pg-contact .ab-story .row,
  html.pg-contact .vals .grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  html.pg-contact .ab-story:nth-of-type(even) .ab-im {
    order: 0
  }
}

html.pg-contact .sp-hero {
  padding: 56px 0 34px;
  text-align: center
}

html.pg-contact .sp-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin: 14px 0 0
}

html.pg-contact .sp-hero .lede {
  font-size: 1.18rem;
  max-width: 54ch;
  margin: 18px auto 0
}

html.pg-contact .sp-hero .cc {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-contact .sp-prize {
  margin: 40px 0 0;
  padding: 46px 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: 22px;
  color: #EAF0E4;
  text-align: center;
  position: relative;
  overflow: hidden
}

html.pg-contact .sp-prize::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .25), transparent 60%)
}

html.pg-contact .sp-prize .lab {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--gold-soft)
}

html.pg-contact .sp-prize .big {
  font-family: var(--d);
  font-size: clamp(3rem, 9vw, 6rem);
  color: #fff;
  line-height: 1;
  margin: 8px 0
}

html.pg-contact .sp-prize .sm {
  color: rgba(234, 240, 228, .7);
  font-size: .9rem
}

html.pg-contact .perks {
  padding: 54px 0
}

html.pg-contact .perks .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px
}

html.pg-contact .pk {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px
}

html.pg-contact .pk .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px
}

html.pg-contact .pk h3 {
  font-size: 1.18rem;
  margin-bottom: 6px
}

html.pg-contact .pk p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0
}

html.pg-contact .steps {
  padding: 54px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

html.pg-contact .steps .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px
}

html.pg-contact .stp {
  padding-top: 14px
}

html.pg-contact .stp .no {
  font-family: var(--d);
  font-size: 2.4rem;
  color: var(--gold)
}

html.pg-contact .stp h3 {
  font-size: 1.2rem;
  margin: 6px 0
}

html.pg-contact .stp p {
  font-size: .93rem;
  color: var(--muted);
  margin: 0
}

html.pg-contact .legalbox {
  padding: 34px 0
}

html.pg-contact .legalbox .box {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: .84rem;
  color: var(--muted);
  max-width: 80ch;
  margin: 0 auto
}

html.pg-contact .legalbox .box b {
  color: var(--forest)
}

html.pg-contact .legalbox .box a {
  color: var(--green);
  font-weight: 600
}

@media(max-width:860px) {

  html.pg-contact .perks .grid,
  html.pg-contact .steps .grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {

  html.pg-contact .perks .grid,
  html.pg-contact .steps .grid {
    grid-template-columns: 1fr
  }
}

html.pg-contact .ct-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  padding: 14px 0 60px;
  align-items: start
}

@media(max-width:880px) {
  html.pg-contact .ct-grid {
    grid-template-columns: 1fr
  }
}

html.pg-contact .ct-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px
}

html.pg-contact .ct-form .fld {
  margin-bottom: 16px
}

html.pg-contact .ct-form label {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--forest);
  margin-bottom: 7px
}

html.pg-contact .ct-form input,
html.pg-contact .ct-form textarea,
html.pg-contact .ct-form select {
  width: 100%;
  font-family: var(--s);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--forest)
}

html.pg-contact .ct-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232f5b39' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer
}

html.pg-contact .ct-form textarea {
  min-height: 140px;
  resize: vertical
}

html.pg-contact .ct-form input:focus,
html.pg-contact .ct-form textarea:focus,
html.pg-contact .ct-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .16)
}

html.pg-contact .ct-ok {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--forest-3);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  margin-bottom: 16px
}

html.pg-contact .ct-side {
  display: flex;
  flex-direction: column;
  gap: 14px
}

html.pg-contact .ct-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px
}

html.pg-contact .ct-card .ic {
  font-size: 1.3rem
}

html.pg-contact .ct-card h3 {
  font-size: 1.05rem;
  margin: 6px 0 4px
}

html.pg-contact .ct-card a,
html.pg-contact .ct-card p {
  color: var(--ink);
  text-decoration: none;
  margin: 0
}

html.pg-contact .ct-card .mut {
  color: var(--muted);
  font-size: .92rem
}

html.pg-contact .hand {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.6rem
}

html.pg-contact .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-contact footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-contact header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-contact .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-contact header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-contact header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-contact header.site.scrolled .in {
  height: 70px
}

html.pg-contact header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-contact .u-link-green.u-link-green {
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   pg-digital-book
   shepherds-pie-guy-digital-book-full.html
   shepherds-pie-guy-digital-book-preview.html
   ============================================================ */
html.pg-digital-book {
  --paper: #F6F1E4;
  --card: #FCFAF2;
  --bone: #F4F2E9;
  --forest: #10231A;
  --forest-2: #1C3A28;
  --green: #2F5B39;
  --green-soft: #E2EAD9;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #A6312A;
  --red-ink: #B53A2E;
  --ink: #33392F;
  --muted: #7B8170;
  --line: rgba(28, 58, 40, .14);
  --rule: #C9D6E4;
  --tape: rgba(187, 139, 60, .30);
  --tape2: rgba(166, 49, 42, .18);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-digital-book,
html.pg-digital-book * {
  box-sizing: border-box
}

html.pg-digital-book,
html.pg-digital-book body {
  margin: 0;
  height: 100%
}

html.pg-digital-book body {
  font-family: var(--s);
  background: var(--forest);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow: hidden
}

html.pg-digital-book h1,
html.pg-digital-book h2,
html.pg-digital-book h3,
html.pg-digital-book h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-digital-book img {
  display: block;
  max-width: 100%
}

html.pg-digital-book button {
  font-family: inherit;
  cursor: pointer
}

html.pg-digital-book .app {
  height: 100dvh;
  position: relative;
  overflow: hidden;
  perspective: 2200px
}

html.pg-digital-book .view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform-origin: left center;
  backface-visibility: hidden
}

html.pg-digital-book .view.active {
  opacity: 1;
  visibility: visible
}

html.pg-digital-book .view.flip {
  animation: pageIn .6s var(--ease)
}

html.pg-digital-book .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 13px 24px;
  transition: transform .35s var(--ease), background .3s, color .3s
}

html.pg-digital-book .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-digital-book .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-digital-book .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-digital-book .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-digital-book .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-digital-book .btn-line:hover {
  border-color: var(--forest)
}

html.pg-digital-book .btn-line:disabled {
  opacity: .35;
  cursor: default
}

html.pg-digital-book #cover {
  /* background: #041207; */
  color: #fff;
  padding: 0;
  overflow: hidden;

}

html.pg-digital-book .book-cover-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(56px, 10vh, 120px);
  box-sizing: border-box;
  transition: transform .8s cubic-bezier(.77, 0, .175, 1), opacity .8s;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html.pg-digital-book .book-cover-container.flipped {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none
}

html.pg-digital-book .cover-bg-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 65%, rgba(255, 255, 255, .08) 0%, rgba(4, 18, 7, 0) 55%);
  z-index: 2;
  pointer-events: none
}

html.pg-digital-book .cover-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .85);
  box-sizing: border-box;
  text-transform: uppercase
}

html.pg-digital-book .cover-header-left {
  display: flex;
  align-items: center;
  gap: 10px
}

html.pg-digital-book .cover-header-left svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}

html.pg-digital-book .cover-header-line {
  position: absolute;
  top: 42px;
  left: 60px;
  right: 60px;
  height: 1.2px;
  background: rgba(255, 255, 255, .18);
  z-index: 10;
}

html.pg-digital-book .cover-main-content {
  width: calc(100% - 0%);
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  perspective: 1000px
}

html.pg-digital-book .cover-interactive-card {
  width: calc(100% - 0%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .6s cubic-bezier(.25, 1, .5, 1)
}

html.pg-digital-book .cover-title-container {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center
}

html.pg-digital-book .cover-title-prefix {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  text-align: center
}

html.pg-digital-book .massive-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 0.8;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  text-align: center
}

html.pg-digital-book .cover-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 20px 0
}

html.pg-digital-book .subtitle-gold-line {
  height: 1px;
  background: #C5A059;
  opacity: .5;
  flex-grow: 1;
  max-width: 120px
}

html.pg-digital-book .cover-subtitle-text {
  font-size: clamp(.65rem, 1.1vw, .85rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: #C5A059;
  text-transform: uppercase;
  white-space: nowrap
}

html.pg-digital-book .cover-description {
  font-size: clamp(.68rem, 1.1vw, .84rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .55);
  max-width: 540px;
  margin: 0;
  letter-spacing: .04em
}

html.pg-digital-book .btn-open-book-minimal {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 30px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all .3s ease;
  border-radius: 2px;
  align-self: center
}

html.pg-digital-book .btn-open-book-minimal:hover {
  background: #fff;
  color: #0A0A0A;
  border-color: #fff;
  transform: translateY(-1px)
}

html.pg-digital-book
/* .center-pie-wrapper {
      position: absolute;
      right: 0;
      left: 0;
      margin: 0 auto;
      bottom: 0;
      width: 52vw;
      height: 100%;
      z-index: 3;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      pointer-events: none;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .2) 8%, black 28%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .2) 8%, black 28%);
      transition: transform .6s cubic-bezier(.25, 1, .5, 1)
    } */

.center-pie-img {
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  mix-blend-mode: lighten;
  margin-top: -105px;
  height: 510px;
}

html.pg-digital-book .flour-particles-container {
  position: absolute;
  top: 72px;
  left: 60px;
  right: 60px;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  /* &::before {
        position: absolute; left: 0; top: 0; content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, .3); z-index: -1;
      } */
}

html.pg-digital-book .flour-particle {
  position: absolute;
  top: -10px;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  animation: fall-and-drift linear infinite
}

html.pg-digital-book .cover-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
  box-sizing: border-box;
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  pointer-events: none
}

html.pg-digital-book .barcode-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px
}

html.pg-digital-book .barcode-svg {
  width: 110px;
  height: 30px;
  fill: #fff;
  opacity: .75
}

@media (max-width:991px) {
  html.pg-digital-book .book-cover-container {
    justify-content: space-between;
    padding-top: 80px;
    flex-direction: column
  }

  html.pg-digital-book .cover-main-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 90%;
    max-width: 600px;
    margin-bottom: 20px;
    align-items: center
  }

  html.pg-digital-book .cover-interactive-card {
    align-items: center;
    text-align: center
  }

  html.pg-digital-book .cover-title-container,
  html.pg-digital-book .cover-title-prefix,
  html.pg-digital-book .massive-title,
  html.pg-digital-book .cover-description {
    text-align: center
  }

  html.pg-digital-book .cover-title-prefix {
    margin-bottom: 6px
  }

  html.pg-digital-book .massive-title {
    font-size: clamp(2.4rem, 11vw, 4.2rem)
  }

  html.pg-digital-book .cover-subtitle-row {
    justify-content: center
  }

  html.pg-digital-book .subtitle-gold-line {
    max-width: none
  }

  html.pg-digital-book .btn-open-book-minimal {
    align-self: center;
    margin-top: 20px
  }

  html.pg-digital-book
  /* .center-pie-wrapper {
        position: relative;
        width: clamp(200px, 36vw, 290px);
        height: auto;
        margin-top: auto;
        mask-image: none;
        -webkit-mask-image: none
      } */

  .center-pie-img {
    height: 490px;
    width: 100%;
    object-fit: contain;
    transform: none;

  }

  html.pg-digital-book .cover-header {
    padding: 20px 30px
  }

  html.pg-digital-book .cover-header-line {
    left: 30px;
    right: 30px;
    top: 60px
  }

  html.pg-digital-book .flour-particles-container {
    left: 30px;
    right: 30px;
    top: 60px
  }

  html.pg-digital-book .cover-footer {
    padding: 20px 30px
  }
}

html.pg-digital-book .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(246, 241, 228, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-digital-book .topbar .bk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--forest);
  background: none;
  border: 0
}

html.pg-digital-book .topbar .tt {
  font-family: var(--d);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest)
}

html.pg-digital-book .topbar .tt b {
  color: var(--red)
}

html.pg-digital-book .topbar .acts {
  display: flex;
  gap: 8px;
  align-items: center
}

html.pg-digital-book .tbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .82rem;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--forest);
  border-radius: 100px;
  padding: 9px 15px
}

html.pg-digital-book .tbtn:hover {
  border-color: var(--green)
}

html.pg-digital-book .tbtn.solid {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest)
}

html.pg-digital-book .pageno {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted)
}

html.pg-digital-book #contents {
  background: var(--bone)
}

html.pg-digital-book .contents-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 24px 60px
}

html.pg-digital-book .c-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 36px
}

html.pg-digital-book .c-eyebrow {
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px
}

html.pg-digital-book .c-eyebrow::before,
html.pg-digital-book .c-eyebrow::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-digital-book #contents h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--forest);
  margin-bottom: 12px
}

html.pg-digital-book .c-head p {
  color: var(--muted);
  margin: 0
}

html.pg-digital-book .map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 54px
}

html.pg-digital-book .map-stage {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%
}

html.pg-digital-book .map-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 44px rgba(16, 35, 26, .28));
  user-select: none
}

html.pg-digital-book .mpin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 0;
  background: var(--gold-soft);
  border: 2px solid var(--forest);
  transition: transform .3s var(--ease), background .3s
}

html.pg-digital-book .mpin:hover,
html.pg-digital-book .mpin:focus,
html.pg-digital-book .mpin.active {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.45);
  outline: none;
  z-index: 6
}

html.pg-digital-book .mlab {
  position: absolute;
  left: 50%;
  bottom: 155%;
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, .5)
}

html.pg-digital-book .mpin:hover .mlab,
html.pg-digital-book .mpin:focus .mlab {
  opacity: 1
}

/* Pin positions — identical to the home page map (html.pg-home .pin-*). */
html.pg-digital-book .pin-1 {
  left: 31.85%;
  top: 14.85%;
}

/* Western Isles */
html.pg-digital-book .pin-2 {
  left: 46.26%;
  top: 19.09%;
}

/* Ross-shire */
html.pg-digital-book .pin-3 {
  left: 47.86%;
  top: 26.51%;
}

/* Highlands */
html.pg-digital-book .pin-4 {
  left: 64.67%;
  top: 23.33%;
}

/* Aberdeenshire */
html.pg-digital-book .pin-5 {
  left: 59.87%;
  top: 33.92%;
}

/* Fife */
html.pg-digital-book .pin-6 {
  left: 59.55%;
  top: 37.31%;
}

/* Lothian */
html.pg-digital-book .pin-7 {
  left: 63.07%;
  top: 41.34%;
}

/* The Borders */
html.pg-digital-book .pin-8 {
  left: 53.86%;
  top: 46.64%;
}

/* Dumfries & Galloway */
html.pg-digital-book .pin-9 {
  left: 26.48%;
  top: 47.27%;
}

/* Londonderry */
html.pg-digital-book .pin-10 {
  left: 61.07%;
  top: 51.94%;
}

/* Cumbria */
html.pg-digital-book .pin-11 {
  left: 38.25%;
  top: 53.53%;
}

/* County Down */
html.pg-digital-book .pin-12 {
  left: 49.04%;
  top: 55.48%;
}

/* Isle of Man */
html.pg-digital-book .pin-13 {
  left: 63.47%;
  top: 59.88%;
}

/* Lancashire */
html.pg-digital-book .pin-14 {
  left: 68.67%;
  top: 60.94%;
}

/* The Pennines */
html.pg-digital-book .pin-15 {
  left: 69.47%;
  top: 55.65%;
}

/* Yorkshire Dales */
html.pg-digital-book .pin-16 {
  left: 34.65%;
  top: 64.65%;
}

/* Ireland */
html.pg-digital-book .pin-17 {
  left: 64.27%;
  top: 66.24%;
}

/* Cheshire */
html.pg-digital-book .pin-18 {
  left: 82.68%;
  top: 67.30%;
}

/* Lincolnshire */
html.pg-digital-book .pin-19 {
  left: 93.09%;
  top: 72.07%;
}

/* Norfolk */
html.pg-digital-book .pin-20 {
  left: 75.88%;
  top: 72.07%;
}

/* Leicestershire */
html.pg-digital-book .pin-21 {
  left: 55.46%;
  top: 74.72%;
}

/* Wales */
html.pg-digital-book .pin-22 {
  left: 63.47%;
  top: 72.60%;
}

/* Shropshire */
html.pg-digital-book .pin-23 {
  left: 85.08%;
  top: 75.25%;
}

/* Cambridgeshire */
html.pg-digital-book .pin-24 {
  left: 93.09%;
  top: 76.84%;
}

/* Suffolk */
html.pg-digital-book .pin-25 {
  left: 93.49%;
  top: 81.08%;
}

/* Essex Coast */
html.pg-digital-book .pin-26 {
  left: 52.87%;
  top: 76.47%;
}

/* Ceredigion */
html.pg-digital-book .pin-27 {
  left: 89.08%;
  top: 81.29%;
}

/* Essex */
html.pg-digital-book .pin-28 {
  left: 51.46%;
  top: 80.02%;
}

/* Carmarthenshire */
html.pg-digital-book .pin-29 {
  left: 51.86%;
  top: 83.20%;
}

/* Gower */
html.pg-digital-book .pin-30 {
  left: 61.87%;
  top: 81.61%;
}

/* Monmouthshire */
html.pg-digital-book .pin-31 {
  left: 60.73%;
  top: 89.19%;
}

/* Somerset */
html.pg-digital-book .pin-32 {
  left: 63.63%;
  top: 86.59%;
}

/* The Mendips */
html.pg-digital-book .pin-33 {
  left: 69.87%;
  top: 86.16%;
}

/* Wiltshire */
html.pg-digital-book .pin-34 {
  left: 76.28%;
  top: 84.79%;
}

/* Berkshire */
html.pg-digital-book .pin-35 {
  left: 83.08%;
  top: 80.86%;
}

/* Hertfordshire */
html.pg-digital-book .pin-36 {
  left: 91.08%;
  top: 84.04%;
}

/* Thames Estuary */
html.pg-digital-book .pin-37 {
  left: 84.12%;
  top: 84.15%;
}

/* London */
html.pg-digital-book .pin-38 {
  left: 89.72%;
  top: 85.74%;
}

/* North Kent */
html.pg-digital-book .pin-39 {
  left: 89.88%;
  top: 87.86%;
}

/* Kent */
html.pg-digital-book .pin-40 {
  left: 94.53%;
  top: 87.22%;
}

/* East Kent */
html.pg-digital-book .pin-41 {
  left: 81.72%;
  top: 86.90%;
}

/* Surrey */
html.pg-digital-book .pin-42 {
  left: 74.67%;
  top: 89.02%;
}

/* Hampshire */
html.pg-digital-book .pin-43 {
  left: 56.66%;
  top: 92.20%;
}

/* West Country */
html.pg-digital-book .pin-44 {
  left: 46.74%;
  top: 96.03%;
}

/* Cornwall */
html.pg-digital-book .map-aside h3 {
  font-family: var(--d);
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 10px
}

html.pg-digital-book .map-aside p {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 42ch
}

html.pg-digital-book .legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

html.pg-digital-book .legend .lg {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  font-weight: 600
}

html.pg-digital-book .legend .sw {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--forest)
}

html.pg-digital-book .legend .sw.on {
  background: var(--gold)
}

html.pg-digital-book .legend .sw.off {
  background: var(--green-soft);
  border-color: var(--green-soft)
}

html.pg-digital-book .menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 2px solid var(--forest);
  padding-top: 18px;
  margin-bottom: 18px
}

html.pg-digital-book .menu-head h3 {
  font-family: var(--d);
  font-size: 1.7rem;
  color: var(--forest)
}

html.pg-digital-book .menu-head .cnt {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red)
}

html.pg-digital-book .menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 56px
}

html.pg-digital-book .mg {
  break-inside: avoid;
  padding: 0 0 30px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  margin-bottom: 20px;
}

html.pg-digital-book .mg::-webkit-scrollbar {
  width: 6px
}

html.pg-digital-book .mg::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px
}

html.pg-digital-book .mg .gh {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--bone);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px
}

html.pg-digital-book .mg .gh::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line)
}

html.pg-digital-book .mrow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 6px;
  border-bottom: 1px solid var(--line);
  width: 100%;
  text-align: left;
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0
}

html.pg-digital-book .mrow .n {
  font-family: var(--d);
  font-weight: 600;
  color: var(--gold);
  font-size: .9rem;
  width: 26px;
  flex: none
}

html.pg-digital-book .mrow .nm {
  flex: 1;
  font-size: 1rem;
  color: var(--forest)
}

html.pg-digital-book .mrow .pg {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600
}

html.pg-digital-book .mrow.full {
  cursor: pointer
}

html.pg-digital-book .mrow.full:hover {
  background: #fff
}

html.pg-digital-book .mrow.full .tag {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #241806;
  background: var(--gold);
  padding: 3px 7px;
  border-radius: 100px;
  margin-left: 2px
}

html.pg-digital-book .mrow.locked {
  cursor: pointer
}

html.pg-digital-book .mrow.locked .nm {
  color: var(--muted)
}

html.pg-digital-book .mrow.locked .lk {
  font-size: .78rem;
  color: var(--muted)
}

@media (max-width:760px) {

  html.pg-digital-book .map-grid,
  html.pg-digital-book .menu-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  html.pg-digital-book .map-grid {
    gap: 30px;
    margin-bottom: 34px
  }
}

html.pg-digital-book .region-explorer {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px
}

html.pg-digital-book .region-panel {
  min-width: 0
}

html.pg-digital-book .rp-kicker {
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .66rem;
  color: var(--red)
}

html.pg-digital-book .rp-region {
  font-family: var(--d);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--forest);
  line-height: 1.05;
  margin: 6px 0 4px
}

html.pg-digital-book .rp-count {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted)
}

html.pg-digital-book .rp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  max-height: 404px;
  overflow-y: auto;
  padding-right: 4px
}

html.pg-digital-book .rp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: border-color .2s, transform .2s
}

html.pg-digital-book .rp-item.preview {
  cursor: pointer
}

html.pg-digital-book .rp-item.preview:hover {
  border-color: var(--green);
  transform: translateX(3px)
}

html.pg-digital-book .rp-item.locked {
  cursor: pointer;
  background: #FBFAF4
}

html.pg-digital-book .rp-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex: none
}

html.pg-digital-book .rp-thumb.ph {
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem
}

html.pg-digital-book .rp-meta {
  flex: 1;
  min-width: 0
}

html.pg-digital-book .rp-name {
  font-family: var(--d);
  font-size: 1.12rem;
  color: var(--forest);
  line-height: 1.15
}

html.pg-digital-book .rp-tag {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #241806;
  background: var(--gold);
  padding: 4px 9px;
  border-radius: 100px;
  flex: none
}

html.pg-digital-book .rp-lock {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  flex: none
}

html.pg-digital-book .region-map {
  position: relative
}

html.pg-digital-book .map-hint {
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 14px
}

html.pg-digital-book .rpin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 3;
  padding: 0
}

html.pg-digital-book .rpin .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--forest);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
  transition: transform .3s, background .3s
}

html.pg-digital-book .rpin .rlab {
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(244, 242, 233, .92);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .4);
  transition: background .25s, color .25s
}

html.pg-digital-book .rpin:hover .dot,
html.pg-digital-book .rpin.active .dot {
  background: var(--gold);
  transform: scale(1.4)
}

html.pg-digital-book .rpin.active .dot {
  box-shadow: 0 0 0 0 rgba(187, 139, 60, .5);
  animation: pinpulse 2s ease-out infinite
}

html.pg-digital-book .rpin.active .rlab {
  background: var(--forest);
  color: #fff
}

@media (max-width:820px) {
  html.pg-digital-book .region-explorer {
    grid-template-columns: 1fr;
    gap: 26px
  }

  html.pg-digital-book .region-map {
    order: -1
  }

  html.pg-digital-book .rp-list {
    max-height: none
  }
}

html.pg-digital-book #recipe {
  background: var(--paper);
  background-image: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .5), transparent 40%), radial-gradient(circle at 80% 80%, rgba(0, 0, 0, .03), transparent 45%)
}

html.pg-digital-book .rwrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px
}

html.pg-digital-book .hero {
  padding: 40px 0 6px
}

html.pg-digital-book .hero .row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center
}

html.pg-digital-book .polaroid {
  position: relative;
  background: #fff;
  padding: 14px 14px 56px;
  box-shadow: 0 22px 44px -22px rgba(28, 58, 40, .5);
  transform: rotate(-2.4deg);
  transition: transform .5s var(--ease)
}

html.pg-digital-book .polaroid:hover {
  transform: rotate(-1deg) translateY(-3px)
}

html.pg-digital-book .polaroid img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover
}

html.pg-digital-book .polaroid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  font-family: var(--h);
  font-size: 1.6rem;
  color: var(--forest)
}

html.pg-digital-book .washi {
  position: absolute;
  width: 130px;
  height: 34px;
  background: repeating-linear-gradient(45deg, var(--tape) 0 8px, rgba(187, 139, 60, .14) 8px 16px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  z-index: 3
}

html.pg-digital-book .washi.t1 {
  top: -14px;
  left: 18px;
  transform: rotate(-7deg)
}

html.pg-digital-book .washi.t2 {
  bottom: 30px;
  right: -26px;
  width: 110px;
  transform: rotate(8deg);
  background: repeating-linear-gradient(45deg, var(--tape2) 0 8px, rgba(166, 49, 42, .08) 8px 16px)
}

html.pg-digital-book .postmark {
  position: absolute;
  top: -22px;
  right: -18px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px dashed rgba(166, 49, 42, .5);
  color: rgba(166, 49, 42, .6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  font-weight: 800;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
  background: rgba(246, 241, 228, .4);
  z-index: 4
}

html.pg-digital-book .postmark b {
  font-family: var(--d);
  font-size: .78rem;
  letter-spacing: .02em
}

html.pg-digital-book .hero .kick {
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

html.pg-digital-book .hero .kick::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-digital-book .hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  max-width: 15ch
}

html.pg-digital-book .hero .lede {
  color: var(--ink);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 14px 0 0
}

html.pg-digital-book .ann {
  position: relative;
  display: inline-block;
  font-family: var(--h);
  color: var(--red-ink);
  font-size: 1.5rem;
  transform: rotate(-3deg);
  margin-top: 12px
}

html.pg-digital-book .ann svg {
  position: absolute;
  right: -46px;
  top: 6px;
  width: 40px;
  height: 30px
}

html.pg-digital-book .badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px
}

html.pg-digital-book .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700
}

html.pg-digital-book .badge .v {
  font-family: var(--d);
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 600
}

html.pg-digital-book .badge .l {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700
}

html.pg-digital-book .gf {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px
}

html.pg-digital-book .controls {
  position: sticky;
  top: 53px;
  z-index: 15;
  margin: 26px 0 8px
}

html.pg-digital-book .controls .bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 34px -26px rgba(28, 58, 40, .45)
}

html.pg-digital-book .ctl {
  display: flex;
  align-items: center;
  gap: 10px
}

html.pg-digital-book .ctl .lab {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

html.pg-digital-book .stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  background: #fff
}

html.pg-digital-book .stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  font-size: 1.3rem;
  color: var(--forest);
  line-height: 1
}

html.pg-digital-book .stepper button:hover {
  background: var(--green-soft)
}

html.pg-digital-book .stepper .val {
  min-width: 48px;
  text-align: center;
  font-family: var(--d);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest)
}

html.pg-digital-book .seg {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  background: #fff
}

html.pg-digital-book .seg button {
  border: 0;
  background: #fff;
  padding: 8px 15px;
  font-weight: 700;
  font-size: .84rem;
  color: var(--muted)
}

html.pg-digital-book .seg button.on {
  background: var(--forest);
  color: #fff
}

html.pg-digital-book .controls .spacer {
  flex: 1
}

html.pg-digital-book .main {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 40px;
  padding: 14px 0 40px;
  align-items: start
}

html.pg-digital-book .note {
  position: relative;
  background: var(--card);
  border-radius: 10px;
  padding: 28px 30px 32px 54px;
  box-shadow: 0 24px 50px -34px rgba(28, 58, 40, .5);
  background-image: linear-gradient(var(--card), var(--card)), repeating-linear-gradient(transparent 0 31px, var(--rule) 31px 32px);
  background-clip: content-box, border-box;
  background-origin: content-box, border-box
}

html.pg-digital-book .note::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  width: 2px;
  background: rgba(166, 49, 42, .4)
}

html.pg-digital-book .note h3 {
  font-size: 1.6rem;
  margin-bottom: 2px
}

html.pg-digital-book .note .sv {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 6px
}

html.pg-digital-book .paperclip {
  position: absolute;
  top: -14px;
  right: 26px;
  width: 26px;
  height: 64px;
  z-index: 4
}

html.pg-digital-book .binder {
  position: absolute;
  left: 9px;
  top: 26px;
  bottom: 26px;
  width: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3
}

html.pg-digital-book .binder span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .28), 0 1px 0 rgba(255, 255, 255, .6)
}

html.pg-digital-book .ing {
  display: block
}

html.pg-digital-book .ing-group {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 7px;
  margin: 24px 0 6px
}

html.pg-digital-book .ing-group:first-child {
  margin-top: 8px
}

html.pg-digital-book .ing-item {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 32px;
  padding: 8px 0;
  line-height: 32px;
  cursor: pointer;
  border-radius: 6px;
  transition: opacity .2s
}

html.pg-digital-book .ick {
  width: 21px;
  height: 21px;
  border: 2px solid var(--green);
  border-radius: 5px;
  flex: none;
  position: relative;
  transition: background .2s
}

html.pg-digital-book .ing-item.done .ick {
  background: var(--green)
}

html.pg-digital-book .ing-item.done .ick::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .82rem;
  font-weight: 800
}

html.pg-digital-book .ing .q {
  flex: none;
  min-width: 92px;
  display: flex;
  align-items: baseline;
  gap: 3px
}

html.pg-digital-book .ing .q b {
  color: var(--red);
  font-weight: 800;
  font-variant-numeric: tabular-nums
}

html.pg-digital-book .ing .q .u {
  color: var(--muted);
  font-weight: 600;
  font-size: .9em
}

html.pg-digital-book .ing .nm {
  color: var(--ink)
}

html.pg-digital-book .ing-item.done .q b,
html.pg-digital-book .ing-item.done .q .u,
html.pg-digital-book .ing-item.done .nm {
  text-decoration: line-through;
  color: var(--muted);
  opacity: .6
}

html.pg-digital-book .ing-note {
  margin-top: 16px;
  font-family: var(--h);
  color: var(--red-ink);
  font-size: 1.3rem;
  transform: rotate(-1.5deg)
}

html.pg-digital-book .method h3 {
  font-size: 1.6rem;
  margin-bottom: 16px
}

html.pg-digital-book .steps {
  list-style: none;
  counter-reset: st;
  padding: 0;
  margin: 0
}

html.pg-digital-book .steps li {
  position: relative;
  counter-increment: st;
  padding: 0 0 24px 58px;
  line-height: 32px;
  color: var(--ink)
}

html.pg-digital-book .steps li::before {
  content: counter(st);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--d);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center
}

html.pg-digital-book .steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 4px;
  width: 1.5px;
  background: var(--line)
}

html.pg-digital-book .timer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  background: var(--green-soft);
  color: var(--green);
  border: 0;
  border-radius: 100px;
  padding: 4px 11px;
  font-weight: 700;
  font-size: .8rem;
  vertical-align: middle
}

html.pg-digital-book .timer-btn:hover {
  background: var(--gold);
  color: #241806
}

html.pg-digital-book .timer-card {
  position: relative;
  background: #22432F;
  color: #EAF0E4;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 26px 50px -30px rgba(0, 0, 0, .55)
}

html.pg-digital-book .timer-card.ring-done {
  animation: flash 1s ease 3
}

html.pg-digital-book .timer-card .ttl {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px
}

html.pg-digital-book .dial {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto
}

html.pg-digital-book .dial svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg)
}

html.pg-digital-book .dial .face {
  fill: #FBFAF2
}

html.pg-digital-book .dial .track {
  fill: none;
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 9
}

html.pg-digital-book .dial .prog {
  fill: none;
  stroke: var(--gold);
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dashoffset .5s linear
}

html.pg-digital-book .dial .tick {
  stroke: rgba(28, 58, 40, .35);
  stroke-width: 2
}

html.pg-digital-book .dial .readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

html.pg-digital-book .dial .readout .t {
  font-family: var(--d);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  line-height: 1
}

html.pg-digital-book .dial .readout .lbl {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 700;
  max-width: 120px
}

html.pg-digital-book .timer-ctrls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px
}

html.pg-digital-book .tc {
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 100px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: .84rem
}

html.pg-digital-book .tc.go {
  background: var(--gold);
  color: #241806;
  border-color: var(--gold)
}

html.pg-digital-book .timer-presets {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 10px
}

html.pg-digital-book .tp {
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #EAF0E4;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: .78rem
}

html.pg-digital-book .tp:hover {
  background: rgba(255, 255, 255, .2)
}

html.pg-digital-book .r-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 70px
}

html.pg-digital-book .r-foot .pg {
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold)
}

html.pg-digital-book .r-nav {
  display: flex;
  gap: 10px
}

@media (max-width:860px) {

  html.pg-digital-book .hero .row,
  html.pg-digital-book .main {
    grid-template-columns: 1fr;
    gap: 30px
  }

  html.pg-digital-book .polaroid {
    max-width: 420px;
    margin: 0 auto
  }

  html.pg-digital-book .note {
    padding-left: 48px
  }
}

html.pg-digital-book .cookmode {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: radial-gradient(120% 100% at 28% 0%, #1f3d2a, #0d1d14 72%);
  color: #EDF2E8;
  display: none;
  flex-direction: column
}

html.pg-digital-book .cookmode.on {
  display: flex
}

html.pg-digital-book .cm-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

html.pg-digital-book .cm-logo {
  font-family: var(--d);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 600
}

html.pg-digital-book .cm-logo i {
  font-style: italic;
  font-weight: 500;
  color: #EAF0E4
}

html.pg-digital-book .cm-chip {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 7px;
  background: rgba(187, 139, 60, .18);
  border: 1px solid rgba(187, 139, 60, .5);
  color: var(--gold-soft);
  padding: 8px 15px;
  border-radius: 100px;
  font-weight: 700;
  font-variant-numeric: tabular-nums
}

html.pg-digital-book .cm-chip.show {
  display: inline-flex
}

html.pg-digital-book .cm-exit {
  border: 1.5px solid rgba(187, 139, 60, .6);
  background: transparent;
  color: var(--gold-soft);
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem
}

html.pg-digital-book .cm-exit:hover {
  background: rgba(187, 139, 60, .12)
}

html.pg-digital-book .cm-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  min-height: 0
}

html.pg-digital-book .cm-focus {
  padding: 6vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px
}

html.pg-digital-book .cm-count {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: 24px
}

html.pg-digital-book .cm-title {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 34px
}

html.pg-digital-book .cm-desc {
  font-family: var(--d);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.75;
  color: rgba(237, 242, 232, .9);
  margin: 0
}

html.pg-digital-book .cm-time {
  font-family: var(--d);
  font-style: italic;
  font-size: inherit;
  color: var(--gold);
  background: rgba(187, 139, 60, .16);
  border: 0;
  border-bottom: 2px solid rgba(187, 139, 60, .65);
  padding: 0 7px;
  cursor: pointer;
  border-radius: 3px
}

html.pg-digital-book .cm-time:hover {
  background: rgba(187, 139, 60, .3)
}

html.pg-digital-book .cm-nav {
  display: flex;
  gap: 14px;
  margin-top: 46px
}

html.pg-digital-book .cm-prev,
html.pg-digital-book .cm-next {
  border-radius: 10px;
  padding: 16px 30px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem
}

html.pg-digital-book .cm-prev {
  background: transparent;
  border: 1.5px solid rgba(187, 139, 60, .55);
  color: var(--gold-soft)
}

html.pg-digital-book .cm-prev:hover {
  background: rgba(187, 139, 60, .12)
}

html.pg-digital-book .cm-prev:disabled {
  opacity: .32;
  cursor: default
}

html.pg-digital-book .cm-next {
  background: var(--green);
  border: 0;
  color: #fff
}

html.pg-digital-book .cm-next:hover {
  background: #396e46
}

html.pg-digital-book .cm-next:disabled {
  opacity: .4;
  cursor: default
}

html.pg-digital-book .cm-side {
  background: rgba(0, 0, 0, .18);
  border-left: 1px solid rgba(255, 255, 255, .08);
  padding: 34px 26px;
  overflow-y: auto
}

html.pg-digital-book .cm-side-ttl {
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  color: rgba(237, 242, 232, .85);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 14px
}

html.pg-digital-book .cm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 6px
}

html.pg-digital-book .cm-row:hover {
  background: rgba(255, 255, 255, .06)
}

html.pg-digital-book .cm-row .rn {
  font-family: var(--d);
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
  width: 24px;
  flex: none
}

html.pg-digital-book .cm-row .rt {
  flex: 1;
  font-weight: 600;
  color: rgba(237, 242, 232, .92)
}

html.pg-digital-book .cm-row .rck {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(187, 139, 60, .6);
  border-radius: 6px;
  background: transparent;
  flex: none;
  position: relative;
  padding: 0
}

html.pg-digital-book .cm-row.active {
  background: #fff
}

html.pg-digital-book .cm-row.active .rn {
  color: var(--red)
}

html.pg-digital-book .cm-row.active .rt {
  color: var(--forest)
}

html.pg-digital-book .cm-row.active .rck {
  border-color: #c7c1ad
}

html.pg-digital-book .cm-row.done .rck {
  background: var(--gold);
  border-color: var(--gold)
}

html.pg-digital-book .cm-row.done .rck::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241806;
  font-size: .92rem;
  font-weight: 800
}

html.pg-digital-book .cm-row.done .rt {
  text-decoration: line-through;
  opacity: .55
}

html.pg-digital-book .cm-row.active.done .rt {
  color: var(--forest)
}

@media (max-width:860px) {
  html.pg-digital-book .cm-main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto
  }

  html.pg-digital-book .cm-focus {
    padding: 30px 24px
  }

  html.pg-digital-book .cm-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    max-height: 42vh
  }
}

@media (prefers-reduced-motion:reduce) {

  html.pg-digital-book,
  html.pg-digital-book * {
    animation: none !important;
    transition-duration: .001ms !important
  }

  html.pg-digital-book .cov-panel .inner * {
    opacity: 1 !important;
    transform: none !important
  }
}

@media (max-width:667px) {
  html.pg-digital-book .center-pie-img {
    height: 420px;
    margin-bottom: 60px;
  }
}

@media (max-width:480px) {
  html.pg-digital-book .center-pie-img {
    height: 370px;
    margin-bottom: 0;
    top: -130px;
    position: relative;
  }

  html.pg-digital-book .cover-header {
    flex-direction: column;
  }

  html.pg-digital-book .cover-main-content {
    margin-top: 30px;
  }
}

html.pg-digital-book .paywall {
  display: none;
  max-width: 640px;
  margin: 8px auto 70px;
  padding: 0 24px
}

html.pg-digital-book #recipe.locked .controls,
html.pg-digital-book #recipe.locked .main,
html.pg-digital-book #recipe.locked .r-foot,
html.pg-digital-book #recipe.locked .badges {
  display: none !important
}

html.pg-digital-book #recipe.locked .acts {
  visibility: hidden
}

html.pg-digital-book #recipe.locked .paywall {
  display: block
}

html.pg-digital-book .pw-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 34px;
  text-align: center;
  box-shadow: 0 30px 60px -40px rgba(28, 58, 40, .5)
}

html.pg-digital-book .pw-lock {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px
}

html.pg-digital-book .pw-card h3 {
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: 10px
}

html.pg-digital-book .pw-card p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 18px
}

html.pg-digital-book .pw-feat {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  max-width: 360px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px
}

html.pg-digital-book .pw-feat li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: .95rem
}

html.pg-digital-book .pw-feat .tk {
  color: var(--green);
  font-weight: 800
}

html.pg-digital-book .pw-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

html.pg-digital-book .pw-cta .btn {
  text-decoration: none
}

html.pg-digital-book .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-digital-book footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-digital-book header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-digital-book .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-digital-book header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-digital-book header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-digital-book header.site.scrolled .in {
  height: 70px
}

html.pg-digital-book header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-digital-book .u-hand-note {
  color: var(--red-ink);
  font-size: 1.3rem;
  transform: rotate(-2deg);
}

/* ============================================================
   pg-auth
   shepherds-pie-guy-login.html
   shepherds-pie-guy-register.html
   ============================================================ */
html.pg-auth {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-auth,
html.pg-auth * {
  box-sizing: border-box
}

html.pg-auth body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

html.pg-auth h1,
html.pg-auth h2,
html.pg-auth h3 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  color: var(--forest)
}

html.pg-auth a {
  color: inherit
}

html.pg-auth img {
  display: block;
  max-width: 100%
}

html.pg-auth .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-auth .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ease), background .3s
}

html.pg-auth .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-auth .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-auth .slim {
  background: rgba(242, 243, 235, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10
}

html.pg-auth .slim .in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0
}

html.pg-auth .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-auth .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.5rem;
  transform: translateY(2px)
}

html.pg-auth .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

html.pg-auth .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.62rem;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-auth .back {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .85
}

html.pg-auth .back:hover {
  opacity: 1
}

html.pg-auth .auth {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: calc(100vh - 60px)
}

@media(max-width:900px) {
  html.pg-auth .auth {
    grid-template-columns: 1fr
  }
}

html.pg-auth .auth-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 58px
}

html.pg-auth .auth-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(187, 139, 60, .26), transparent 55%)
}

html.pg-auth .auth-panel .pie {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 380px;
  opacity: .20;
  border-radius: 50%
}

html.pg-auth .auth-panel .inner {
  position: relative;
  z-index: 1;
  max-width: 440px
}

html.pg-auth .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--gold-soft)
}

html.pg-auth .auth-panel h1 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 12px 0 14px
}

html.pg-auth .auth-panel p {
  color: rgba(234, 240, 228, .82)
}

html.pg-auth .auth-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px
}

html.pg-auth .auth-benefits li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #EAF0E4
}

html.pg-auth .auth-benefits .tk {
  color: var(--gold-soft);
  font-weight: 800
}

@media(max-width:900px) {
  html.pg-auth .auth-panel {
    padding: 40px 28px
  }

  html.pg-auth .auth-panel .pie {
    display: none
  }
}

html.pg-auth .auth-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 28px;
  background: var(--bone)
}

html.pg-auth .auth-card {
  width: 100%;
  max-width: 420px
}

html.pg-auth .auth-card h2 {
  font-size: 1.9rem
}

html.pg-auth .auth-card .sub {
  color: var(--muted);
  margin: 6px 0 26px
}

html.pg-auth .fld {
  margin-bottom: 16px
}

html.pg-auth .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

@media(max-width:460px) {
  html.pg-auth .frow {
    grid-template-columns: 1fr
  }
}

html.pg-auth .fld label {
  display: block;
  font-weight: 700;
  font-size: .78rem;
  color: var(--forest);
  margin-bottom: 7px
}

html.pg-auth .fld input {
  width: 100%;
  font-family: var(--s);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--forest)
}

html.pg-auth .fld input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .16)
}

html.pg-auth .pwd {
  position: relative
}

html.pg-auth .pwd .toggle {
  position: absolute;
  right: 12px;
  top: 38px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer
}

html.pg-auth .row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0 20px;
  font-size: .88rem
}

html.pg-auth .check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--ink);
  margin-bottom: 14px
}

html.pg-auth .check input {
  margin-top: 3px;
  flex: none
}

html.pg-auth .auth-card .btn {
  width: 100%
}

html.pg-auth .err {
  display: none;
  background: #F6E0DD;
  border: 1px solid var(--red);
  color: var(--red-dark);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: .88rem;
  margin-bottom: 16px
}

html.pg-auth .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: .82rem;
  margin: 22px 0
}

html.pg-auth .divider::before,
html.pg-auth .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line)
}

html.pg-auth .swap {
  text-align: center;
  font-size: .92rem;
  color: var(--muted)
}

html.pg-auth .swap a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none
}

html.pg-auth a.link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none
}

html.pg-auth .remember {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink)
}

html.pg-auth .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-auth footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-auth header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-auth .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-auth header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-auth header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-auth header.site.scrolled .in {
  height: 70px
}

html.pg-auth header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* ============================================================
   pg-pie-spy
   shepherds-pie-guy-my-pie-spy.html
   ============================================================ */
html.pg-pie-spy {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-pie-spy,
html.pg-pie-spy * {
  box-sizing: border-box
}

html.pg-pie-spy body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

html.pg-pie-spy h1,
html.pg-pie-spy h2,
html.pg-pie-spy h3,
html.pg-pie-spy h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  color: var(--forest)
}

html.pg-pie-spy a {
  color: inherit
}

html.pg-pie-spy img {
  display: block;
  max-width: 100%
}

html.pg-pie-spy .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-pie-spy .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .88rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 11px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ease), background .3s, border-color .3s
}

html.pg-pie-spy .btn .ar {
  transition: transform .3s var(--ease)
}

html.pg-pie-spy .btn:hover .ar {
  transform: translateX(3px)
}

html.pg-pie-spy .btn-primary {
  background: var(--red);
  color: #fff
}

html.pg-pie-spy .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-pie-spy .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-pie-spy .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-pie-spy .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-pie-spy .btn-line:hover {
  border-color: var(--forest)
}

html.pg-pie-spy .btn-sm {
  padding: 8px 14px;
  font-size: .8rem
}

html.pg-pie-spy .eyebrow {
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .68rem;
  color: var(--red)
}

html.pg-pie-spy header.acct {
  background: var(--forest);
  color: #EAF0E4
}

html.pg-pie-spy .acct .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0
}

html.pg-pie-spy .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap
}

html.pg-pie-spy .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.5rem;
  transform: translateY(2px)
}

html.pg-pie-spy .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

html.pg-pie-spy .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.6rem;
  transform: translateY(3px);
  color: var(--gold-soft)
}

html.pg-pie-spy .acct .right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .86rem
}

html.pg-pie-spy .acct .right a {
  color: #B9C7B2;
  text-decoration: none
}

html.pg-pie-spy .acct .right a:hover {
  color: #fff
}

html.pg-pie-spy .acct .who {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: #fff
}

html.pg-pie-spy .acct .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #241806;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

html.pg-pie-spy .ahead {
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  color: #EAF0E4;
  padding: 26px 0 30px;
  position: relative;
  overflow: hidden
}

html.pg-pie-spy .ahead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(187, 139, 60, .2), transparent 55%)
}

html.pg-pie-spy .ahead .eyebrow {
  color: var(--gold-soft)
}

html.pg-pie-spy .ahead h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 8px 0 0
}

html.pg-pie-spy .ahead p {
  color: rgba(234, 240, 228, .8);
  margin: 6px 0 0
}

html.pg-pie-spy .account {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 28px;
  padding: 26px 0 64px
}

html.pg-pie-spy .side {
  position: sticky;
  top: 18px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px
}

html.pg-pie-spy .side button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, color .2s
}

html.pg-pie-spy .side button .si {
  width: 20px;
  text-align: center
}

html.pg-pie-spy .side button:hover {
  background: var(--bone-2)
}

html.pg-pie-spy .side button.on {
  background: var(--forest);
  color: #fff
}

html.pg-pie-spy .side .sep {
  height: 1px;
  background: var(--line);
  margin: 8px 4px
}

html.pg-pie-spy .side .out {
  color: var(--red)
}

html.pg-pie-spy .panel {
  display: none
}

html.pg-pie-spy .panel.on {
  display: block;
  animation: fade .4s var(--ease)
}

html.pg-pie-spy .panel h2 {
  font-size: 1.7rem;
  margin-bottom: 4px
}

html.pg-pie-spy .panel .sub {
  color: var(--muted);
  margin-bottom: 22px
}

html.pg-pie-spy .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px
}

@media(max-width:900px) {
  html.pg-pie-spy .cards {
    grid-template-columns: 1fr
  }
}

html.pg-pie-spy .card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px
}

html.pg-pie-spy .card .lab {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

html.pg-pie-spy .card .big {
  font-family: var(--d);
  font-size: 2.1rem;
  color: var(--forest);
  margin-top: 4px
}

html.pg-pie-spy .card.member {
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  border: 0;
  position: relative;
  overflow: hidden
}

html.pg-pie-spy .card.member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(187, 139, 60, .28), transparent 60%)
}

html.pg-pie-spy .card.member .lab {
  color: var(--gold-soft)
}

html.pg-pie-spy .card.member .num {
  font-family: var(--d);
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: .06em;
  margin: 6px 0
}

html.pg-pie-spy .card.member .draw {
  font-size: .84rem;
  color: var(--gold-soft);
  font-weight: 700;
  position: relative;
  z-index: 1
}

html.pg-pie-spy .qa {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

html.pg-pie-spy .lib {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  align-items: center
}

@media(max-width:680px) {
  html.pg-pie-spy .lib {
    grid-template-columns: 1fr
  }
}

html.pg-pie-spy .lib .cov {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 44px -24px rgba(16, 35, 26, .6)
}

html.pg-pie-spy .lib .cov img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover
}

html.pg-pie-spy .lib h3 {
  font-size: 1.5rem
}

html.pg-pie-spy .lib .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 5px 11px;
  margin: 8px 0 14px
}

html.pg-pie-spy .lib .acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px
}

html.pg-pie-spy .lib .note {
  font-size: .84rem;
  color: var(--muted);
  margin-top: 14px
}

html.pg-pie-spy .tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

html.pg-pie-spy .tbl th,
html.pg-pie-spy .tbl td {
  text-align: left;
  padding: 14px 16px;
  font-size: .9rem;
  border-bottom: 1px solid var(--line)
}

html.pg-pie-spy .tbl th {
  background: var(--bone-2);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted)
}

html.pg-pie-spy .tbl tr:last-child td {
  border-bottom: 0
}

html.pg-pie-spy .pill {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px
}

html.pg-pie-spy .pill.done {
  background: var(--green-soft);
  color: var(--green)
}

html.pg-pie-spy .pill.ship {
  background: #E7D3A6;
  color: #6b4d18
}

html.pg-pie-spy .pill.prog {
  background: #F0DAD7;
  color: var(--red)
}

html.pg-pie-spy .tbl .lk {
  color: var(--green);
  font-weight: 700;
  text-decoration: none
}

html.pg-pie-spy .tbl .lk:hover {
  text-decoration: underline
}

html.pg-pie-spy .tblwrap {
  overflow-x: auto
}

html.pg-pie-spy .bcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px
}

html.pg-pie-spy .flow {
  display: flex;
  gap: 0;
  margin: 18px 0 8px;
  flex-wrap: wrap
}

html.pg-pie-spy .step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding-top: 30px
}

html.pg-pie-spy .step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line)
}

html.pg-pie-spy .step:first-child::before {
  left: 50%
}

html.pg-pie-spy .step:last-child::before {
  right: 50%
}

html.pg-pie-spy .step .dot {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  z-index: 1;
  line-height: 1;
}

html.pg-pie-spy .step.done .dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff
}

html.pg-pie-spy .step.active .dot {
  background: var(--gold);
  border-color: var(--gold)
}

html.pg-pie-spy .step .t {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink)
}

html.pg-pie-spy .step.future .t {
  color: var(--muted)
}

html.pg-pie-spy .bgrid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-top: 22px;
  align-items: start
}

html.pg-pie-spy .bgrid .ph {
  border-radius: 12px;
  overflow: hidden
}

html.pg-pie-spy .bgrid .ph img {
  width: 120px;
  height: 120px;
  object-fit: cover
}

html.pg-pie-spy .bdl {
  font-size: .92rem
}

html.pg-pie-spy .bdl b {
  color: var(--forest)
}

html.pg-pie-spy .set {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 18px
}

html.pg-pie-spy .set h3 {
  font-size: 1.2rem;
  margin-bottom: 14px
}

html.pg-pie-spy .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

@media(max-width:640px) {
  html.pg-pie-spy .frow {
    grid-template-columns: 1fr
  }
}

html.pg-pie-spy .fld label {
  display: block;
  font-weight: 700;
  font-size: .76rem;
  color: var(--forest);
  margin-bottom: 6px
}

html.pg-pie-spy .fld input {
  width: 100%;
  font-family: var(--s);
  font-size: .95rem;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--forest)
}

html.pg-pie-spy .fld input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .15)
}

html.pg-pie-spy .tog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line)
}

html.pg-pie-spy .tog:last-child {
  border-bottom: 0
}

html.pg-pie-spy .tog .tt {
  font-weight: 600
}

html.pg-pie-spy .tog .td {
  font-size: .84rem;
  color: var(--muted)
}

html.pg-pie-spy .sw {
  position: relative;
  width: 46px;
  height: 26px;
  flex: none
}

html.pg-pie-spy .sw input {
  opacity: 0;
  width: 0;
  height: 0
}

html.pg-pie-spy .sw .sl {
  position: absolute;
  inset: 0;
  background: #cdd3c7;
  border-radius: 100px;
  transition: .3s;
  cursor: pointer
}

html.pg-pie-spy .sw .sl::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s
}

html.pg-pie-spy .sw input:checked+.sl {
  background: var(--green)
}

html.pg-pie-spy .sw input:checked+.sl::before {
  transform: translateX(20px)
}

html.pg-pie-spy .danger {
  border-color: rgba(154, 43, 37, .3)
}

html.pg-pie-spy .danger h3 {
  color: var(--red)
}

html.pg-pie-spy .savebar {
  display: flex;
  align-items: center;
  gap: 14px
}

html.pg-pie-spy .saveok {
  display: none;
  color: var(--green);
  font-weight: 700;
  font-size: .9rem
}

html.pg-pie-spy footer.site {
  background: var(--forest);
  color: #8FA389;
  padding: 26px 0;
  text-align: center;
  font-size: .86rem
}

@media(max-width:820px) {
  html.pg-pie-spy .account {
    grid-template-columns: 1fr
  }

  html.pg-pie-spy .side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto
  }

  html.pg-pie-spy .side .sep {
    display: none
  }
}

html.pg-pie-spy .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-pie-spy footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-pie-spy header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-pie-spy .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-pie-spy header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-pie-spy header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-pie-spy header.site.scrolled .in {
  height: 70px
}

html.pg-pie-spy header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-pie-spy .u-note-sm {
  color: var(--muted);
  font-size: .88rem;
}

html.pg-pie-spy .u-mb-12 {
  margin-bottom: 12px;
}

html.pg-pie-spy .u-note-xs {
  color: var(--muted);
  font-size: .84rem;
  margin-top: 12px;
}

html.pg-pie-spy .u-row-between {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

html.pg-pie-spy .u-stat {
  font-size: 1.4rem;
  margin-top: 4px;
}

html.pg-pie-spy .u-mb-8 {
  margin: 0 0 8px;
}

html.pg-pie-spy .u-mb-16 {
  margin: 0 0 16px;
}

html.pg-pie-spy .u-mb-14 {
  margin-bottom: 14px;
}

html.pg-pie-spy .u-mb-22 {
  margin-bottom: 22px;
}

html.pg-pie-spy .u-note-para {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 14px;
}

html.pg-pie-spy .u-btn-danger-outline.u-btn-danger-outline {
  border-color: rgba(154, 43, 37, .4);
  color: var(--red);
}

/* ============================================================
   pg-thank-you
   shepherds-pie-guy-thank-you.html
   ============================================================ */
html.pg-thank-you {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-thank-you,
html.pg-thank-you * {
  box-sizing: border-box
}

html.pg-thank-you body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

html.pg-thank-you h1,
html.pg-thank-you h2,
html.pg-thank-you h3 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-thank-you a {
  color: inherit
}

html.pg-thank-you .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-thank-you .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .95rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 15px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, border-color .3s
}

html.pg-thank-you .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-thank-you .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-thank-you .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-thank-you .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-thank-you .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-thank-you .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-thank-you .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-thank-you .btn-line:hover {
  border-color: var(--forest)
}

html.pg-thank-you .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red)
}

html.pg-thank-you header.site {
  background: rgba(244, 242, 233, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-thank-you .site .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0
}

html.pg-thank-you .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-thank-you .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(2px)
}

html.pg-thank-you .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1
}

html.pg-thank-you .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-thank-you .site .back {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .85
}

html.pg-thank-you .site .back:hover {
  opacity: 1
}

html.pg-thank-you .ty {
  padding: 70px 0 40px;
  text-align: center
}

html.pg-thank-you .tick-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 22px;
  box-shadow: 0 18px 40px -18px rgba(47, 91, 57, .8);
  animation: pop .6s var(--ease)
}

html.pg-thank-you .ty h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem)
}

html.pg-thank-you .ty h1 em {
  font-style: italic;
  color: var(--red)
}

html.pg-thank-you .ty .sub {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 52ch;
  margin: 16px auto 0
}

html.pg-thank-you .ty .ord {
  display: inline-block;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted)
}

html.pg-thank-you .grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 26px;
  padding: 18px 0 70px;
  align-items: start
}

@media(max-width:880px) {
  html.pg-thank-you .grid {
    grid-template-columns: 1fr
  }
}

html.pg-thank-you .access {
  background: var(--forest);
  color: #EAF0E4;
  border-radius: 22px;
  padding: 42px 40px;
  position: relative;
  overflow: hidden
}

html.pg-thank-you .access::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(187, 139, 60, .22), transparent 55%);
  pointer-events: none
}

html.pg-thank-you .access .eyebrow {
  color: var(--gold-soft)
}

html.pg-thank-you .access h2 {
  color: #fff;
  font-size: 1.9rem;
  margin: 10px 0 8px
}

html.pg-thank-you .access p {
  color: rgba(234, 240, 228, .82);
  margin: 0 0 24px;
  max-width: 44ch
}

html.pg-thank-you .access .acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

html.pg-thank-you .access .note {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(234, 240, 228, .6);
  display: flex;
  align-items: center;
  gap: 8px
}

html.pg-thank-you .club {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  text-align: center
}

html.pg-thank-you .club .star {
  color: var(--gold);
  font-size: 1.4rem
}

html.pg-thank-you .club h3 {
  font-size: 1.4rem;
  margin: 8px 0 4px
}

html.pg-thank-you .club p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 18px
}

html.pg-thank-you .club .num {
  font-family: var(--d);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--forest);
  background: var(--bone-2);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px
}

html.pg-thank-you .club .num b {
  display: block;
  font-size: 1.9rem;
  letter-spacing: .12em;
  color: var(--red);
  margin-top: 4px
}

html.pg-thank-you .club .draw {
  font-size: .84rem;
  color: var(--green);
  font-weight: 700
}

html.pg-thank-you footer.site {
  background: var(--forest);
  color: #B9C7B2;
  padding: 36px 0;
  text-align: center;
  font-size: .9rem
}

html.pg-thank-you .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-thank-you footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-thank-you header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-thank-you .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-thank-you header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-thank-you header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-thank-you header.site.scrolled .in {
  height: 70px
}

html.pg-thank-you header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-thank-you .u-mt-10 {
  margin-top: 10px;
}

html.pg-thank-you .u-btn-ghost-light.u-btn-ghost-light {
  color: #EAF0E4;
  border-color: rgba(234, 240, 228, .35);
}

/* ============================================================
   pg-the-book
   shepherds-pie-guy-the-book.html
   ============================================================ */
html.pg-the-book {
  --bone: #F2F3EB;
  --bone-2: #EAEBE0;
  --paper: #FBFAF4;
  --forest: #10231A;
  --forest-2: #193024;
  --forest-3: #21402F;
  --green: #2F5B39;
  --green-soft: #E0E9D8;
  --gold: #BB8B3C;
  --gold-soft: #E7D3A6;
  --red: #9A2B25;
  --red-bright: #B83328;
  --red-dark: #73201C;
  --ink: #283029;
  --muted: #697166;
  --line: rgba(16, 35, 26, .12);
  --d: "Times New Roman", Times, serif;
  --s: "Hanken Grotesk", system-ui, sans-serif;
  --h: "Caveat", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.pg-the-book,
html.pg-the-book * {
  box-sizing: border-box
}

html.pg-the-book body {
  margin: 0;
  font-family: var(--s);
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

html.pg-the-book h1,
html.pg-the-book h2,
html.pg-the-book h3,
html.pg-the-book h4 {
  font-family: var(--d);
  font-weight: 500;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest)
}

html.pg-the-book img {
  display: block;
  max-width: 100%
}

html.pg-the-book a {
  color: inherit
}

html.pg-the-book .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

html.pg-the-book .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s
}

html.pg-the-book .btn .ar {
  transition: transform .35s var(--ease)
}

html.pg-the-book .btn:hover .ar {
  transform: translateX(4px)
}

html.pg-the-book .btn-gold {
  background: var(--gold);
  color: #241806
}

html.pg-the-book .btn-gold:hover {
  background: #cda04f;
  transform: translateY(-2px)
}

html.pg-the-book .btn-dark {
  background: var(--forest);
  color: #fff
}

html.pg-the-book .btn-dark:hover {
  background: var(--forest-2);
  transform: translateY(-2px)
}

html.pg-the-book .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(154, 43, 37, .9)
}

html.pg-the-book .btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px)
}

html.pg-the-book .btn-line {
  background: transparent;
  color: var(--forest);
  border-color: var(--line)
}

html.pg-the-book .btn-line:hover {
  border-color: var(--forest)
}

html.pg-the-book .eyebrow {
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

html.pg-the-book .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-the-book .hand {
  font-family: var(--h);
  color: var(--red);
  font-size: 1.5rem
}

html.pg-the-book header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 233, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

html.pg-the-book .site .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0
}

html.pg-the-book .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap
}

html.pg-the-book .brand .lg-the {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(2px)
}

html.pg-the-book .brand .lg-main {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1
}

html.pg-the-book .brand .lg-guy {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(3px);
  color: var(--red)
}

html.pg-the-book .navlinks {
  display: flex;
  gap: 34px
}

html.pg-the-book .navlinks a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  text-decoration: none;
  opacity: .92;
  position: relative;
  padding: 4px 0;
  transition: opacity .3s
}

html.pg-the-book .navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease)
}

html.pg-the-book .navlinks a:hover::after,
html.pg-the-book .navlinks a.on::after {
  width: 100%
}

html.pg-the-book .navlinks a.on {
  color: var(--red)
}

html.pg-the-book .nav-right {
  display: flex;
  gap: 14px;
  align-items: center
}

html.pg-the-book .basket {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0
}

html.pg-the-book .basket svg {
  display: block
}

html.pg-the-book .basket:hover {
  border-color: var(--forest)
}

html.pg-the-book .basket .dot {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 10;
  padding: 0 2px;
  min-width: 17px;
  height: 17px;
  text-indent: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

html.pg-the-book .nav-right .acct {
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  text-decoration: none
}

html.pg-the-book .nav-right .acct:hover {
  color: var(--red)
}

@media(max-width:640px) {
  html.pg-the-book .nav-right .acct {
    display: none
  }
}

html.pg-the-book .burger {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--forest);
  cursor: pointer
}

@media(max-width:900px) {
  html.pg-the-book .navlinks {
    display: none
  }

  html.pg-the-book .burger {
    display: block
  }
}

html.pg-the-book .hero {
  padding: 64px 0 36px
}

html.pg-the-book .hero .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center
}

html.pg-the-book .hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  margin: 16px 0 0;
  max-width: 17ch
}

html.pg-the-book .hero h1 em {
  font-style: italic;
  color: var(--red)
}

html.pg-the-book .hero .lede {
  font-size: 1.16rem;
  color: var(--ink);
  max-width: 46ch;
  margin: 18px 0 0
}

html.pg-the-book .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 28px
}

html.pg-the-book .chip {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 8px 14px
}

html.pg-the-book .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

html.pg-the-book .hero-art {
  position: relative
}

html.pg-the-book .hero-art .frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1c14;
  box-shadow: 0 40px 80px -36px rgba(16, 35, 26, .6), 0 0 0 1px rgba(187, 139, 60, .4)
}

html.pg-the-book .hero-art .frame img {
  width: 100%;
  aspect-ratio: 4/3.6;
  object-fit: cover
}

html.pg-the-book .hero-art .seal {
  position: absolute;
  top: -22px;
  right: -18px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--red);
  color: #F7E6D9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: 0 18px 34px -12px rgba(0, 0, 0, .5);
  font-weight: 800;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5
}

html.pg-the-book .hero-art .seal b {
  font-family: var(--d);
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: .9
}

html.pg-the-book .story {
  padding: 56px 0;
  border-top: 1px solid var(--line)
}

html.pg-the-book .story .row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center
}

html.pg-the-book .story-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(16, 35, 26, .5);
  transform: rotate(-1.4deg)
}

html.pg-the-book .story-img img {
  width: 100%;
  aspect-ratio: 4/4.2;
  object-fit: cover
}

html.pg-the-book .story h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 14px 0 0
}

html.pg-the-book .story p {
  margin: 16px 0 0;
  color: var(--ink)
}

html.pg-the-book .story .sig {
  margin-top: 18px;
  font-family: "Mistral";
  color: var(--red);
  font-size: 1.7rem
}

html.pg-the-book .inside {
  padding: 56px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

html.pg-the-book .inside .head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 40px
}

html.pg-the-book .inside h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 12px 0 0
}

html.pg-the-book .feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

html.pg-the-book .fcard {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px
}

html.pg-the-book .fcard .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 14px
}

html.pg-the-book .fcard h3 {
  font-size: 1.2rem;
  margin-bottom: 6px
}

html.pg-the-book .fcard p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0
}

@media(max-width:880px) {
  html.pg-the-book .feat {
    grid-template-columns: repeat(2, 1fr)
  }
}

html.pg-the-book .buy {
  background: var(--bone)
}

html.pg-the-book .buy .head {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto 30px
}

html.pg-the-book .buy .head h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin-bottom: 14px
}

html.pg-the-book .buy .head p {
  color: var(--muted);
  margin: 0 auto
}

html.pg-the-book .member-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 72px;
  background: var(--forest);
  color: #EAF0E4;
  border-radius: 100px;
  padding: 16px 32px;
  text-align: center;
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 24px 50px -34px rgba(16, 35, 26, .7)
}

html.pg-the-book .member-note .mn-text {
  flex: 1
}

html.pg-the-book .member-note .star {
  flex: none;
  color: var(--gold);
  font-size: 1.1rem
}

html.pg-the-book .member-note b {
  color: var(--gold-soft);
  font-weight: 700
}

html.pg-the-book .editions {
  display: flex;
  flex-direction: column;
  gap: 34px
}

html.pg-the-book .edition {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -52px rgba(16, 35, 26, .6);
  transition: transform .5s var(--ease), box-shadow .5s
}

html.pg-the-book .edition:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 90px -50px rgba(16, 35, 26, .55)
}

html.pg-the-book .edition:nth-child(even) .ed-media {
  order: 2
}

html.pg-the-book .ed-media {
  position: relative;
  min-height: 380px;
  overflow: hidden
}

html.pg-the-book .ed-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease)
}

html.pg-the-book .edition:hover .ed-media img {
  transform: scale(1.06)
}

html.pg-the-book .ed-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(16, 35, 26, .18))
}

html.pg-the-book .ed-plate {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font-family: var(--d);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

html.pg-the-book .ed-plate::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--gold-soft)
}

html.pg-the-book .ed-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--gold);
  color: #241806;
  font-weight: 800;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px
}

html.pg-the-book .ed-body {
  padding: 46px 48px;
  /* display: flex; */
  flex-direction: column;
  justify-content: center
}

html.pg-the-book .ed-kicker {
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

html.pg-the-book .ed-kicker::after {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--gold)
}

html.pg-the-book .ed-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 12px 0 12px
}

html.pg-the-book .ed-body .lede {
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 42ch
}

html.pg-the-book .ed-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px
}

html.pg-the-book .ed-feat li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: .96rem
}

html.pg-the-book .ed-feat .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  margin-top: 1px
}

html.pg-the-book .ed-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px
}

html.pg-the-book .ed-price {
  font-family: var(--d);
  font-weight: 600;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1
}

html.pg-the-book .ed-price small {
  display: block;
  font-family: var(--s);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 4px
}

html.pg-the-book .ed-foot .btn {
  flex: none
}

html.pg-the-book .ded-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  gap: 24px;
  padding: 60px 40px;
  min-height: 380px
}

html.pg-the-book .ded-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

html.pg-the-book .ded-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 35, 26, .5), rgba(16, 35, 26, .72))
}

html.pg-the-book .ded-page {
  z-index: 2
}

html.pg-the-book .ded-page {
  position: relative;
  width: 100%;
  max-width: 330px;
  background: var(--paper);
  border-radius: 3px;
  box-shadow: 0 30px 60px -34px rgba(16, 35, 26, .5), inset 0 0 0 1px rgba(16, 35, 26, .05);
  padding: 46px 34px;
  text-align: center;
  color: var(--forest)
}

html.pg-the-book .ded-page.lastPage {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 261px;
  padding: 14px;
  min-height: 216px;
}

html.pg-the-book .pie-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

html.pg-the-book .pie-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 440;
  border-radius: 2px;
  overflow: hidden;
}

html.pg-the-book .pie-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

html.pg-the-book .pie-slide.is-active {
  opacity: 1;
}

html.pg-the-book .pie-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

html.pg-the-book .pie-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(16, 35, 26, 0.25);
  transition: background 0.3s ease;
}

html.pg-the-book .pie-dot.is-active {
  background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  html.pg-the-book .pie-slide {
    transition: none;
  }
}

html.pg-the-book .ded-page .ded-orn {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px
}

html.pg-the-book .ded-photo {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #E7E1D2;
  border: 1px solid rgba(16, 35, 26, .12);
  display: flex;
  align-items: center;
  justify-content: center
}

html.pg-the-book .ded-photo .ded-photo-ph {
  font-family: var(--s);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.2
}

html.pg-the-book .ded-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s
}

html.pg-the-book .ded-photo.has img {
  opacity: 1
}

html.pg-the-book .ded-photo.has .ded-photo-ph {
  display: none
}

html.pg-the-book .ded-upload {
  margin: 0 0 22px
}

html.pg-the-book .up-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--forest);
  border: 1.5px dashed var(--green);
  border-radius: 10px;
  padding: 13px 18px;
  transition: background .25s, border-color .25s;
  background: #fff
}

html.pg-the-book .up-btn:hover {
  background: var(--green-soft)
}

html.pg-the-book .up-btn .up-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1
}

html.pg-the-book .up-btn em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
  margin-left: 2px
}

html.pg-the-book .up-hint {
  display: block;
  margin-top: 9px;
  font-size: .78rem;
  color: var(--muted)
}

html.pg-the-book .ded-small {
  font-family: var(--d);
  font-style: italic;
  font-size: .96rem;
  color: var(--muted);
  margin: 0 0 8px
}

html.pg-the-book .ded-name {
  font-family: var(--d);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--forest);
  margin: 0 0 14px;
  line-height: 1.1;
  min-height: 1.1em;
  transition: color .2s
}

html.pg-the-book .ded-line {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5
}

html.pg-the-book .ded-line span {
  color: var(--green);
  font-weight: 700
}

html.pg-the-book .ded-rule {
  height: 1px;
  background: var(--line);
  margin: 0 auto 16px;
  width: 60%
}

html.pg-the-book .ded-no {
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0
}

html.pg-the-book .ded-input {
  margin: 0 0 22px
}

html.pg-the-book .ded-input label {
  display: block;
  font-weight: 700;
  font-size: .78rem;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: .02em
}

html.pg-the-book .ded-input input {
  width: 100%;
  font-family: var(--s);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest)
}

html.pg-the-book .ded-input input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 91, 57, .16)
}

html.pg-the-book .ded-page {
  min-height: 300px
}

@media(max-width:880px) {
  html.pg-the-book .edition {
    grid-template-columns: 1fr
  }

  html.pg-the-book .edition:nth-child(even) .ed-media {
    order: 0
  }

  html.pg-the-book .ed-media {
    min-height: 300px
  }

  html.pg-the-book .ed-body {
    padding: 36px 34px
  }

  html.pg-the-book .ded-page {
    min-height: 300px
  }
}

html.pg-the-book .club {
  padding: 60px 0
}

html.pg-the-book .club .panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #EAF0E4;
  padding: 48px 44px;
  text-align: center
}

html.pg-the-book .club .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(187, 139, 60, .22), transparent 60%);
  pointer-events: none
}

html.pg-the-book .club .eyebrow {
  color: var(--gold-soft);
  justify-content: center
}

html.pg-the-book .club .eyebrow::before {
  background: var(--gold)
}

html.pg-the-book .club h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin: 12px 0 0
}

html.pg-the-book .club p {
  color: rgba(234, 240, 228, .82);
  max-width: 56ch;
  margin: 14px auto 0
}

html.pg-the-book .club .stat {
  font-family: var(--d);
  color: var(--gold-soft);
  font-size: 2.4rem;
  margin-top: 20px
}

html.pg-the-book footer.site {
  background: var(--forest);
  color: #B9C7B2;
  padding: 40px 0;
  margin-top: 20px
}

html.pg-the-book footer .in {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center
}

html.pg-the-book footer .bn {
  font-family: var(--d);
  color: #fff;
  font-size: 1.2rem
}

html.pg-the-book footer a {
  color: #B9C7B2;
  text-decoration: none;
  font-size: .9rem;
  margin-left: 18px
}

html.pg-the-book footer a:hover {
  color: #fff
}

html.pg-the-book .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

html.pg-the-book .reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  html.pg-the-book,
  html.pg-the-book * {
    animation: none !important;
    transition-duration: .001ms !important
  }

  html.pg-the-book .reveal {
    opacity: 1;
    transform: none
  }
}

html.pg-the-book .brand-logo {
  display: inline-block;
  width: 335px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
}

html.pg-the-book footer .brand-logo {
  background-color: #F2F3EB;
  padding: 4px 8px;
  border-radius: 8px
}

html.pg-the-book header.site {
  transition: background .3s, box-shadow .3s, border-color .3s
}

html.pg-the-book .site .in {
  height: 86px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height .35s var(--ease)
}

html.pg-the-book header .brand-logo {
  transform-origin: left center;
  will-change: transform;
  transition: transform .35s var(--ease), margin-right .35s var(--ease)
}

html.pg-the-book header.site.scrolled {
  box-shadow: 0 6px 20px -16px rgba(16, 35, 26, .6)
}

html.pg-the-book header.site.scrolled .in {
  height: 70px
}

html.pg-the-book header.site.scrolled .brand-logo {
  transform: scale(1.2);
  margin: -8px -99px -8px 0
}

/* --- extracted from inline style attributes --- */
html.pg-the-book .u-jc-center {
  justify-content: center;
}

html.pg-the-book .u-padding-62px-0 {
  padding: 62px 0;
}

html.pg-the-book .u-text-align-center-3.u-text-align-center-3 {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto 30px;
}

html.pg-the-book .u-font-size-clamp-2rem-4vw-3rem-2.u-font-size-clamp-2rem-4vw-3rem-2.u-font-size-clamp-2rem-4vw-3rem-2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 10px;
}

html.pg-the-book .u-measure-muted.u-measure-muted.u-measure-muted {
  color: var(--muted);
  margin: 0 auto;
  max-width: 60ch;
}

/* ============================================================
   extracted from markup that <script> renders at runtime
   ============================================================ */
html.pg-book-bespoke .u-dim {
  opacity: .7;
}

html.pg-book-bespoke .dedication-mark {
  display: block;
  font-family: var(--fh);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 6px;
}

html.pg-book-standard .u-no-right-rule {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

html.pg-book-standard .u-mt-auto {
  margin-top: auto;
}

html.pg-book-standard .u-dim {
  opacity: .7;
}

html.pg-book-standard .print-logo {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}


.stage-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6px 20px 18px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 22px;
  align-items: start
}

@media(max-width:1000px) {
  .stage-wrap {
    grid-template-columns: 1fr
  }
}

.stage {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(16, 35, 26, .5);
  aspect-ratio: 1400/1800
}

.stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block
}

.stage image {
  transition: none
}

.toolbar {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: flex;
  gap: 8px
}

.backbtn {
  display: none;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .82rem;
  background: var(--forest);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 9px 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px -8px rgba(16, 35, 26, .6)
}

.backbtn.show {
  display: inline-flex
}

.crumb {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 5;
  font-weight: 700;
  font-size: .82rem;
  color: var(--forest);
  background: rgba(251, 250, 244, .9);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px
}

/* nation-level pins */
.natpin {
  cursor: pointer
}

.natglow {
  fill: var(--gold);
  opacity: .28;
  transition: opacity .3s, r .3s
}

.natdot {
  fill: var(--forest);
  stroke: var(--gold-soft);
  stroke-width: .3;
  transition: transform .25s var(--ease);
  transform-box: fill-box;
  transform-origin: center
}

.natlabel {
  font-family: var(--d);
  font-size: 2.6px;
  font-weight: 600;
  fill: var(--forest);
  text-anchor: middle;
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: .5
}

.natcount {
  font-family: var(--s);
  font-size: 1.5px;
  font-weight: 700;
  fill: var(--red);
  text-anchor: middle;
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: .45
}

.natpin:hover .natdot,
.natpin:focus .natdot {
  transform: scale(1.3)
}

.natpin:hover .natglow,
.natpin:focus .natglow {
  opacity: .5;
  r: 4.1
}

.lvl1hidden .natpin {
  display: none
}

/* county-level pins (per nation group) */
.natgroup {
  display: none
}

.natgroup.active {
  display: block
}

.leader {
  stroke: var(--forest);
  stroke-width: .14;
  opacity: .55
}

.dot {
  fill: var(--forest);
  stroke: var(--paper);
  stroke-width: .12
}

.pin {
  cursor: pointer
}

.pin .lblcircle {
  fill: #fff;
  stroke: var(--forest);
  stroke-width: .16;
  transition: fill .2s, stroke .2s
}

.pin .lbltext {
  font-family: var(--s);
  font-weight: 800;
  font-size: 1.05px;
  fill: var(--forest);
  text-anchor: middle
}

.pin.unlocked .lblcircle {
  fill: var(--gold);
  stroke: var(--red)
}

.pin.unlocked .lbltext {
  fill: #241806
}

.pin:hover,
.pin:focus {
  outline: none
}

.pin:hover .lblcircle,
.pin:focus .lblcircle,
.pin.active .lblcircle {
  fill: var(--red);
  stroke: var(--red)
}

.pin:hover .lbltext,
.pin:focus .lbltext,
.pin.active .lbltext {
  fill: #fff
}

.legend-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
  font-size: .78rem;
  font-weight: 700
}

.legend-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.sw {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  border: 1.5px solid var(--forest)
}

.sw.u {
  background: var(--gold)
}

.sw.l {
  background: #fff
}

.panel {
  position: sticky;
  top: 20px;
  min-height: 260px
}

.panel .ph-empty {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
  padding: 40px 20px
}

.panel .ph-empty .ic {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px
}

/* Recipe card — matches the reference layout */
.rc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 35, 26, .08)
}

/* Featured image — same structure as .leaf-photo (img + gradient ::after). */
.rc-media {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: #1a1f1c
}

.rc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 18, 12, .72))
}

.rc-country {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.rc-country i {
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block
}

.rc-body {
  padding: 22px 24px 20px
}

.rc-title {
  font-family: var(--d);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 10px
}

.rc-desc {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px
}

.rc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px
}

.rc-page {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.rc-page b {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0;
  color: var(--red);
  margin-left: 6px
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  padding: 9px 14px;
  white-space: nowrap
}

.rc-btn.locked {
  background: var(--gold);
  color: #241806
}

.offmap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px
}

.offmap .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--paper);
  border: 1px dashed var(--gold);
  border-radius: 14px;
  padding: 16px 20px;
  flex-wrap: wrap
}

.offmap .card b {
  color: var(--forest)
}

.offmap p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink)
}

.note {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 30px;
  color: var(--muted);
  font-size: .8rem;
  text-align: center
}

/* Active pin is raised above overlapping pins by re-appending it in the DOM
     (see selectPin in index.html) — SVG paints by document order, not z-index. */
.iom-land {
  display: none;
}

#gallery .wrap .head.reveal.in {
  max-width: 65ch;
}

#join .wrap .box.reveal.in .panel p {
  max-width: 100%;
}

html.pg-about .ab-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4rem);
}

#flour-particles-container {
  display: none;
}

.ctaband .wrap .panel.reveal.in .btn.btn-gold {
  position: relative;
  z-index: 3;
}

.ctaband .wrap .panel.reveal.in h2 {
  position: relative;
  z-index: 3;
}

.ctaband .wrap .panel.reveal.in p {
  position: relative;
  z-index: 3;
}

.ctaband .wrap .panel.reveal.in .eyebrow.c.u-gold-soft {
  position: relative;
  z-index: 3;
}

/* --- INTERACTIVE STORE & SHOP LISTING SYSTEM --- */
.interactive-store-hero {
  padding: 3rem 0 5rem 0;
  background-color: var(--paper-base);
}

.store-header-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.store-header-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--accent-red);
  transform: rotate(-2deg);
  margin-bottom: 0.25rem;
}

.store-header-title {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  color: var(--ink-primary);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.store-header-desc {
  font-size: 1.1rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* Interactive Canvas Container */
.interactive-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  /* NOTE: must stay visible so popovers anchored to lower-shelf hotspots are
     not clipped at the bottom edge of the canvas. The image itself is rounded
     by its own border-radius below instead of by clipping the wrapper. */
  overflow: visible;
  box-shadow: 0 20px 50px rgba(14, 53, 30, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--paper-grain);
  background: var(--ink-primary);
}

.interactive-image-bg {
  display: block;
  width: 100%;
  height: auto;
  /* Rounds the artwork now that the wrapper no longer clips. */
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* SVG Overlay for Polygons/Rects */
.interactive-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.interactive-region {
  fill: transparent;
  /* stroke: rgba(198, 147, 82, 0.35); */
  /* stroke-width: 1.5;
  stroke-dasharray: 4 4; */
  cursor: pointer;
  pointer-events: auto;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

/* .interactive-region:hover, .interactive-region.active {
  fill: rgba(168, 40, 35, 0.12);
  stroke: var(--accent-red);
  stroke-width: 2.5;
  stroke-dasharray: 0;
} */

/* Individual product regions are decorative only — they highlight along with
   their shelf but never capture the cursor, so the shelf's emoji pin stays the
   single hover target on every shelf. */
.interactive-region--product {
  fill: rgba(198, 147, 82, 0.02);
  pointer-events: none;
  cursor: default;
}

/* .interactive-region--product:hover,
.interactive-region--product.active {
  fill: rgba(168, 40, 35, 0.14);
  stroke: var(--accent-red);
  stroke-width: 2;
  stroke-dasharray: 0;
} */

/* Hotspot Pulse Pins */
.hotspot-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hotspot-pin.dimmed {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(0.85);
}

.hotspot-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-forest);
  color: var(--paper-base);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  font-size: 1.05rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

/* The badge now holds an inline SVG rather than an emoji glyph. */
.hotspot-badge svg {
  display: block;
  stroke: currentColor;
}

/* Emoji badge glyph — sized and centred to match the SVG artwork it replaces. */
.hotspot-emoji {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.hotspot-badge::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  opacity: 0.6;
  animation: hotspotPulse 2.5s infinite;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0.15; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hotspot-pin:hover .hotspot-badge,
.hotspot-pin.active .hotspot-badge {
  background: var(--accent-red);
  border-color: #FFFFFF;
  transform: scale(1.2);
  box-shadow: 0 6px 18px rgba(168, 40, 35, 0.5);
}

/* NOTE: products no longer render their own pin. Each shelf category shows a
   single pin and a single popover; the per-product rects above simply widen the
   hover target for that one shelf popover. */

/* On coarse-pointer devices, drop the decorative product outlines entirely so
   the shelf emoji pins read clearly at small sizes. */
@media (hover: none), (max-width: 767px) {
  .interactive-region--product {
    display: none;
  }
}

/* Floating Popover Card (High Performance, No Backdrop-Filter Lag) */
.store-popover-card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 280px;
  background: #FAF6ED;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 1.1rem;
  box-shadow: 0 12px 32px rgba(14, 53, 30, 0.22), 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  /* Transform is transitioned too, so the card glides when it re-anchors to a
     neighbouring product instead of snapping between positions. */
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.2s ease;
  pointer-events: none;
}

.store-popover-card.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.popover-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(49, 81, 54, 0.1);
  color: var(--accent-green);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.popover-count {
  font-size: 0.8rem;
  color: var(--ink-secondary);
  font-weight: 600;
}

.popover-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink-primary);
  margin-bottom: 0.4rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Holds the category's inline SVG so it aligns with the title text and never
   shrinks when the category name wraps to two lines. */
.popover-title-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--accent-green);
}

.popover-emoji {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.popover-desc {
  font-size: 0.88rem;
  color: var(--ink-secondary);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.popover-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(168, 40, 35, 0.25);
}

.popover-cta-btn,
.popover-cta-btn:link,
.popover-cta-btn:visited,
.popover-cta-btn:hover,
.popover-cta-btn:focus,
.popover-cta-btn:active {
  color: #FFFFFF;
}

.popover-cta-btn:hover {
  background: var(--accent-forest);
  transform: translateY(-2deg);
  box-shadow: 0 6px 16px rgba(14, 53, 30, 0.3);
}

/* Category Grid / Quick Nav Bar */
.category-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  max-width: 1280px;
  margin: 2.5rem auto 0 auto;
}

.category-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--paper-white);
  border: 1px solid var(--border-sketchy);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink-primary);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-tape);
}

.category-quick-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-paper);
}

.category-quick-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.category-quick-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

/* --- SHOP LISTING PAGE STYLES --- */
.shop-listing-section {
  /* clear the fixed topbar (--topbar-h) + fixed header before content starts */
  padding: calc(var(--topbar-h) + 96px + 2.5rem) 0 5rem 0;
  background-color: var(--paper-base);
  min-height: 80vh;
}

.shop-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-secondary);
  margin-bottom: 1.5rem;
}

.shop-breadcrumbs a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.shop-breadcrumbs a:hover {
  text-decoration: underline;
}

.shop-header-banner {
  background: linear-gradient(135deg, var(--accent-forest) 0%, #154528 100%);
  color: var(--paper-base);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

.shop-header-banner::after {
  content: 'SHEPHERD\'S PIE GUY';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.05;
  color: var(--paper-white);
  pointer-events: none;
}

.shop-banner-tag {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--accent-gold);
}

.shop-banner-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--paper-white);
  margin-bottom: 0.5rem;
}

.shop-banner-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 650px;
}

/* Shop Layout Split */
.shop-layout-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 992px) {
  .shop-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* Category Sidebar Filters */
.shop-sidebar {
  background: var(--paper-white);
  border: 1px solid var(--border-sketchy);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-tape);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--paper-grain);
}

.filter-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--ink-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-cat-btn:hover {
  background: var(--paper-grain);
  color: var(--accent-forest);
}

.filter-cat-btn.active {
  background: var(--accent-forest);
  color: var(--paper-base);
  font-weight: 600;
}

.filter-cat-count {
  font-size: 0.78rem;
  opacity: 0.75;
  background: rgba(0,0,0,0.06);
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
}

.filter-cat-btn.active .filter-cat-count {
  background: rgba(255,255,255,0.2);
  color: var(--paper-base);
}

/* Controls Bar (Search & Sort) */
.shop-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.shop-search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.shop-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  background: var(--paper-white);
  border: 1px solid var(--border-sketchy);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-primary);
  transition: var(--transition-smooth);
}

.shop-search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(198, 147, 82, 0.2);
}

.shop-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-secondary);
  font-size: 1.1rem;
  pointer-events: none;
}

.shop-sort-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-sort-select {
  padding: 0.75rem 1rem;
  background: var(--paper-white);
  border: 1px solid var(--border-sketchy);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-primary);
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--paper-white);
  border: 1px solid var(--border-sketchy);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-tape);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-paper);
  border-color: var(--accent-gold);
}

.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--accent-red);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(168, 40, 35, 0.3);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 190px;
  background: var(--paper-grain);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink-primary);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--paper-grain);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-forest);
}

.product-add-btn {
  background: var(--accent-forest);
  color: var(--paper-base);
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-add-btn:hover {
  background: var(--accent-red);
  transform: scale(1.05);
}

/* Basket Modal Notification */
.basket-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--accent-forest);
  color: var(--paper-base);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.basket-toast.show {
  transform: translateY(0);
  opacity: 1;
}


/* --- GRID SYSTEM & LAYOUT --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding: 7.5rem 0;
}

.divider {
  width: 100%;
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,1 Q50,0.5 100,1' fill='none' stroke='%23CAC2B1' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

