/* About page — aligned with the visual system used on the homepage. */

.pencil-about {
  --pa-orange: #f26422;
  --pa-orange-hover: #d9531a;
  --pa-orange-soft: #fff0e8;
  --pa-ink: #333333;
  --pa-graphite: #26272a;
  --pa-muted: #676a70;
  --pa-surface: #f2f3f5;
  --pa-line: #e3e4e6;
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  color: var(--pa-ink);
  font-family: "Montserrat", Arial, sans-serif;
}

.pencil-about *,
.pencil-about *::before,
.pencil-about *::after {
  box-sizing: border-box;
}

.pencil-about h1,
.pencil-about h2,
.pencil-about p,
.pencil-about ul {
  margin: 0;
}

.pencil-about button,
.pencil-about a {
  font-family: inherit;
}

.pencil-about button {
  border: 0;
}

.pencil-people__track,
.pencil-production__track {
  display: contents;
}

.pencil-swipe-hint {
  display: none;
}

.pencil-about h1,
.pencil-about h2 {
  color: var(--pa-ink);
  font-family: "Funnel Sans", "Montserrat", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

.pencil-about [id] {
  scroll-margin-top: 112px;
}

.pencil-hero,
.pencil-people,
.pencil-proof,
.pencil-production {
  padding-block: 38px;
}

.pencil-accent {
  color: var(--pa-orange);
  font-weight: 700;
}

/* Hero */
.pencil-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 28px;
}

.pencil-hero__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
  padding: 38px 42px;
  border-radius: 30px;
  background: var(--pa-surface);
}

.pencil-eyebrow {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--pa-orange);
  background: var(--pa-orange-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.pencil-hero h1 {
  max-width: 660px;
  font-size: clamp(38px, 3.1vw, 45px);
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.pencil-hero__story {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  gap: 22px;
  color: #45484e;
  font-size: clamp(17px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.5;
}

.pencil-hero__story-point {
  position: relative;
  padding-left: 32px;
}

.pencil-hero__story-point::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pa-orange);
  content: "";
}

.pencil-hero__story-summary {
  padding-top: 22px;
  border-top: 1px solid #d5d7da;
}

.pencil-hero__visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.pencil-hero__product {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

@media (min-width: 1100px) {
 .pencil-hero__panel {
    order: -1;
  }

  .pencil-people h2 {
    white-space: nowrap;
  }
}

.pencil-help {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: min(300px, calc(100% - 48px));
  min-height: 82px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #fff;
  background: var(--pa-orange);
  box-shadow: 0 16px 34px rgba(242, 100, 34, 0.22);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pencil-help:hover {
  transform: translateY(-2px);
  background: var(--pa-orange-hover);
  box-shadow: 0 20px 38px rgba(242, 100, 34, 0.28);
}

.pencil-help span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.16;
}

.pencil-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pencil-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pencil-button:hover {
  transform: translateY(-1px);
}

.pencil-button--primary {
  color: #fff;
  background: var(--pa-orange);
  box-shadow: 0 14px 28px rgba(242, 101, 34, 0.22);
}

.pencil-button--primary:hover {
  background: var(--pa-orange-hover);
}

.pencil-button--secondary {
  border-color: rgba(242, 100, 34, 0.42) !important;
  color: var(--pa-ink);
  background: #fff;
}

.pencil-button--secondary:hover {
  color: var(--pa-orange-hover);
  border-color: var(--pa-orange) !important;
}

.pencil-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  list-style: none;
}

.pencil-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pa-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.pencil-hero__benefits li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--pa-orange);
  content: "";
}

/* People */
.pencil-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.pencil-people__head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 10px;
}

.pencil-people h2,
.pencil-production h2 {
  font-size: clamp(38px, 3.3vw, 45px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.pencil-people h2 {
  flex: 1 1 auto;
}

.pencil-people__head > div {
  max-width: 560px;
}

.pencil-people__intro {
  width: 100%;
  padding-bottom: 2px;
  color: var(--pa-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.pencil-person {
  position: relative;
  min-width: 0;
  aspect-ratio: 316 / 495;
  overflow: hidden;
  border-radius: 24px;
  background: var(--pa-graphite);
  box-shadow: 0 14px 32px rgba(27, 27, 29, 0.08);
}

.pencil-person img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 360ms ease;
}

.pencil-person::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.44) 70%, rgba(0, 0, 0, 0.92) 100%);
  content: "";
  pointer-events: none;
}

.pencil-person::before {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 62px;
  left: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  content: "";
}

.pencil-person span {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 25px;
  left: 22px;
  color: #fff;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}

@media (hover: hover) {
  .pencil-person:hover img {
    transform: scale(1.025);
  }
}

/* Proof */
.pencil-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pencil-proof__head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 22px;
}

.pencil-proof__head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.pencil-proof__eyebrow,
.pencil-metric__label {
  color: var(--pa-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.pencil-metric__label {
  font-size: 15px;
}

.pencil-proof__head h2 {
  font-size: clamp(42px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.pencil-proof__head > p {
  max-width: 560px;
  padding-bottom: 2px;
  color: var(--pa-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.pencil-mission,
.pencil-metric {
  min-width: 0;
  border-radius: 24px;
}

.pencil-mission {
  display: flex;
  grid-row: span 2;
  min-height: 458px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 40px;
  color: #fff;
  background: var(--pa-graphite);
}

.pencil-mission__badge {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--pa-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pencil-mission p {
  max-width: 470px;
  margin-top: 28px;
  color: #fff;
  font-family: "Funnel Sans", "Montserrat", sans-serif;
  font-size: clamp(26px, 2.15vw, 30px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.17;
}

.pencil-metric {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(38, 39, 42, 0.045);
  background: var(--pa-surface);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.pencil-metric strong {
  margin-top: 14px;
  color: var(--pa-orange);
  font-family: "Funnel Sans", "Montserrat", sans-serif;
  font-size: clamp(44px, 3.7vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

.pencil-metric p {
  max-width: 390px;
  margin-top: 14px;
  color: var(--pa-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.48;
}

/* Production gallery */
.pencil-production {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pencil-production h2 {
  margin: 0;
}

.pencil-production__head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 500px) minmax(0, 580px);
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.pencil-production__intro {
  width: 100%;
  max-width: 580px;
  justify-self: end;
  color: var(--pa-muted);
}

.pencil-production__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
}

/* CTA */
.pencil-cta {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-block: 0 76px;
  padding: 52px 60px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: var(--pa-graphite);
}

.pencil-cta > div {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  gap: 14px;
}

.pencil-cta h2 {
  color: #fff;
  font-size: clamp(34px, 3vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.pencil-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.5;
}

.pencil-cta > a {
  display: inline-flex;
  min-height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--pa-orange);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pencil-cta > a:hover {
  transform: translateY(-1px);
  background: var(--pa-orange-hover);
  box-shadow: 0 14px 28px rgba(242, 101, 34, 0.24);
}

.pencil-help:focus-visible,
.pencil-button:focus-visible,
.pencil-cta > a:focus-visible {
  outline: 3px solid rgba(242, 101, 34, 0.38);
  outline-offset: 4px;
}

/* Let the hero use the available canvas on large desktop screens while the
   content-heavy sections below keep their more readable 1320px measure. */
@media (min-width: 1440px) {
  .pencil-hero {
    width: min(1840px, calc(100vw - 96px));
    margin-left: 50%;
    padding-block: clamp(30px, 1.85vw, 38px);
    transform: translateX(-50%);
  }

  .pencil-hero__grid {
    align-items: stretch;
    gap: clamp(28px, 1.55vw, 32px);
  }

  .pencil-hero__panel {
    align-self: start;
    gap: clamp(22px, 1.5vw, 30px);
    padding: clamp(42px, 2.85vw, 58px);
  }

  .pencil-hero h1 {
    max-width: 850px;
    font-size: clamp(45px, 3vw, 60px);
    line-height: 0.98;
  }

  .pencil-hero__story {
    max-width: none;
    gap: clamp(22px, 1.35vw, 28px);
    font-size: clamp(18px, 1.28vw, 26px);
    line-height: 1.5;
  }

  .pencil-hero__story-point {
    padding-left: clamp(32px, 2vw, 40px);
  }

  .pencil-hero__story-point::before {
    width: clamp(9px, 0.6vw, 12px);
    height: clamp(9px, 0.6vw, 12px);
  }

  .pencil-hero__story-summary {
    padding-top: clamp(22px, 1.35vw, 28px);
  }

  .pencil-hero__visual {
    min-height: clamp(640px, 44vw, 890px);
  }

  .pencil-help {
    top: clamp(24px, 2.75vw, 56px);
    right: clamp(20px, 1.25vw, 26px);
    width: min(clamp(300px, 20.5vw, 420px), calc(100% - 48px));
    min-height: clamp(82px, 5.6vw, 114px);
    grid-template-columns: clamp(44px, 2.75vw, 56px) minmax(0, 1fr);
    gap: clamp(11px, 0.8vw, 16px);
    padding: clamp(14px, 1vw, 20px);
  }

  .pencil-help svg {
    width: clamp(44px, 2.75vw, 56px);
    height: clamp(44px, 2.75vw, 56px);
  }

  .pencil-help span {
    font-size: clamp(17px, 1.1vw, 22px);
  }

  .pencil-button {
    min-height: clamp(52px, 3.55vw, 72px);
    padding-inline: clamp(24px, 1.7vw, 34px);
    font-size: clamp(15px, 1vw, 20px);
  }
}

@media (max-width: 1099px) {
  .pencil-hero__grid {
    grid-template-columns: 1fr;
  }

  .pencil-hero__panel {
    padding: 38px;
  }

  .pencil-hero h1,
  .pencil-hero__story {
    max-width: 820px;
  }

  .pencil-hero__visual {
    min-height: 500px;
  }

  .pencil-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .pencil-person span {
    font-size: 16px;
  }

  .pencil-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pencil-proof__head,
  .pencil-mission {
    grid-column: 1 / -1;
  }

  .pencil-proof__head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 36px;
  }

  .pencil-mission {
    grid-row: auto;
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .pencil-about {
    width: min(100% - 32px, 1320px);
  }

  .pencil-hero,
  .pencil-people,
  .pencil-proof,
  .pencil-production {
    padding-block: 26px;
  }

  .pencil-hero__grid {
    gap: 18px;
  }

  .pencil-hero__panel {
    gap: 22px;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .pencil-hero h1 {
    font-size: clamp(32px, 9vw, 43px);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .pencil-hero__story {
    gap: 20px;
    font-size: 16px;
    line-height: 1.52;
  }

  .pencil-hero__story-point {
    padding-left: 26px;
  }

  .pencil-hero__story-summary {
    padding-top: 20px;
  }

  .pencil-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pencil-button {
    width: 100%;
  }

  .pencil-hero__benefits {
    align-items: flex-start;
    flex-direction: column;
  }

  .pencil-hero__visual {
    min-height: 340px;
    border-radius: 22px;
  }

  .pencil-help {
    top: 16px;
    right: 16px;
    width: min(280px, calc(100% - 32px));
    min-height: 72px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px 14px;
    border-radius: 18px;
  }

  .pencil-help svg {
    width: 36px;
    height: 36px;
  }

  .pencil-help span {
    font-size: 14px;
  }

  .pencil-people {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pencil-people__head {
    display: block;
    margin-bottom: 16px;
  }

  .pencil-people h2,
  .pencil-production h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .pencil-people__intro {
    margin-top: 22px;
    padding: 0;
    font-size: 16px;
  }

  .pencil-person {
    aspect-ratio: 2 / 3;
    border-radius: 22px;
  }

  .pencil-person span {
    font-size: 15px;
  }

  .pencil-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pencil-proof__head,
  .pencil-mission {
    grid-column: auto;
  }

  .pencil-proof__head,
  .pencil-production h2 {
    margin-bottom: 14px;
  }

  .pencil-proof__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pencil-proof__head > div {
    gap: 12px;
  }

  .pencil-proof__head h2 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 0.98;
  }

  .pencil-proof__head > p {
    font-size: 16px;
    line-height: 1.52;
  }

  .pencil-mission {
    min-height: 320px;
    padding: 28px;
    border-radius: 22px;
  }

  .pencil-mission p {
    margin-top: 24px;
    font-size: clamp(24px, 7.5vw, 27px);
    line-height: 1.18;
  }

  .pencil-metric {
    min-height: 190px;
    padding: 24px;
    border-radius: 20px;
  }

  .pencil-metric strong {
    margin-top: 14px;
    font-size: clamp(42px, 13vw, 54px);
  }

  .pencil-metric p {
    margin-top: 14px;
    font-size: 16px;
  }

  .pencil-production {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pencil-production h2 {
    grid-column: 1 / -1;
  }

  .pencil-production__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .pencil-cta {
    min-height: 330px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    margin-bottom: 52px;
    padding: 40px 24px;
    border-radius: 22px;
  }

  .pencil-cta h2 {
    font-size: clamp(32px, 9.5vw, 40px);
  }

  .pencil-cta p {
    font-size: 16px;
  }

  .pencil-cta > a {
    width: 100%;
  }
}

/* Mobile story: compact hero, swipeable people/production galleries and a
   dense proof grid designed for one-handed scanning. */
@media (max-width: 600px) {
  .pencil-about {
    width: min(100% - 28px, 1320px);
  }

  .pencil-hero,
  .pencil-people,
  .pencil-proof,
  .pencil-production {
    padding-block: 15px;
  }

  .pencil-hero {
    padding-top: 20px;
  }

  .pencil-hero__grid {
    gap: 12px;
  }

  .pencil-hero__panel {
    gap: 16px;
    padding: 22px 18px 18px;
    border: 1px solid rgba(38, 39, 42, 0.055);
    border-radius: 20px;
  }

  .pencil-hero h1 {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.02;
  }

  .pencil-hero__story {
    gap: 14px;
    font-size: 14px;
    line-height: 1.48;
  }

  .pencil-hero__story-point {
    padding-left: 20px;
  }

  .pencil-hero__story-point::before {
    top: 0.58em;
    width: 7px;
    height: 7px;
  }

  .pencil-hero__story-summary {
    padding-top: 14px;
  }

  .pencil-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pencil-button {
    min-width: 0;
    min-height: 46px;
    padding: 8px 6px;
    font-size: clamp(12px, 3.4vw, 13px);
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .pencil-hero__visual {
    min-height: 230px;
    border-radius: 20px;
  }

  .pencil-hero__product {
    height: 230px;
    object-fit: cover;
    object-position: center;
  }

  .pencil-help {
    top: auto;
    right: 10px;
    bottom: 10px;
    width: min(242px, calc(100% - 20px));
    min-height: 50px;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 11px;
    border-radius: 14px;
  }

  .pencil-help svg {
    width: 27px;
    height: 27px;
  }

  .pencil-help span {
    font-size: 11px;
    line-height: 1.2;
  }

  .pencil-people {
    display: block;
  }

  .pencil-people__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .pencil-people h2,
  .pencil-production h2 {
    font-size: clamp(30px, 8.5vw, 35px);
    line-height: 1;
  }

  .pencil-people__head > div {
    min-width: 0;
  }

  .pencil-people__intro {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.48;
  }

  .pencil-swipe-hint {
    display: block;
    margin-top: 9px;
    color: var(--pa-orange);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .pencil-people__track,
  .pencil-production__track {
    display: flex;
    gap: 10px;
    width: calc(100% + 14px);
    padding: 0 14px 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pencil-people__track::-webkit-scrollbar,
  .pencil-production__track::-webkit-scrollbar {
    display: none;
  }

  .pencil-person {
    flex: 0 0 min(72vw, 254px);
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .pencil-person::before {
    right: 16px;
    bottom: 51px;
    left: 16px;
  }

  .pencil-person span {
    right: 16px;
    bottom: 19px;
    left: 16px;
    font-size: 12px;
  }

  .pencil-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .pencil-proof__head,
  .pencil-mission {
    grid-column: 1 / -1;
  }

  .pencil-proof__head {
    gap: 12px;
    margin-bottom: 8px;
  }

  .pencil-proof__head > div {
    gap: 8px;
  }

  .pencil-proof__eyebrow,
  .pencil-metric__label {
    font-size: 9px;
  }

  .pencil-metric__label {
    font-size: 11px;
  }

  .pencil-proof__head h2 {
    font-size: clamp(31px, 8.8vw, 36px);
    line-height: 1;
  }

  .pencil-proof__head > p {
    font-size: 14px;
    line-height: 1.48;
  }

  .pencil-mission {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .pencil-mission__badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .pencil-mission p {
    margin-top: 14px;
    font-size: 21px;
    line-height: 1.18;
  }

  .pencil-metric {
    min-height: 142px;
    padding: 15px;
    border-radius: 16px;
  }

  .pencil-metric strong {
    margin-top: 8px;
    font-size: clamp(29px, 8.6vw, 35px);
    line-height: 1;
  }

  .pencil-metric p {
    margin-top: 10px;
    padding-top: 0;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .pencil-production {
    display: block;
  }

  .pencil-production__head {
    display: block;
    margin-bottom: 16px;
  }

  .pencil-production__image {
    flex: 0 0 min(78vw, 278px);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .pencil-cta {
    min-height: 0;
    gap: 22px;
    margin-bottom: 30px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .pencil-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .pencil-cta p {
    font-size: 14px;
  }

  .pencil-cta > a {
    min-height: 48px;
  }
}

@media (max-width: 340px) {
  .pencil-hero__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pencil-about *,
  .pencil-about *::before,
  .pencil-about *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
