/* =========================================================
   PedagogyVentures — Paper & Origami edition
   Components layer. Tokens + base + type live in tokens.css.
   ========================================================= */

@import url("tokens.css");


/* =========================================================
   SECTION ZEBRA — no two sections in a row share a background
   ========================================================= */
#root > section {
  position: relative;
  background-color: var(--paper);
}
#root > section:nth-of-type(even) {
  background-color: var(--paper-2);
}
/* Keep the decorative/branded backgrounds the zebra would otherwise steal */
#root > section.paper-texture {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(61,112,104,0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(61,112,104,0.03)  0 1px, transparent 2px),
    radial-gradient(circle at 45% 80%, rgba(14,18,38,0.025)   0 1px, transparent 2px),
    linear-gradient(180deg, var(--paper) 0%, #f7f3e8 100%);
  background-size: 180px 180px, 240px 240px, 300px 300px, 100% 100%;
}
#root > section.pv-ethics.vfi-section {
  background-color: var(--cream);
  background-image: none;
}
#root > section.pv-trusted {
  background-color: var(--paper-kraft);
  background-image: none;
}
#root > section.pv-clientssay {
  background:
    radial-gradient(circle at 20% 30%, rgba(61,112,104,0.04) 0 8px, transparent 9px) 0 0/80px 80px,
    var(--paper-kraft);
}
#root > section.pv-footer {
  background: var(--pv-blue);
  color: #fff;
}
#root > section.paper-texture-subtle {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(14,18,38,0.02)  0 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(61,112,104,0.025) 0 1px, transparent 2px),
    linear-gradient(180deg, var(--cream) 0%, #f7f3e8 100%);
  background-size: 200px 200px, 260px 260px, 100% 100%;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-2);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary { background: var(--pv-blue); color: #fff; }
.btn-primary:hover {
  background: var(--pv-blue-200);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(66,86,172,.28);
}
.btn-outline {
  background: transparent;
  color: var(--pv-blue);
  border: 1.5px solid var(--pv-blue);
  padding: 11.5px 24.5px;
}
.btn-outline:hover { background: var(--pv-blue-200); color: var(--ink); border-color: var(--pv-blue-200); }

.btn .plane-arrow { transition: transform var(--dur) var(--ease-glide); }
.btn:hover .plane-arrow { transform: translateX(6px) translateY(-3px) rotate(-4deg); }

.read-more {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--pv-blue); font-size: 14px; font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  margin-top: 20px;
  transition: gap var(--dur) var(--ease-glide);
}
.read-more:hover { gap: 16px; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 36px; }

/* =========================================================
   PAPER CARD — the base building block
   ========================================================= */
.paper-card {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(14,18,38,.04),
    0 2px 4px rgba(14,18,38,.05),
    0 12px 28px rgba(14,18,38,.07);
}
/* The folded flap in the top-left corner */
.paper-card-flap {
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  background:
    linear-gradient(135deg, #eadfc2 0%, #d6c89e 50%, transparent 50%);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.paper-card-flap::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, transparent 49%, rgba(14,18,38,0.06) 50%, transparent 52%);
}

/* =========================================================
   STAMPS — rubber-stamp-style small label
   ========================================================= */
.paper-stamp {
  display: inline-block;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid currentColor;
  border-radius: 2px;
  background: rgba(253,251,244,0.6);
}
.paper-stamp-green { color: var(--pv-green); }
.paper-stamp-navy  { color: var(--pv-blue); }

/* Hand-written accent text */
.hand {
  font-family: var(--font-hand);
  font-weight: 500;
  font-size: 22px;
  color: var(--pv-green);
  line-height: 1;
}

/* =========================================================
   NAV
   ========================================================= */
.pv-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,251,244,0.88);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.pv-nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.pv-nav .brand img { height: 72px; display: block; }
.pv-nav .links { display: flex; align-items: center; gap: 28px; }
.pv-nav .links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: 4px 0; transition: color var(--dur) var(--ease); white-space: nowrap; }
.pv-nav .links a:not(.btn):hover, .pv-nav .links a.active:not(.btn) { color: var(--pv-blue); }
.pv-nav .nav-cta.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 12px 26px 12px 22px;
  background: var(--pv-green);
  color: #fff;
  border: 0;
  border-radius: var(--r-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  --fold: 16px;
  /* 6px rounded corners on top-left, bottom-left, bottom-right
     (6-point arc per corner for a smooth curve), with the folded
     diagonal cut preserved on the top-right. */
  clip-path: polygon(
    0 6px,
    0.29px 4.15px,
    1.15px 2.47px,
    2.47px 1.15px,
    4.15px 0.29px,
    6px 0,
    calc(100% - var(--fold)) 0,
    100% var(--fold),
    100% calc(100% - 6px),
    calc(100% - 0.29px) calc(100% - 4.15px),
    calc(100% - 1.15px) calc(100% - 2.47px),
    calc(100% - 2.47px) calc(100% - 1.15px),
    calc(100% - 4.15px) calc(100% - 0.29px),
    calc(100% - 6px) 100%,
    6px 100%,
    4.15px calc(100% - 0.29px),
    2.47px calc(100% - 1.15px),
    1.15px calc(100% - 2.47px),
    0.29px calc(100% - 4.15px),
    0 calc(100% - 6px)
  );
  box-shadow: 0 8px 18px rgba(61,112,104,0.20);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease-glide);
}
.pv-nav .nav-cta.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--pv-green-400, #6d9892);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.pv-nav .nav-cta.btn:hover {
  background: var(--pv-blue, #4256ac);
  color: #fff;
  transform: translateY(-2px) rotate(-0.6deg);
  box-shadow: 0 14px 22px rgba(66,86,172,0.28);
}
.pv-nav .nav-cta.btn:hover::before {
  background: var(--pv-blue-200, #b8c2e6);
}
.pv-nav .nav-cta.btn:active {
  transform: translateY(0) rotate(0);
}

/* =========================================================
   HERO
   ========================================================= */
.pv-hero {
  position: relative;
  padding: 110px 0 160px;
  overflow: hidden;
}
.hero-trail {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-trail-2 { opacity: 0.7; }
.hero-plane {
  position: absolute;
  right: 4%; top: 28%;
  z-index: 1;
  animation: plane-drift 7s var(--ease-glide) infinite alternate;
  filter: drop-shadow(0 18px 20px rgba(14,18,38,0.10));
}
@keyframes plane-drift {
  0%   { transform: translate(0, 0) rotate(-2deg); }
  100% { transform: translate(-14px, -10px) rotate(1deg); }
}
@keyframes hoverPlane {
  0%, 100% { transform: translate(0, -6px) rotate(0deg); }
  50%      { transform: translate(-6px, -12px) rotate(-3deg); }
}
.pv-hero-content { position: relative; z-index: 2; }
.pv-hero .pv-display { max-width: 16ch; }
.pv-hero .pv-lede { margin: 0 0 8px; }
.hero-tear {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 28px;
  display: block;
  transform: scaleY(-1);
}

/* =========================================================
   ETHICS BOOK — thin horizontal banner
   ========================================================= */
.pv-ethics {
  padding: 48px 0;
  background: var(--paper-2);
  position: relative;
}
.pv-ethics::before {
  /* torn top edge */
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 18' preserveAspectRatio='none'><path d='M0,18 L0,4 L60,8 L120,2 L200,10 L280,4 L360,12 L440,6 L520,14 L600,4 L680,12 L760,6 L840,14 L920,4 L1000,12 L1080,6 L1160,14 L1240,4 L1320,12 L1400,6 L1440,10 L1440,18 Z' fill='%23fdfbf4'/></svg>");
  background-size: 100% 100%;
}
.ethics-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.ethics-book-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ethics-book-flat {
  height: 150px;
  width: auto;
  display: block;
  /* Image already has a built-in ground shadow — keep CSS shadow minimal */
  filter: drop-shadow(0 4px 8px rgba(14,18,38,0.12));
}
.ethics-copy { min-width: 0; }
.ethics-title {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.15 !important;
  margin: 6px 0 4px !important;
}
.ethics-lede {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0 0 14px;
  max-width: 60ch;
}
.ethics-specs {
  display: grid;
  grid-template-columns: minmax(180px, auto) auto auto auto;
  gap: 4px 32px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px dashed var(--rule-ink);
  justify-content: start;
}
.ethics-specs > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ethics-specs dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.ethics-specs dd {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.ethics-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  white-space: nowrap;
}
.ethics-tag {
  padding: 4px 12px;
  background: #fff;
  border: 1px dashed var(--rule-ink);
  transform: rotate(-2deg);
  font-size: 18px !important;
}

/* =========================================================
   OUR PROJECTS
   ========================================================= */
.pv-projects {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pv-projects::before {
  /* a big looping flight path in the background */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 600' preserveAspectRatio='none'><path d='M-40,380 C260,140 700,480 1000,280 S1440,60 1480,120' stroke='%233d7068' stroke-width='1.5' stroke-dasharray='5 9' stroke-linecap='round' fill='none' opacity='0.28'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.pv-section-header { margin-bottom: 60px; max-width: 720px; }
.pv-section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.pv-section-header.center .pv-h2 { margin-left: auto; margin-right: auto; }
.cases-header {
  position: relative;
  display: block;
  max-width: none;
  margin-bottom: 48px;
  padding-right: 320px;
}
.cases-header .pv-h2 { margin-bottom: 0; }
.cases-header-text { position: relative; }
.cases-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.cases-cta svg:first-child { flex-shrink: 0; }
.cases-header-tag {
  position: absolute;
  top: -12px;
  right: 0;
}

/* =========================================================
   LUGGAGE TAG — proper shape with rounded notch + string
   ========================================================= */
.luggage-tag {
  position: relative;
  width: 320px;
  padding-left: 14px; /* room for the string loop */
  padding-top: 10px;
}
.luggage-string {
  position: absolute;
  left: -4px;
  top: -20px;
  width: 90px;
  height: 90px;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.14));
}
.luggage-body {
  position: relative;
  width: 300px;
  height: 190px;
  background: #fffdf5;
  /* True luggage-tag shape: pentagonal with a rounded pointed tip on the LEFT. */
  clip-path: path('M 4 95 L 44 14 Q 50 4 62 4 L 292 4 Q 300 4 300 12 L 300 178 Q 300 186 292 186 L 62 186 Q 50 186 44 176 Z');
  box-shadow:
    0 2px 0 rgba(14,18,38,0.05),
    0 18px 28px rgba(14,18,38,0.10);
}
.luggage-inner-border {
  position: absolute;
  left: 56px; right: 12px; top: 14px; bottom: 14px;
  border: 1px dashed rgba(14,18,38,0.26);
  pointer-events: none;
  z-index: 2;
}
.luggage-grommet {
  position: absolute;
  left: 24px;
  top: 95px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.luggage-grommet-hole {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #eae2cc;
  box-shadow:
    inset 0 0 0 1.5px #8a8270,
    inset 0 1.5px 2px rgba(0,0,0,0.24);
}
.luggage-content {
  position: absolute;
  z-index: 2;
  top: 14px; left: 62px; right: 18px; bottom: 14px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.luggage-stamp {
  align-self: flex-start;
  display: inline-block;
  border: 2px solid var(--pv-green);
  color: var(--pv-green);
  padding: 5px 10px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  background: rgba(61,112,104,0.03);
  margin-bottom: 10px;
}
.luggage-stamp > div + div { margin-top: 2px; }
.luggage-stamp > div { display: block; }
.luggage-rows {
  margin: 0;
  display: grid;
  gap: 3px;
}
.luggage-rows > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px;
  align-items: baseline;
}
.luggage-rows dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.luggage-rows dd {
  margin: 0;
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
}

/* =========================================================
   PASSPORT — paper accent in Client Work
   ========================================================= */
.passport {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 300px;
  aspect-ratio: 1.45 / 1;
  background: #2a504b;
  color: #f5efd8;
  padding: 14px;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1.5px rgba(245,239,216,0.25),
    0 2px 0 rgba(14,18,38,0.06),
    0 16px 28px rgba(14,18,38,0.12);
}
.passport-spine {
  position: absolute;
  left: 50%; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(245,239,216,0.25);
  transform: translateX(-50%);
}
.passport-page {
  padding: 6px 10px;
  position: relative;
}
.passport-page-left {
  border-right: 1px dashed rgba(245,239,216,0.18);
}
.passport-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  line-height: 1.05;
  color: #f5efd8;
  margin-bottom: 2px;
}
.passport-sub {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,216,0.62);
  margin-bottom: 12px;
}
.passport-rows {
  margin: 0;
  display: grid;
  gap: 5px;
}
.passport-rows > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  gap: 6px;
}
.passport-rows dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,216,0.55);
}
.passport-rows dd {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #f5efd8;
}
.passport-page-right {
  position: relative;
}
.passport-stamp {
  position: absolute;
  border: 1.5px solid rgba(245,239,216,0.75);
  color: rgba(245,239,216,0.92);
  padding: 5px 8px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 11px;
  line-height: 1;
  background: rgba(245,239,216,0.04);
  text-align: center;
}
.passport-stamp .ps-sub {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 7px;
  letter-spacing: 0.14em;
  margin-top: 3px;
  opacity: 0.75;
}
.passport-stamp-1 { top: 12px; left: 12px; transform: rotate(-8deg); }
.passport-stamp-2 { top: 52px; right: 14px; transform: rotate(6deg); border-radius: 999px; padding: 4px 10px; font-size: 10px; }
.passport-stamp-3 { bottom: 12px; left: 26px; transform: rotate(-3deg); }

/* AIRMAIL envelope (reusable) */
.airmail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #fdfbf4;
  border: 1px solid var(--rule);
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 16px 28px rgba(14,18,38,0.08);
}
.airmail-border {
  position: absolute; inset: 0;
  pointer-events: none;
  border: 5px solid transparent;
  background:
    repeating-linear-gradient(45deg,
      #4256ac 0 10px, transparent 10px 20px,
      #b8423a 20px 30px, transparent 30px 40px) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.airmail-flap {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 55%;
  background: linear-gradient(180deg, #fdfbf4 0%, #f5f1e6 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-bottom: 1px solid var(--rule);
}
.airmail-stamp {
  position: absolute;
  right: 14px; top: 14px;
  width: 54px; height: 64px;
  background: #fffdf5;
  border: 1px dashed var(--rule-ink);
  padding: 4px;
  transform: rotate(-3deg);
}
.airmail-stamp-inner {
  width: 100%; height: 100%;
  border: 1px solid var(--pv-green);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.airmail-postage {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--pv-green);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.project-card { padding: 40px 36px 36px; }
.project-card:nth-child(1) { transform: rotate(-0.5deg); }
.project-card:nth-child(2) { transform: rotate(0.6deg); }
.project-card:hover { transform: translateY(-3px) rotate(0); }
.project-card { transition: transform var(--dur) var(--ease); }
.project-logo {
  width: 84px; height: 84px;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  margin-bottom: 24px;
  border: 1px solid var(--rule);
  padding: 10px;
}
.project-logo img { width: 100%; height: 100%; object-fit: contain; }
.project-card p { color: var(--fg-3); font-size: 15px; line-height: 1.65; margin: 0; }

/* =========================================================
   EXPERTISE MEETS
   ========================================================= */
.pv-expertise {
  padding: 120px 0;
  border-top: 1px dashed var(--rule-ink);
  border-bottom: 1px dashed var(--rule-ink);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
/* =========================================================
   EXPERTISE MEETS — Flight Plan
   ========================================================= */
.pv-expertise {
  padding: 120px 0;
  border-top: 1px dashed var(--rule-ink);
  border-bottom: 1px dashed var(--rule-ink);
  position: relative;
}
.expertise-header {
  margin-bottom: 56px;
}
.expertise-title {
  max-width: none;
  margin: 0;
  white-space: nowrap;
  line-height: 0.95;
  padding: 0;
}
.expertise-sub-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-top: -4px;
}
.expertise-lede {
  font-size: 19px;
  line-height: 1.3;
  color: var(--fg-3);
  max-width: none;
  margin: 0;
  white-space: nowrap;
}
.expertise-arrow {
  width: 180px; height: 80px;
  align-self: end;
  transform: translateY(8px);
}
.expertise-arrow text { font-style: italic; letter-spacing: 0.02em; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.principle-card {
  position: relative;
  background: #fdfcf8;
  border: 1px solid var(--rule);
  padding: 40px 32px 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 14px 28px rgba(14,18,38,0.06);
  transition: transform var(--dur) var(--ease);
}
.principle-card:nth-child(even) { transform: rotate(0.4deg); }
.principle-card:nth-child(odd)  { transform: rotate(-0.4deg); }
.principle-card:hover { transform: rotate(0deg) translateY(-3px); }
.principle-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--muted);
}
.principle-stamp {
  display: inline-block;
  align-self: flex-start;
  border: 3px solid var(--pv-green);
  color: var(--pv-green);
  padding: 14px 18px 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  margin-bottom: 28px;
  opacity: 0.92;
  background: rgba(61,112,104,0.03);
}
  margin-bottom: 22px;
  opacity: 0.92;
  background: rgba(61,112,104,0.03);
}
.principle-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-3);
  margin: 0;
}

/* projects headline */
.projects-headline { max-width: 26ch; }

/* (old rules retained below for backwards-compat if referenced) */
.expertise-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 20px;
}

/* =========================================================
   CASES
   ========================================================= */
.pv-cases { padding: 80px 0 100px; }
.cases-stack { display: flex; flex-direction: column; gap: 96px; }
.case-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-row.flip { grid-template-columns: 1fr 1.1fr; }
.case-row.flip .case-photo-wrap { order: 2; }
.case-row.flip .case-body { order: 1; }
.case-photo-wrap {
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform var(--dur) var(--ease);
}
.case-row.flip .case-photo-wrap { transform: rotate(1.5deg); }
.case-photo-wrap:hover { transform: rotate(0) translateY(-3px); }
.case-photo {
  aspect-ratio: 4/3;
  background: var(--pv-blue-100);
  overflow: hidden;
  border: 6px solid #fdfcf8;
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 14px 34px rgba(14,18,38,0.14);
}
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-photo-wrap .paper-stamp {
  position: absolute;
  right: -12px; bottom: 20px;
}
.case-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv-green);
  margin-bottom: 14px;
}
.case-ps { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.case-ps > div { font-size: 15px; line-height: 1.65; color: var(--fg-3); }
.case-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pv-green);
  margin-right: 4px;
}

/* =========================================================
   SCRAPBOOK — case-study pages (shared home + client-work)
   ========================================================= */
.scrapbook {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 72px;
}
.scrap-page {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  padding: 40px 44px 44px;
  background: var(--cream);
  border: 1px solid #e4d7b6;
  border-radius: 2px;
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 14px 28px rgba(14,18,38,0.10);
  transform: rotate(var(--page-rot, 0deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-items: start;
  background-image:
    linear-gradient(to bottom, rgba(122,140,209, 0.04) 0 32px, transparent 32px),
    repeating-linear-gradient(
      to bottom,
      transparent 0 27px,
      rgba(66, 86, 172, 0.08) 27px 28px
    );
}
.scrap-page:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 4px 0 rgba(14,18,38,0.05), 0 20px 40px rgba(14,18,38,0.14);
}
.scrap-page::before {
  content: '';
  position: absolute;
  left: 58px;
  top: 16px; bottom: 16px;
  width: 1px;
  background: rgba(122, 140, 209, 0.28);
}
.scrap-tape {
  position: absolute;
  width: 88px; height: 20px;
  opacity: 0.78;
  background-image: repeating-linear-gradient(135deg, transparent 0 4px, rgba(255,255,255,0.35) 4px 6px);
  box-shadow: 0 2px 4px rgba(14,18,38,0.08);
  z-index: 3;
  pointer-events: none;
}
.scrap-tape-tl { top: -10px; left: -14px; transform: rotate(-32deg); }
.scrap-tape-br { bottom: -10px; right: -14px; transform: rotate(-32deg); }
.scrap-page.flip .scrap-tape-tl { left: auto; right: -14px; transform: rotate(32deg); }
.scrap-page.flip .scrap-tape-br { right: auto; left: -14px; transform: rotate(32deg); }
.tape-red   { background-color: rgba(122, 140, 209, 0.62); }
.tape-blue  { background-color: rgba(66, 86, 172, 0.55); }
.tape-green { background-color: rgba(42, 80, 75, 0.58); }
.scrap-photo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 12px;
}
.scrap-page.flip { grid-template-columns: 1fr 300px; gap: 44px; }
.scrap-page.flip .scrap-photo-col { order: 2; align-items: flex-end; }
.scrap-page.flip .scrap-body      { order: 1; min-width: 0; }
.scrap-page.flip .scrap-locationbar { align-self: flex-end; }
.scrap-page .scrap-body { min-width: 0; width: 100%; }
.scrap-page .scrap-pair { width: 100%; }
.polaroid {
  background: #fff;
  padding: 16px 16px 16px;
  box-shadow: 0 6px 18px rgba(15,20,35,0.14), 0 1px 0 rgba(15,20,35,0.04);
  transform: rotate(var(--photo-rot, -2deg));
  position: relative;
  width: 100%;
  max-width: 340px;
}
.polaroid::after {
  content: '';
  position: absolute;
  inset: 16px;
  box-shadow: inset 0 0 40px rgba(14,18,38,0.09);
  pointer-events: none;
}
.polaroid-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #efe9d5;
}
.polaroid-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(0.96);
}
.scrap-locationbar {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  background: #f4efe0;
  border: 1px solid var(--kraft-border);
  border-radius: 2px;
  font-family: var(--font-mono);
  color: var(--artifact-ink);
  transform: rotate(-1deg);
  box-shadow: 0 2px 4px rgba(15,20,35,0.06);
  align-self: flex-start;
}
.scrap-loc-place {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scrap-loc-dot { color: rgba(42,80,75,0.4); font-weight: 700; }
.scrap-loc-year {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #3d7068;
  font-weight: 600;
}
.scrap-body { padding-top: 4px; position: relative; }
.scrap-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.scrap-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.scrap-stamp {
  position: relative;
  top: -4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  padding: 5px 12px 4px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transform: rotate(4deg);
  white-space: nowrap;
  opacity: 0.88;
}
.scrap-stamp-red   { color: var(--pv-blue-200); }
.scrap-stamp-blue  { color: #4256ac; }
.scrap-stamp-green { color: #2a504b; }
.scrap-sub {
  font-family: 'Caveat', 'Shadows Into Light', var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: #3d7068;
  margin: 0 0 22px;
}
.scrap-pair {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px dashed rgba(42,80,75,0.35);
}
.scrap-pair:last-child { border-bottom: 1px dashed rgba(42,80,75,0.35); }
.scrap-pair-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--pv-green);
  text-transform: uppercase;
  padding-top: 4px;
  font-weight: 700;
}
.scrap-pair-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
@media (max-width: 900px) {
  .scrapbook { gap: 56px; }
  .scrap-page { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .scrap-page.flip { grid-template-columns: 1fr; }
  .scrap-page.flip .scrap-photo-col { align-items: flex-start; order: initial; }
  .scrap-page.flip .scrap-body { order: initial; padding-right: 0; }
  .scrap-page.flip .scrap-pair { padding-right: 0; }
  .polaroid { margin: 0 auto; }
}

/* =========================================================
   TRUSTED BY — kraft strip
   ========================================================= */
.pv-trusted {
  padding: 72px 0;
  background: var(--paper-kraft);
  position: relative;
  border-top: 1px dashed var(--rule-ink);
  border-bottom: 1px dashed var(--rule-ink);
}
.trusted-label {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 40px;
}
.trusted-label .dash { width: 40px; height: 1.5px; background: var(--pv-blue); opacity: 0.6; }
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 44px;
  align-items: center;
  justify-items: center;
}
.trusted-logos img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter var(--dur) var(--ease);
  mix-blend-mode: multiply;
}
.trusted-logos img:hover { filter: grayscale(0) opacity(1); }

/* =========================================================
   CLIENTS SAY — paper cards on a pinboard
   ========================================================= */
.pv-clientssay {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(61,112,104,0.04) 0 8px, transparent 9px) 0 0/80px 80px,
    var(--paper);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 44px;
  margin-top: 48px;
}
.testimonial-card {
  position: relative;
  background: #fdfcf8;
  padding: 40px 36px 32px;
  margin: 0;
  border: 1px solid var(--rule);
  box-shadow:
    0 2px 0 rgba(14,18,38,0.04),
    0 18px 36px rgba(14,18,38,0.10),
    0 32px 60px rgba(14,18,38,0.06);
  transition: transform var(--dur) var(--ease);
}
.testimonial-card:hover { transform: rotate(0deg) translateY(-4px) !important; }
.testimonial-card::before {
  /* red thumbtack */
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e06a5a, #b8423a);
  box-shadow: 0 3px 6px rgba(14,18,38,0.3);
  transform: translateX(-50%);
}
.testimonial-quotemark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--pv-green);
  opacity: 0.35;
  margin-bottom: 8px;
  height: 36px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-rule {
  height: 1px;
  background: repeating-linear-gradient(to right, var(--rule-ink) 0 4px, transparent 4px 8px);
  margin-bottom: 12px;
}
.testimonial-meta .name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.testimonial-meta .role {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* =========================================================
   READY CTA — boarding-pass-style paper ticket
   ========================================================= */
.pv-readycta { padding: 120px 0; }
.ticket {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  background: #fdfcf8;
  position: relative;
  box-shadow:
    0 2px 0 rgba(14,18,38,0.05),
    0 20px 40px rgba(14,18,38,0.12),
    0 40px 80px rgba(14,18,38,0.08);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.ticket::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--pv-blue);
}
.ticket-main { padding: 60px 72px 56px; }
.ticket-main .pv-lede { margin-top: 16px; }
.ticket-stub {
  position: relative;
  padding: 60px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(66,86,172,0.04) 0 6px, transparent 6px 14px),
    var(--pv-blue-100);
  border-left: 1px dashed var(--rule-ink);
}
.ticket-stub::before {
  /* top + bottom half-circles to simulate perforation */
  content: '';
  position: absolute;
  left: -10px; top: -10px;
  width: 20px; height: 20px;
  background: var(--paper);
  border-radius: 50%;
}
.ticket-stub::after {
  content: '';
  position: absolute;
  left: -10px; bottom: -10px;
  width: 20px; height: 20px;
  background: var(--paper);
  border-radius: 50%;
}
.ticket-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule-ink);
}
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticket-row .v {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.ticket-plane {
  margin-top: 28px;
  display: flex; justify-content: center;
  opacity: 0.85;
}

/* =========================================================
   FOOTER
   ========================================================= */
.pv-footer {
  background: var(--pv-blue); /* the one place navy lives */
  color: #fff;
  padding: 72px 0 28px;
  position: relative;
  margin-top: 18px; /* reserve room for the torn edge */
}
.pv-footer::before {
  /* torn top edge — sits above the footer, navy silhouette dipping into the paper */
  content: '';
  position: absolute; left: 0; right: 0; top: -18px;
  height: 19px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 19' preserveAspectRatio='none'><path d='M0,19 L0,8 L40,12 L90,4 L150,14 L210,6 L270,12 L330,3 L400,11 L470,5 L540,14 L610,7 L680,13 L750,4 L820,12 L890,6 L960,13 L1030,5 L1100,11 L1170,4 L1240,12 L1310,6 L1380,13 L1440,7 L1440,19 Z' fill='%234256ac'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.footer-inner { position: relative; z-index: 1; }
.footer-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand img { height: 88px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0; display: block; }
.footer-tagline {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 0 14px;
}
.footer-stamp {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 6px 10px 5px;
  transform: rotate(-2deg);
  background: rgba(255,255,255,0.04);
}
.stamp-line-sm {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
}
.footer-marker {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pv-green-400, #6d9892);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--pv-green-400, #6d9892); }
.footer-signoff {
  margin-top: 18px;
  color: #fff !important;
  font-size: 22px;
  opacity: 0.95;
  transform: rotate(-1.5deg);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.footer-coords { opacity: 0.85; }
.footer-bottom-alt {
  border-top: none;
  padding-top: 8px;
  justify-content: center;
  font-size: 9px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .ethics-grid, .expertise-grid, .projects-grid,
  .case-row, .case-row.flip, .ticket { grid-template-columns: 1fr; gap: 40px; }
  .ethics-strip { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ethics-cta-col { align-items: center; }
  .ethics-specs { justify-content: center; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-row.flip .case-photo-wrap, .case-row.flip .case-body { order: initial; }
  .cases-header { padding-right: 0; }
  .cases-header-tag { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trusted-logos { grid-template-columns: repeat(4, 1fr); gap: 36px 28px; }
  .trusted-logos img { max-height: 56px; }
}
/* ================================================================
   Nav dropdown (Client Work → Overview + project sites)
   ================================================================ */
.pv-nav-dropdown {
  position: relative;
  display: inline-block;
}
.pv-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pv-nav-chevron {
  display: inline-block;
  transform: rotate(90deg);
  font-size: 14px;
  line-height: 1;
  color: var(--ink-3, #6b6f88);
  transition: transform 200ms var(--ease, cubic-bezier(.2,.6,.2,1)), color 200ms;
}
.pv-nav-dropdown:hover .pv-nav-chevron,
.pv-nav-dropdown:focus-within .pv-nav-chevron {
  transform: rotate(90deg) translateX(2px);
  color: var(--pv-blue);
}
.pv-nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  padding: 8px;
  background: var(--paper, #fdfbf4);
  border: 1px solid var(--rule, rgba(14,18,38,0.10));
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(14,18,38,.04),
    0 2px 4px rgba(14,18,38,.05),
    0 14px 32px rgba(14,18,38,.09);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease, cubic-bezier(.2,.6,.2,1)),
              transform 180ms var(--ease, cubic-bezier(.2,.6,.2,1)),
              visibility 180ms;
  z-index: 200;
}
.pv-nav-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}
.pv-nav-dropdown:hover .pv-nav-menu,
.pv-nav-dropdown:focus-within .pv-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pv-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--ink-2, #1f2138);
  border-radius: 2px;
  text-decoration: none;
  transition: background 160ms, color 160ms;
}
.pv-nav-menu a:hover,
.pv-nav-menu a:focus-visible {
  background: var(--paper-2, #f7f3e8);
  color: var(--pv-blue);
  outline: none;
}
.pv-nav-menu a:first-child {
  border-bottom: 1px solid var(--rule, rgba(14,18,38,0.10));
  margin-bottom: 4px;
  padding-bottom: 12px;
}
.pv-nav-menu-ext {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  color: var(--ink-3, #6b6f88);
  opacity: 0.7;
}
.pv-nav-menu a:hover .pv-nav-menu-ext,
.pv-nav-menu a:focus-visible .pv-nav-menu-ext {
  opacity: 1;
  color: var(--pv-blue);
}

/* ================================================================
   Preorder modal — book overlay
   ================================================================ */
.pv-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 38, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  animation: pv-modal-fade 220ms var(--ease, cubic-bezier(.2,.6,.2,1)) forwards;
}
@keyframes pv-modal-fade { to { opacity: 1; } }

.pv-modal {
  position: relative;
  max-width: 680px;
  width: 100%;
  background: var(--paper, #fdfbf4);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(14,18,38,.05),
    0 4px 12px rgba(14,18,38,.12),
    0 30px 60px rgba(14,18,38,.28);
  overflow: hidden;
  transform: translateY(8px);
  animation: pv-modal-rise 260ms cubic-bezier(.25,.46,.45,.94) 60ms forwards;
}
@keyframes pv-modal-rise { to { transform: translateY(0); } }

.pv-modal-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--paper-2, #f7f3e8);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-right: 1px solid var(--rule, rgba(14,18,38,0.10));
  border-bottom: 1px solid var(--rule, rgba(14,18,38,0.10));
}
.pv-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule, rgba(14,18,38,0.10));
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--ink-2, #1f2138);
  transition: background 160ms, color 160ms, border-color 160ms;
  z-index: 2;
}
.pv-modal-close:hover {
  background: var(--paper-2, #f7f3e8);
  color: var(--pv-blue);
  border-color: var(--pv-blue);
}

.pv-modal-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 40px 40px 36px 48px;
  align-items: center;
}
.pv-modal-cover {
  width: 180px;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.pv-modal-eyebrow {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pv-green, #3d7068);
  margin-bottom: 10px;
}
.pv-modal-title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink, #0e1226);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.pv-modal-title em {
  color: var(--pv-blue);
  font-style: italic;
}
.pv-modal-byline {
  font-family: var(--font-body, 'Archivo', system-ui, sans-serif);
  font-size: 14px;
  color: var(--ink-3, #595c73);
  margin-bottom: 14px;
}
.pv-modal-desc {
  font-family: var(--font-body, 'Archivo', system-ui, sans-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2, #1f2138);
  margin: 0 0 22px;
}
.pv-modal-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.pv-modal-secondary {
  font-family: var(--font-body, 'Archivo', system-ui, sans-serif);
  font-size: 13px;
  color: var(--ink-3, #595c73);
  text-decoration: underline;
  text-decoration-color: rgba(14,18,38,0.18);
  text-underline-offset: 3px;
}
.pv-modal-secondary:hover { color: var(--pv-blue); text-decoration-color: var(--pv-blue); }

@media (max-width: 640px) {
  .pv-modal-body { grid-template-columns: 1fr; padding: 36px 24px 28px; gap: 20px; text-align: center; }
  .pv-modal-cover { width: 140px; margin: 0 auto; }
  .pv-modal-ctas { justify-content: center; }
}

/* Mobile: dropdown becomes inline sublist */
@media (max-width: 860px) {
  .pv-nav-dropdown { display: block; width: 100%; }
  .pv-nav-chevron { display: none; }
  .pv-nav-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    background: transparent;
  }
  .pv-nav-menu a { padding: 8px 0; font-size: 13px; color: var(--ink-3, #6b6f88); }
  .pv-nav-menu a:first-child { border-bottom: none; margin-bottom: 0; padding-bottom: 8px; }
}

/* ================================================================
   Contact form states — error + success
   ================================================================ */
.form-error {
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(196, 60, 60, 0.25);
  background: rgba(196, 60, 60, 0.06);
  color: #8c2a2a;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--font-body, 'Archivo', system-ui, sans-serif);
}
.form-right-sent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 8px;
  min-height: 240px;
}
.form-right-sent p {
  margin-top: 12px;
  color: var(--ink-2, #1f2138);
  line-height: 1.55;
  max-width: 440px;
}
