  :root {
    --pl-parchment: #F5F0E8;
    --pl-parchment-2: #EDE5D6;
    --pl-bg-raised: #FBF7EF;
    --pl-ink: #1A1814;
    --pl-ink-soft: #3C3228;
    --pl-warm-mid: #77684F;
    --pl-accent: #2C4A3E;
    --pl-accent-deep: #1F3A2E;
    --pl-field: #243D33;
    --pl-field-soft: #D8CEB9;
    --pl-brass: #8F713F;
    --pl-border: #D4C9B4;
    --pl-border-dark: rgba(26, 24, 20, 0.24);

    --pl-font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --pl-font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --pl-font-condensed: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;

    --pl-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='360' height='360' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");

    --pl-shadow-contact: 0 1px 1px rgba(50, 39, 26, 0.16), 0 10px 26px rgba(50, 39, 26, 0.08);
    --pl-shadow-pin: 1px 4px 6px rgba(26, 24, 20, 0.42), 0 1px 2px rgba(26, 24, 20, 0.24);
    --pl-section-max: 1120px;
    --pl-margin-track: 142px;
    --pl-grid-gap: 32px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

  body {
    min-width: 320px;
    background-color: var(--pl-parchment);
    background-image:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.48), transparent 42rem),
      linear-gradient(90deg, rgba(140, 123, 94, 0.07) 0 1px, transparent 1px),
      linear-gradient(180deg, rgba(140, 123, 94, 0.055) 0 1px, transparent 1px),
      var(--pl-noise);
    background-size: auto, 72px 72px, 72px 72px, 360px 360px;
    color: var(--pl-ink);
    font-family: var(--pl-font-serif);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 32%, transparent 0 46%, rgba(72, 56, 35, 0.08) 100%),
      linear-gradient(90deg, rgba(31, 58, 46, 0.045), transparent 22%, transparent 78%, rgba(31, 58, 46, 0.04));
    mix-blend-mode: multiply;
    z-index: -1;
  }

  a { color: inherit; }

  .skip {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .skip:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: var(--pl-ink);
    color: var(--pl-parchment);
    font-family: var(--pl-font-sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 100;
  }

  :focus-visible {
    outline: 2px solid var(--pl-accent);
    outline-offset: 4px;
  }

  /* Header */

  .site-header,
  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px clamp(24px, 4.2vw, 48px);
    position: relative;
    z-index: 5;
  }

  .site-header {
    border-bottom: 1px solid rgba(212, 201, 180, 0.74);
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.82), rgba(251, 247, 239, 0.36)),
      var(--pl-noise);
    backdrop-filter: blur(2px);
  }

  .wordmark {
    font-family: var(--pl-font-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .wordmark .dim { color: var(--pl-warm-mid); }

  .descriptor,
  .site-index {
    color: var(--pl-warm-mid);
    font-family: var(--pl-font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  main { display: block; }

  /* Shared document grid */

  .section {
    padding: 104px 0;
    position: relative;
  }

  .section-inner {
    width: min(var(--pl-section-max), calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--pl-margin-track) minmax(0, 1fr);
    column-gap: var(--pl-grid-gap);
    align-items: start;
  }

  .map-margin {
    min-height: 1px;
    padding-top: 7px;
    color: var(--pl-warm-mid);
    font-family: var(--pl-font-sans);
    position: sticky;
    top: 88px;
  }

  .map-margin::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 18px;
    background: linear-gradient(90deg, var(--pl-border-dark), transparent);
  }

  .map-marker {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
  }

  .origin {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(26, 24, 20, 0.42);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, var(--pl-brass) 0 2px, transparent 2.5px),
      radial-gradient(circle at 36% 32%, #F1E8D8, #B8A47E 47%, #6F614F 100%);
    box-shadow: var(--pl-shadow-pin);
    transform: translateY(1px);
  }

  .section-label,
  .coord,
  .map-note {
    display: block;
    text-transform: uppercase;
  }

  .section-label {
    color: var(--pl-ink-soft);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
  }

  .coord {
    margin-top: 9px;
    color: var(--pl-warm-mid);
    font-family: var(--pl-font-condensed);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.16em;
  }

  .map-note {
    margin-top: 18px;
    max-width: 118px;
    color: var(--pl-warm-mid);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.14em;
    line-height: 1.55;
  }

  .content-column {
    min-width: 0;
  }

  .section-title {
    max-width: 720px;
    font-family: var(--pl-font-serif);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-title em,
  .hero-lead em {
    color: var(--pl-accent);
    font-style: italic;
    font-weight: 400;
  }

  .section-intro,
  .prose,
  .engagement-detail {
    color: var(--pl-ink-soft);
    font-size: 18px;
    line-height: 1.68;
    max-width: 660px;
    text-wrap: pretty;
  }

  .section-intro {
    margin-top: 18px;
    font-style: italic;
  }

  /* Hero */

  .hero {
    padding: 46px 0 32px;
  }

  .hero-stage {
    position: relative;
    min-height: 580px;
    padding: clamp(30px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(60, 50, 40, 0.34);
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.66), rgba(237, 229, 214, 0.56)),
      var(--pl-noise);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.58),
      inset 0 0 0 6px rgba(245, 240, 232, 0.36),
      var(--pl-shadow-contact);
  }

  .hero-stage::before,
  .hero-stage::after {
    content: '';
    position: absolute;
    pointer-events: none;
  }

  .hero-stage::before {
    inset: 16px;
    border: 1px solid rgba(60, 50, 40, 0.22);
  }

  .hero-stage::after {
    inset: 0;
    background: radial-gradient(circle at 42% 38%, transparent 0 42%, rgba(60, 50, 40, 0.08) 100%);
  }

  .survey-field {
    position: absolute;
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    color: var(--pl-accent);
    opacity: 0.74;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
  }

  .hero-lead {
    max-width: 11.8ch;
    font-family: var(--pl-font-serif);
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 500;
    letter-spacing: -0.012em;
    line-height: 1.04;
    text-wrap: balance;
  }

  .criteria {
    counter-reset: criteria;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: clamp(42px, 6vw, 66px);
  }

  .criteria > li {
    counter-increment: criteria;
    min-height: 190px;
    position: relative;
    padding: 40px 24px 26px;
    border: 1px solid rgba(60, 50, 40, 0.26);
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.94), rgba(245, 240, 232, 0.92)),
      var(--pl-noise);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      inset 0 -1px 0 rgba(60, 50, 40, 0.06),
      var(--pl-shadow-contact);
    color: var(--pl-ink);
    font-size: 20px;
    line-height: 1.42;
    text-wrap: pretty;
    transition: transform 160ms ease-out, border-color 160ms ease-out;
  }

  .criteria > li:nth-child(1) { transform: rotate(-0.35deg); }
  .criteria > li:nth-child(2) { transform: translateY(18px) rotate(0.25deg); }
  .criteria > li:nth-child(3) { transform: rotate(-0.15deg); }

  .criteria > li::before {
    content: counter(criteria, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 18px;
    color: var(--pl-warm-mid);
    font-family: var(--pl-font-condensed);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18em;
  }

  .criteria > li::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 22px;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(26, 24, 20, 0.38);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, var(--pl-brass) 0 2px, transparent 2.5px),
      radial-gradient(circle at 34% 32%, #F3E9D8, #B7A37D 48%, #625746 100%);
    box-shadow: var(--pl-shadow-pin);
  }

  .criteria > li:hover {
    border-color: rgba(44, 74, 62, 0.46);
  }

  .field-note {
    position: absolute;
    right: clamp(28px, 4vw, 42px);
    bottom: clamp(24px, 3vw, 32px);
    z-index: 2;
    max-width: 390px;
    margin: 0;
    padding: 24px 26px;
    border: 1px solid rgba(60, 50, 40, 0.26);
    background:
      linear-gradient(180deg, rgba(237, 229, 214, 0.94), rgba(245, 240, 232, 0.92)),
      var(--pl-noise);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      inset 0 -1px 0 rgba(60, 50, 40, 0.08),
      var(--pl-shadow-contact);
    transform: rotate(0.7deg);
  }

  .field-note p {
    color: var(--pl-ink-soft);
    font-size: 16px;
    font-style: italic;
    line-height: 1.55;
    text-wrap: pretty;
  }

  /* Examples */

  .examples-section {
    padding-top: 74px;
    border-top: 1px solid rgba(212, 201, 180, 0.68);
  }

  .field-note.examples-note {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 560px;
    margin: 26px 0 24px;
    transform: rotate(-0.35deg);
  }

  .field-note.examples-note::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 22px;
    z-index: 1;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(26, 24, 20, 0.38);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, var(--pl-brass) 0 2px, transparent 2.5px),
      radial-gradient(circle at 34% 32%, #F3E9D8, #B7A37D 48%, #625746 100%);
    box-shadow: var(--pl-shadow-pin);
  }

  .examples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 56px;
  }

  .example-card {
    position: relative;
    min-height: 100%;
    padding: 30px 24px 28px;
    border: 1px solid rgba(60, 50, 40, 0.22);
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.9), rgba(245, 240, 232, 0.84)),
      var(--pl-noise);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), var(--pl-shadow-contact);
  }

  .example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--pl-accent), var(--pl-brass), transparent);
    opacity: 0.74;
  }

  .example-card h3 {
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(60, 50, 40, 0.2);
    color: var(--pl-accent);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }

  .example-card ul {
    display: grid;
    gap: 18px;
    list-style: none;
  }

  .example-card li {
    position: relative;
    padding-left: 18px;
    color: var(--pl-ink-soft);
    font-size: 16px;
    font-style: italic;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .example-card li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--pl-warm-mid);
  }

  /* About */

  .about-section {
    overflow: hidden;
    border-top: 1px solid var(--pl-border);
    border-bottom: 1px solid var(--pl-border);
    background:
      radial-gradient(ellipse at 82% 44%, rgba(44, 74, 62, 0.12), transparent 32rem),
      linear-gradient(180deg, rgba(237, 229, 214, 0.82), rgba(245, 240, 232, 0.82)),
      var(--pl-noise);
  }

  .about-section .content-column {
    position: relative;
  }

  .contour-mark {
    position: absolute;
    right: -108px;
    top: -48px;
    width: min(390px, 48vw);
    color: var(--pl-accent);
    opacity: 0.13;
    pointer-events: none;
  }

  .prose {
    margin-top: 26px;
    position: relative;
    z-index: 1;
  }

  .prose p + p {
    margin-top: 18px;
  }

  .prose em { color: var(--pl-accent); }

  /* Engagement */

  .engagement-section {
    background:
      radial-gradient(circle at 18% 26%, rgba(245, 240, 232, 0.1), transparent 22rem),
      linear-gradient(180deg, var(--pl-field), var(--pl-accent-deep));
    color: var(--pl-parchment);
  }

  .engagement-section .map-margin::before {
    background: linear-gradient(90deg, rgba(245, 240, 232, 0.42), transparent);
  }

  .engagement-section .section-label,
  .engagement-section .coord {
    color: var(--pl-field-soft);
  }

  .engagement-section .origin {
    border-color: rgba(245, 240, 232, 0.46);
    background:
      radial-gradient(circle at 50% 50%, #D0B56F 0 2px, transparent 2.5px),
      radial-gradient(circle at 34% 32%, #F4E8CE, #AE9258 48%, #5F5139 100%);
  }

  .engagement-section .section-title,
  .engagement-section .section-title em {
    color: var(--pl-parchment);
  }

  .engagement-detail {
    margin-top: 18px;
    color: rgba(245, 240, 232, 0.82);
  }

  .dimensions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 58px;
    border: 1px solid rgba(245, 240, 232, 0.24);
    background:
      linear-gradient(180deg, rgba(245, 240, 232, 0.07), rgba(245, 240, 232, 0.03)),
      linear-gradient(90deg, rgba(245, 240, 232, 0.05) 0 1px, transparent 1px),
      linear-gradient(180deg, rgba(245, 240, 232, 0.05) 0 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 18px 36px rgba(0, 0, 0, 0.16);
  }

  .dimension {
    min-height: 235px;
    padding: 34px 30px 36px;
    border-right: 1px solid rgba(245, 240, 232, 0.2);
  }

  .dimension:last-child { border-right: 0; }

  .dimension dt {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--pl-parchment);
    font-size: 24px;
    font-weight: 500;
  }

  .dimension dt::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--pl-brass);
    box-shadow: 10px 0 0 rgba(245, 240, 232, 0.28);
  }

  .dimension dd {
    color: rgba(245, 240, 232, 0.8);
    font-size: 16px;
    line-height: 1.62;
    text-wrap: pretty;
  }

  .dimension dd p + p {
    margin-top: 14px;
  }

  /* Contact */

  .contact-section {
    padding-bottom: 120px;
    text-align: center;
  }

  .contact-section .section-inner {
    display: block;
    max-width: 900px;
  }

  .scale-rule {
    width: min(440px, 68vw);
    height: 15px;
    margin: 0 auto 42px;
    border-left: 1px solid var(--pl-border-dark);
    border-right: 1px solid var(--pl-border-dark);
    background:
      linear-gradient(90deg,
        var(--pl-border-dark) 0 1px,
        transparent 1px 20%,
        var(--pl-border-dark) 20% calc(20% + 1px),
        transparent calc(20% + 1px) 40%,
        var(--pl-border-dark) 40% calc(40% + 1px),
        transparent calc(40% + 1px) 60%,
        var(--pl-border-dark) 60% calc(60% + 1px),
        transparent calc(60% + 1px) 80%,
        var(--pl-border-dark) 80% calc(80% + 1px),
        transparent calc(80% + 1px) 100%);
    opacity: 0.76;
  }

  .contact-prompt {
    max-width: 500px;
    margin: 0 auto 26px;
    color: var(--pl-warm-mid);
    font-size: 17px;
    text-wrap: pretty;
  }

  .contact-cta {
    margin-bottom: 30px;
    color: var(--pl-ink);
    font-size: clamp(56px, 11vw, 132px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-wrap: balance;
  }

  .contact-cta .accent { color: var(--pl-accent); }

  .email-link {
    color: var(--pl-accent);
    font-size: clamp(20px, 2.2vw, 27px);
    text-decoration: underline;
    text-decoration-color: color-mix(in oklab, var(--pl-accent) 42%, transparent);
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
    transition: color 140ms ease-out, text-decoration-color 140ms ease-out;
  }

  .email-link:hover,
  .email-link:focus-visible {
    color: var(--pl-accent-deep);
    text-decoration-color: currentColor;
  }

  /* Footer */

  .site-footer {
    flex-wrap: wrap;
    border-top: 1px solid var(--pl-border);
    background:
      linear-gradient(180deg, rgba(237, 229, 214, 0.36), rgba(245, 240, 232, 0.88)),
      var(--pl-noise);
  }

  /* Tablet */

  @media (max-width: 920px) {
    :root {
      --pl-margin-track: 104px;
      --pl-grid-gap: 24px;
    }

    .section { padding: 86px 0; }

    .hero { padding: 60px 0 68px; }

    .section-inner {
      width: min(var(--pl-section-max), calc(100% - 56px));
    }

    .map-note { display: none; }

    .hero-stage {
      min-height: 600px;
      padding: 42px 34px;
    }

    .field-note {
      position: relative;
      right: auto;
      bottom: auto;
      margin: 34px 4px 0 auto;
    }

    .field-note.examples-note {
      margin: 24px 0 22px;
    }

    .criteria {
      grid-template-columns: 1fr 1fr;
    }

    .criteria > li:nth-child(2) { transform: rotate(0.25deg); }
    .criteria > li:nth-child(3) {
      grid-column: 1 / -1;
      min-height: 156px;
    }

    .examples,
    .dimensions {
      grid-template-columns: 1fr;
    }

    .dimension {
      min-height: auto;
      border-right: 0;
      border-bottom: 1px solid rgba(245, 240, 232, 0.2);
    }

    .dimension:last-child { border-bottom: 0; }
  }

  /* Mobile */

  @media (max-width: 640px) {
    :root {
      --pl-grid-gap: 0;
    }

    .site-header,
    .site-footer {
      align-items: flex-start;
      flex-direction: column;
      padding: 22px 24px;
    }

    .site-header { gap: 8px; }

    .section { padding: 66px 0; }

    .section-inner {
      width: calc(100% - 48px);
      display: block;
    }

    .map-margin {
      position: static;
      margin-bottom: 22px;
      padding-top: 0;
    }

    .map-margin::before {
      margin-bottom: 14px;
    }

    .map-marker {
      grid-template-columns: 16px 1fr;
      gap: 10px;
    }

    .coord { margin-top: 5px; }

    .hero {
      padding-top: 54px;
      padding-bottom: 76px;
    }

    .hero-stage {
      min-height: auto;
      margin-left: -8px;
      margin-right: -8px;
      padding: 34px 24px 30px;
    }

    .hero-stage::before,
    .survey-field {
      inset: 10px;
      width: calc(100% - 20px);
      height: calc(100% - 20px);
    }

    .hero-lead {
      max-width: 10ch;
    }

    .criteria {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 44px;
    }

    .criteria > li,
    .criteria > li:nth-child(1),
    .criteria > li:nth-child(2),
    .criteria > li:nth-child(3) {
      min-height: 0;
      transform: none;
    }

    .field-note {
      max-width: none;
      margin: 34px 0 0;
      transform: none;
    }

    .field-note.examples-note {
      margin: 22px 0 20px;
    }

    .section-title {
      font-size: clamp(30px, 11vw, 42px);
    }

    .examples {
      gap: 18px;
      margin-top: 38px;
    }

    .contour-mark {
      right: -160px;
      top: -34px;
      width: 320px;
    }

    .engagement-section {
      padding-top: 74px;
      padding-bottom: 74px;
    }

    .dimensions {
      margin-top: 38px;
    }

    .dimension {
      padding: 28px 22px 30px;
    }

    .contact-section {
      padding-bottom: 76px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
      animation: none !important;
      scroll-behavior: auto !important;
      transition: none !important;
    }

    .criteria > li {
      transform: none !important;
    }
  }
