:root {
  --pf-canvas: #f7f5f1;
  --pf-white: #ffffff;
  --pf-soft: #eeeae3;
  --pf-ink: #1f2421;
  --pf-muted: #666a65;
  --pf-bronze: #a77a3d;
  --pf-line: #ddd8cf;
  --pf-max: 1440px;
  --pf-gutter: clamp(20px, 4vw, 72px);
  --pf-serif: Georgia, "Times New Roman", serif;
  --pf-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.pf-home {
  --v6-ink: #171813;
  --v6-cream: #f2efe7;
  --v6-paper: #fbfaf6;
  --v6-moss: #34493c;
  --v6-brass: #b59662;
  --v6-line: rgba(23, 24, 19, 0.16);
  margin: 0;
  overflow-x: hidden;
  background: var(--pf-canvas);
  color: var(--pf-ink);
  font-family: var(--pf-sans);
}

.pf-home a {
  color: inherit;
}

.pf-home button,
.pf-home input {
  font: inherit;
}

.pf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pf-announcement {
  min-height: 30px;
  padding: 7px var(--pf-gutter);
  border-bottom: 1px solid var(--pf-line);
  background: var(--pf-soft);
  color: var(--pf-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.pf-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(390px, 1fr) minmax(180px, 280px) auto auto;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  min-height: 78px;
  padding: 10px var(--pf-gutter);
  border-bottom: 1px solid var(--pf-line);
  background: rgba(255, 255, 255, 0.97);
}

.pf-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--pf-ink);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.pf-brand img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--pf-line);
}

.pf-nav {
  display: flex;
  gap: clamp(16px, 1.8vw, 30px);
  align-items: center;
  justify-content: center;
}

.pf-nav a {
  position: relative;
  color: var(--pf-ink);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.pf-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--pf-bronze);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.pf-nav a:hover::after,
.pf-nav a:focus-visible::after {
  transform: scaleX(1);
}

.pf-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pf-line);
  border-radius: 0;
  outline: none;
  background: var(--pf-canvas);
  color: var(--pf-ink);
}

.pf-search input:focus {
  border-color: var(--pf-bronze);
  background: var(--pf-white);
}

.pf-hotline {
  display: flex;
  flex-direction: column;
  min-width: max-content;
  text-decoration: none;
}

.pf-hotline span {
  color: var(--pf-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pf-hotline strong {
  font-size: 14px;
}

.pf-quote-button,
.pf-footer button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--pf-ink);
  border-radius: 0;
  background: var(--pf-ink);
  color: var(--pf-white);
  cursor: pointer;
  font-weight: 700;
}

.pf-menu {
  display: none;
}

.pf-hero {
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(560px, 1.1fr);
  min-height: min(760px, calc(100vh - 108px));
  margin: 0 auto;
  background: var(--pf-white);
}

.pf-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px) clamp(30px, 4.5vw, 72px);
}

.pf-eyebrow {
  margin: 0 0 18px;
  color: var(--pf-bronze);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pf-hero h1,
.pf-section h2,
.pf-cta h2 {
  margin: 0;
  font-family: var(--pf-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.pf-hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 4.3vw, 68px);
  line-height: 1;
}

.pf-hero-copy > p:not(.pf-eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--pf-muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.pf-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--pf-ink);
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.pf-button-primary {
  background: var(--pf-ink);
  color: var(--pf-white) !important;
}

.pf-button-secondary {
  background: transparent;
  color: var(--pf-ink);
}

.pf-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: clamp(42px, 6vw, 78px) 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--pf-line);
}

.pf-hero-proof div {
  display: grid;
  gap: 5px;
}

.pf-hero-proof dt {
  font-family: var(--pf-serif);
  font-size: 22px;
}

.pf-hero-proof dd {
  margin: 0;
  color: var(--pf-muted);
  font-size: 12px;
}

.pf-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.pf-hero-media picture,
.pf-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.pf-hero-media img {
  object-fit: cover;
}

.pf-hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 12px 16px;
  background: var(--pf-white);
  color: var(--pf-muted);
  font-size: 12px;
}

.pf-section {
  max-width: var(--pf-max);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 128px) var(--pf-gutter);
}

.pf-marketing-picture {
  display: contents;
}

.pf-section-head {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.pf-section-head .pf-eyebrow {
  margin-bottom: 12px;
}

.pf-section h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.06;
}

.pf-section-head > a,
.pf-capability-copy > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--pf-bronze);
  color: var(--pf-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.pf-categories {
  max-width: none;
  background: var(--pf-canvas);
}

.pf-categories .pf-section-head,
.pf-categories .pf-category-grid {
  max-width: calc(var(--pf-max) - (2 * var(--pf-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.pf-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pf-category-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  background: var(--pf-soft);
  text-decoration: none;
}

.pf-category-card-wide {
  grid-column: span 2;
  min-height: 450px;
}

.pf-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.pf-category-card:hover img {
  transform: scale(1.025);
}

.pf-category-card > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
}

.pf-category-card strong {
  font-family: var(--pf-serif);
  font-size: 22px;
  font-weight: 500;
}

.pf-category-card small {
  color: var(--pf-muted);
  font-size: 12px;
}

.pf-featured {
  max-width: none;
  background: var(--pf-white);
}

.pf-featured .pf-section-head,
.pf-featured .pf-product-grid {
  max-width: calc(var(--pf-max) - (2 * var(--pf-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.pf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.pf-product-card {
  min-width: 0;
}

.pf-product-card > a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pf-canvas);
}

.pf-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.pf-product-card:hover img {
  transform: scale(1.025);
}

.pf-product-card > div {
  display: grid;
  gap: 7px;
  padding-top: 16px;
}

.pf-product-card p {
  margin: 0;
  color: var(--pf-bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-product-card h3 {
  min-height: 48px;
  margin: 0;
  font-family: var(--pf-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.pf-product-card h3 a {
  text-decoration: none;
}

.pf-product-card > div > strong {
  font-size: 15px;
}

.pf-product-card > div > span {
  color: var(--pf-muted);
  font-size: 11px;
}

.pf-quick-groups {
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(70px, 7vw, 104px);
}

.pf-group-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--pf-line);
  border-left: 1px solid var(--pf-line);
}

.pf-group-list a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: center;
  padding: 28px;
  border-right: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
  background: var(--pf-canvas);
  text-decoration: none;
  transition: background 180ms ease;
}

.pf-group-list a:hover {
  background: var(--pf-white);
}

.pf-group-list strong {
  font-family: var(--pf-serif);
  font-size: 24px;
  font-weight: 500;
}

.pf-group-list span {
  color: var(--pf-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pf-capability {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  max-width: none;
  padding: 0;
  background: var(--pf-ink);
  color: var(--pf-white);
}

.pf-capability-media {
  min-height: 560px;
}

.pf-capability-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 100px);
}

.pf-capability-copy h2 {
  max-width: 680px;
}

.pf-capability-copy > p:not(.pf-eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #d3d4d1;
  line-height: 1.7;
}

.pf-capability-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 38px 0;
}

.pf-capability-copy dl div {
  padding-top: 14px;
  border-top: 1px solid #4b504c;
}

.pf-capability-copy dt {
  color: #c9a773;
  font-family: var(--pf-serif);
  font-size: 24px;
}

.pf-capability-copy dd {
  margin: 7px 0 0;
  color: #d3d4d1;
  font-size: 12px;
}

.pf-capability-copy > a {
  align-self: flex-start;
  color: var(--pf-white);
}

.pf-projects {
  max-width: none;
  background: var(--pf-soft);
}

.pf-projects .pf-section-head,
.pf-projects .pf-project-grid {
  max-width: calc(var(--pf-max) - (2 * var(--pf-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.pf-project-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.pf-project-grid a {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  text-decoration: none;
}

.pf-project-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-project-grid span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 6px;
  padding: 17px;
  background: var(--pf-white);
}

.pf-project-grid small {
  color: var(--pf-bronze);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pf-project-grid strong {
  font-family: var(--pf-serif);
  font-size: 20px;
  font-weight: 500;
}

.pf-cta {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding-right: max(var(--pf-gutter), calc((100vw - var(--pf-max)) / 2 + var(--pf-gutter)));
  padding-left: max(var(--pf-gutter), calc((100vw - var(--pf-max)) / 2 + var(--pf-gutter)));
  background: var(--pf-bronze);
  color: var(--pf-white);
}

.pf-cta h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.pf-cta > div > p:not(.pf-eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.pf-cta .pf-eyebrow {
  color: #f5e6cd;
}

.pf-cta .pf-actions {
  flex: 0 0 auto;
  margin: 0;
}

.pf-cta .pf-button-primary {
  border-color: var(--pf-white);
  background: var(--pf-white);
  color: var(--pf-ink) !important;
}

.pf-cta .pf-button-secondary {
  border-color: var(--pf-white);
  color: var(--pf-white);
}

.pf-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(30px, 5vw, 80px);
  padding: 70px var(--pf-gutter) 108px;
  background: var(--pf-white);
}

.pf-footer > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-footer > div > strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.pf-footer > div > a,
.pf-footer > div > button:not(.pf-quote-button) {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pf-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.pf-footer .pf-brand {
  align-self: flex-start;
}

.pf-footer-brand p {
  max-width: 330px;
  margin: 4px 0 0;
  color: var(--pf-muted);
  font-size: 13px;
  line-height: 1.6;
}

.pf-copyright {
  position: absolute;
  right: var(--pf-gutter);
  bottom: 24px;
  left: var(--pf-gutter);
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--pf-line);
  color: var(--pf-muted);
  font-size: 11px;
}

.pf-home .pf-sticky {
  right: 18px;
  bottom: 18px;
  left: auto;
  display: flex;
  grid-template-columns: none;
  gap: 8px;
  width: auto;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
  box-shadow: 0 12px 36px rgba(31, 36, 33, 0.14);
  transform: none;
}

.pf-home .pf-sticky > div {
  display: none;
}

.pf-home .pf-sticky button,
.pf-home .pf-sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--pf-ink);
  text-decoration: none;
}

.pf-home .pf-sticky button {
  background: var(--pf-ink);
  color: var(--pf-white);
}

.pf-home .pf-sticky a {
  background: var(--pf-white);
  color: var(--pf-ink);
}

@media (max-width: 1220px) {
  .pf-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .pf-search {
    display: none;
  }

  .pf-hero {
    grid-template-columns: minmax(460px, 0.92fr) 1.08fr;
  }

  .pf-hero h1 {
    font-size: clamp(45px, 5.2vw, 68px);
  }
}

@media (max-width: 980px) {
  .pf-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .pf-menu {
    display: grid;
    gap: 4px;
    grid-column: 2;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--pf-line);
    background: var(--pf-white);
  }

  .pf-menu span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--pf-ink);
  }

  .pf-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px var(--pf-gutter) 20px;
    border-bottom: 1px solid var(--pf-line);
    background: var(--pf-white);
  }

  .pf-nav.is-open {
    display: flex;
  }

  .pf-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--pf-line);
  }

  .pf-hero {
    grid-template-columns: 1fr;
  }

  .pf-hero-copy {
    min-height: 590px;
  }

  .pf-hero-media {
    min-height: 620px;
  }

  .pf-category-grid,
  .pf-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-category-card-wide {
    min-height: 410px;
  }

  .pf-group-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-capability {
    grid-template-columns: 1fr;
  }

  .pf-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-project-grid a:first-child {
    grid-column: span 2;
  }

  .pf-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pf-footer {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --pf-gutter: 18px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .pf-announcement {
    min-height: 27px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .pf-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .pf-brand img {
    width: 42px;
    height: 42px;
  }

  .pf-brand span {
    font-size: 14px;
  }

  .pf-menu {
    grid-column: 2;
  }

  .pf-hotline {
    display: none;
  }

  .pf-quote-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .pf-hero-copy {
    min-height: auto;
    padding: 58px var(--pf-gutter) 50px;
  }

  .pf-hero h1 {
    font-size: clamp(43px, 12vw, 58px);
    line-height: 1;
  }

  .pf-hero-copy > p:not(.pf-eyebrow) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
  }

  .pf-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .pf-hero-proof {
    gap: 12px;
    margin-top: 42px;
  }

  .pf-hero-proof dt {
    font-size: 18px;
  }

  .pf-hero-proof dd {
    font-size: 10px;
  }

  .pf-hero-media {
    min-height: 390px;
  }

  .pf-hero-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .pf-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .pf-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .pf-section h2 {
    font-size: 39px;
  }

  .pf-category-grid {
    gap: 12px;
  }

  .pf-category-card,
  .pf-category-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .pf-category-card > span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 12px;
  }

  .pf-category-card strong {
    font-size: 18px;
  }

  .pf-category-card small {
    display: none;
  }

  .pf-product-grid {
    gap: 30px 12px;
  }

  .pf-product-card h3 {
    min-height: 44px;
    font-size: 18px;
  }

  .pf-product-card > div > strong {
    font-size: 14px;
  }

  .pf-group-list {
    grid-template-columns: 1fr;
  }

  .pf-group-list a {
    min-height: 120px;
  }

  .pf-capability-media {
    min-height: 390px;
  }

  .pf-capability-copy {
    padding: 62px var(--pf-gutter);
  }

  .pf-capability-copy dl {
    gap: 10px;
  }

  .pf-project-grid {
    grid-template-columns: 1fr;
  }

  .pf-project-grid a,
  .pf-project-grid a:first-child {
    grid-column: auto;
    min-height: 390px;
  }

  .pf-cta .pf-actions {
    width: 100%;
  }

  .pf-footer {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 126px;
  }

  .pf-footer-brand {
    grid-column: span 2;
  }

  .pf-home .pf-sticky {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-width: 1px 0 0;
  }

  .pf-home .pf-sticky button,
  .pf-home .pf-sticky a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .pf-header {
    gap: 8px;
  }

  .pf-brand span {
    display: none;
  }

  .pf-menu {
    justify-self: end;
  }

  .pf-category-card {
    min-height: 230px;
  }

  .pf-product-card p {
    font-size: 9px;
  }

  .pf-product-card > div > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pf-category-card img,
  .pf-product-card img {
    transition: none;
  }
}

/* Product-first + V7/V8 production visual correction */
:root {
  --pf-serif: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
  --pf-sans: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
}

html {
  text-rendering: optimizeLegibility;
}

body.pf-home {
  font-size: 16px;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.pf-home h1,
.pf-home h2,
.pf-home h3,
.pf-home strong,
.pf-home p,
.pf-home a,
.pf-home button {
  font-synthesis: none;
}

.pf-brand img {
  width: 44px;
  height: 44px;
}

.pf-hero {
  grid-template-columns: minmax(460px, 0.92fr) minmax(560px, 1.08fr);
  min-height: 650px;
}

.pf-hero-copy {
  padding: clamp(48px, 5vw, 78px) clamp(32px, 4.5vw, 72px);
}

.pf-hero h1 {
  max-width: 640px;
  font-family: var(--pf-sans);
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.pf-hero-copy > p:not(.pf-eyebrow) {
  max-width: 580px;
  margin-top: 22px;
  font-size: clamp(17px, 1.3vw, 18px);
  line-height: 1.65;
}

.pf-eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pf-hero-proof {
  margin-top: clamp(36px, 4vw, 54px);
}

.pf-hero-proof dt {
  font-family: var(--pf-sans);
  font-size: 20px;
  font-weight: 650;
}

.pf-section {
  padding-top: clamp(72px, 7vw, 100px);
  padding-bottom: clamp(72px, 7vw, 100px);
}

.pf-section h2,
.pf-capability-strip h2 {
  max-width: 760px;
  font-family: var(--pf-sans);
  font-size: clamp(30px, 2.8vw, 36px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.pf-section-head {
  align-items: end;
  margin-bottom: 30px;
}

.pf-section-copy {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--pf-muted);
  font-size: 16px;
  line-height: 1.65;
}

.pf-section-head > a,
.pf-capability-copy > a {
  font-size: 14px;
}

.pf-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pf-category-card,
.pf-category-card-wide {
  grid-column: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
}

.pf-category-card > span {
  right: 10px;
  bottom: 10px;
  left: 10px;
  gap: 4px;
  padding: 13px 14px;
}

.pf-category-card strong {
  font-family: var(--pf-sans);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 650;
  line-height: 1.2;
}

.pf-category-card small {
  font-size: 13px;
  line-height: 1.45;
}

.pf-product-grid {
  gap: 34px 18px;
}

.pf-product-card > a {
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
}

.pf-product-card > div {
  gap: 7px;
  padding-top: 14px;
}

.pf-product-card p {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.pf-product-card h3 {
  min-height: 48px;
  font-family: var(--pf-sans);
  font-size: clamp(20px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pf-product-card > div > span {
  min-height: 20px;
  font-size: 13px;
}

.pf-product-card > div > strong {
  font-size: 16px;
  font-weight: 700;
}

.pf-product-detail {
  align-self: start;
  justify-self: start;
  margin-top: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--pf-bronze);
  color: var(--pf-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.pf-solutions {
  max-width: none;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--pf-soft);
}

.pf-solutions .pf-section-head,
.pf-solutions .pf-solution-grid {
  max-width: calc(var(--pf-max) - (2 * var(--pf-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.pf-solutions .pf-section-head,
.pf-projects .pf-section-head {
  margin-bottom: 24px;
}

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

.pf-solution-grid > a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
  text-decoration: none;
}

.pf-solution-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pf-solution-grid span {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.pf-solution-grid strong {
  font-size: 21px;
  font-weight: 650;
  line-height: 1.25;
}

.pf-solution-grid small {
  color: var(--pf-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pf-product-needs {
  max-width: none;
  background: var(--pf-canvas);
}

.pf-product-needs .pf-section-head,
.pf-product-needs .pf-need-grid {
  max-width: calc(var(--pf-max) - (2 * var(--pf-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.pf-need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pf-need-grid > a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
  text-decoration: none;
}

.pf-need-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pf-need-grid span {
  display: grid;
  gap: 6px;
  padding: 17px;
}

.pf-need-grid strong {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.pf-need-grid small {
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.5;
}

.pf-projects {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--pf-white);
}

.pf-project-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.pf-project-grid a {
  min-height: 300px;
  border: 1px solid var(--pf-line);
}

.pf-project-grid small {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.pf-project-grid strong {
  font-family: var(--pf-sans);
  font-size: 21px;
  font-weight: 650;
}

.pf-capability-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(620px, 1.2fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(54px, 6vw, 80px) max(var(--pf-gutter), calc((100vw - var(--pf-max)) / 2 + var(--pf-gutter)));
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
  background: var(--pf-canvas);
}

.pf-capability-strip .pf-eyebrow {
  margin-bottom: 10px;
}

.pf-capability-strip dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.pf-capability-strip dl div {
  min-width: 0;
  padding: 16px 0;
  border-top: 2px solid var(--pf-bronze);
}

.pf-capability-strip dt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.pf-capability-strip dd {
  margin: 7px 0 0;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.45;
}

.pf-cta {
  background: var(--pf-ink);
}

.pf-cta .pf-eyebrow {
  color: #d2b78d;
}

.pf-cta .pf-button-primary {
  border-color: var(--pf-bronze);
  background: var(--pf-bronze);
  color: var(--pf-white) !important;
}

.pf-cta .pf-button-secondary {
  border-color: #737772;
}

@media (max-width: 980px) {
  .pf-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pf-hero-copy {
    min-height: auto;
  }

  .pf-hero-media {
    min-height: 520px;
  }

  .pf-category-grid,
  .pf-product-grid,
  .pf-need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pf-capability-strip {
    grid-template-columns: 1fr;
  }

  .pf-capability-strip dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pf-brand img {
    width: 38px;
    height: 38px;
  }

  .pf-hero-copy {
    padding: 48px var(--pf-gutter) 42px;
  }

  .pf-hero h1 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.015em;
  }

  .pf-hero-copy > p:not(.pf-eyebrow) {
    margin-top: 18px;
    font-size: 16px;
  }

  .pf-hero-media {
    min-height: 330px;
  }

  .pf-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .pf-section h2,
  .pf-capability-strip h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .pf-section-copy {
    font-size: 15px;
  }

  .pf-category-card,
  .pf-category-card-wide {
    min-height: 0;
  }

  .pf-category-card > span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 10px;
  }

  .pf-category-card strong {
    font-size: 19px;
  }

  .pf-category-card small {
    display: none;
  }

  .pf-product-card h3 {
    min-height: 48px;
    font-size: 19px;
  }

  .pf-product-card p,
  .pf-product-card > div > span,
  .pf-product-detail {
    font-size: 13px;
  }

  .pf-solution-grid {
    grid-template-columns: 1fr;
  }

  .pf-solution-grid strong {
    font-size: 20px;
  }

  .pf-solution-grid small {
    font-size: 15px;
  }

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

  .pf-need-grid strong {
    font-size: 19px;
  }

  .pf-project-grid {
    grid-template-columns: 1fr;
  }

  .pf-project-grid a,
  .pf-project-grid a:first-child {
    grid-column: auto;
    min-height: 360px;
  }

  .pf-capability-strip {
    gap: 30px;
    padding: 54px var(--pf-gutter);
  }

  .pf-capability-strip dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-capability-strip dt {
    font-size: 19px;
  }

  .pf-cta {
    background: var(--pf-ink);
  }
}

@media (max-width: 430px) {
  .pf-product-card > div > span {
    display: block;
    min-height: 34px;
  }

  .pf-need-grid small {
    font-size: 13px;
  }
}

/* Final pre-merge product-first compaction overrides. */
.pf-hero {
  min-height: 540px;
  height: 540px;
}

.pf-hero-copy {
  padding: 32px clamp(32px, 4vw, 58px);
}

.pf-hero .pf-eyebrow {
  margin-bottom: 10px;
}

.pf-hero h1 {
  max-width: 600px;
  font-size: clamp(44px, 3.7vw, 52px);
  line-height: 1.08;
}

.pf-hero-copy > p:not(.pf-eyebrow) {
  max-width: 570px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.5;
}

.pf-hero .pf-actions {
  margin-top: 20px;
}

.pf-hero .pf-button {
  min-height: 46px;
}

.pf-hero-media {
  height: 540px;
  min-height: 0;
}

.pf-section h2,
.pf-capability-strip h2 {
  font-size: clamp(30px, 2.5vw, 34px);
}

.pf-categories {
  padding-top: 44px;
  padding-bottom: 44px;
}

.pf-categories .pf-section-head {
  margin-bottom: 20px;
}

.pf-categories .pf-section-copy,
.pf-featured .pf-section-copy {
  margin-top: 8px;
}

.pf-category-grid {
  gap: 16px;
}

.pf-category-card,
.pf-category-card-wide {
  aspect-ratio: 16 / 9;
}

.pf-category-card > span {
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 10px 12px;
}

.pf-category-card strong {
  font-size: clamp(17px, 1.35vw, 19px);
}

.pf-featured {
  padding-top: 48px;
}

.pf-featured .pf-section-head {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .pf-hero {
    height: auto;
  }

  .pf-hero-copy {
    padding: 34px var(--pf-gutter) 28px;
  }

  .pf-hero-media {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .pf-announcement {
    min-height: 25px;
    padding: 4px var(--pf-gutter);
    font-size: 11px;
  }

  .pf-header {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .pf-hero-copy {
    padding: 22px var(--pf-gutter) 18px;
  }

  .pf-hero .pf-eyebrow {
    margin-bottom: 8px;
  }

  .pf-hero h1 {
    max-width: 350px;
    font-size: 34px;
    line-height: 1.08;
  }

  .pf-hero-copy > p:not(.pf-eyebrow) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.45;
  }

  .pf-hero .pf-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .pf-hero .pf-button {
    min-height: 44px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .pf-hero-media {
    height: 210px;
    min-height: 210px;
  }

  .pf-categories {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .pf-categories .pf-section-head {
    margin-bottom: 16px;
  }

  .pf-section h2,
  .pf-capability-strip h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .pf-category-grid {
    gap: 12px;
  }

  .pf-category-card,
  .pf-category-card-wide {
    aspect-ratio: 16 / 10;
  }

  .pf-category-card > span {
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 8px;
  }

  .pf-category-card strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .pf-featured {
    padding-top: 40px;
  }
}
