:root {
  --page-gutter: clamp(24px, 5vw, 72px);
}

.cp-page {
  min-width: 320px;
  background: var(--paper);
}

.cp-page main {
  padding-top: var(--header-height);
}

.cp-page .site-header.is-solid {
  color: var(--ink);
}

.cp-page .site-header.is-solid::before {
  background: rgba(255, 255, 255, .96);
}

.cp-page .nav-links a.is-active {
  color: var(--teal);
}

.cp-page .menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.cp-page .menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.cp-hero {
  position: relative;
  padding: clamp(104px, 10vw, 156px) 0 clamp(96px, 9vw, 142px);
  overflow: hidden;
  background: var(--paper);
}

.cp-hero--panel {
  background: var(--panel);
}

.cp-hero--ink {
  color: var(--paper);
  background: var(--ink);
}

.cp-hero--ink::before,
.cp-dark-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 88% 18%, rgba(21, 184, 146, .15), transparent 30%),
    linear-gradient(115deg, transparent 58%, rgba(255, 255, 255, .035));
}

.cp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(56px, 9vw, 132px);
}

.cp-hero__copy {
  max-width: 760px;
}

.cp-kicker,
.cp-label,
.cp-meta,
.cp-stat span,
.cp-role__dept,
.cp-form-label,
.cp-footer-note {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.cp-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--teal);
}

.cp-kicker::before {
  width: 28px;
  height: 1px;
  flex: none;
  content: "";
  background: currentColor;
  opacity: .52;
}

.cp-hero--ink .cp-kicker,
.cp-dark-band .cp-kicker {
  color: var(--teal-bright);
}

.cp-title {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.3vw, 84px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.cp-title--compact {
  font-size: clamp(44px, 5.2vw, 70px);
}

.cp-hero--ink .cp-title {
  color: var(--paper);
}

.cp-lede {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.cp-hero--ink .cp-lede {
  color: rgba(255, 255, 255, .7);
}

.cp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cp-button--outline {
  color: var(--ink);
  border-color: rgba(22, 39, 43, .36);
  background: transparent;
}

.cp-button--outline:hover {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.cp-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 9px;
  background: #E9EFEB;
}

.cp-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(22, 39, 43, .48));
}

.cp-visual img,
.cp-visual video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.cp-visual__caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, .86);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cp-section {
  padding: clamp(96px, 9vw, 144px) 0;
}

.cp-section--panel {
  background: var(--panel);
}

.cp-section--tight {
  padding: clamp(70px, 7vw, 104px) 0;
}

.cp-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 54px;
}

.cp-section__head > div {
  max-width: 780px;
}

.cp-heading {
  max-width: 19ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.cp-heading--small {
  font-size: clamp(30px, 3.5vw, 44px);
}

.cp-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cp-grid-2,
.cp-grid-3,
.cp-grid-4 {
  display: grid;
  gap: 24px;
}

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

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

.cp-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cp-card {
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: border-color 300ms ease, transform 450ms var(--ease), box-shadow 450ms var(--ease);
}

.cp-card:hover {
  border-color: rgba(14, 110, 92, .32);
  box-shadow: 0 26px 68px rgba(22, 39, 43, .08);
  transform: translateY(-6px);
}

.cp-card .cp-label {
  margin: 0 0 18px;
  color: var(--teal);
}

.cp-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.cp-card p:last-child {
  margin-bottom: 0;
}

.cp-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.cp-copy p {
  margin-bottom: 22px;
}

.cp-copy p:last-child {
  margin-bottom: 0;
}

.cp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cp-stat {
  min-width: 0;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.cp-stat:last-child {
  border-right: 0;
}

.cp-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.055em;
  line-height: 1;
}

.cp-stat span {
  color: var(--muted);
  font-size: 9px;
}

.cp-dark-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.cp-dark-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.cp-dark-band h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.cp-dark-band p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
}

.cp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.cp-person {
  min-width: 0;
}

.cp-person__image {
  height: 330px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.cp-person__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 700ms var(--ease);
}

.cp-person:hover .cp-person__image img {
  transform: scale(1.035);
}

.cp-person h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.cp-person > p {
  margin: 0;
  color: var(--teal);
  font-size: 14px;
}

.cp-person__note {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.55;
}

.cp-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cp-partners > div {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.cp-partners img {
  max-width: 88%;
  max-height: 66px;
  object-fit: contain;
}

/* Shop */
.cp-market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}

.cp-market-strip a {
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: color 250ms ease, background 300ms ease;
}

.cp-market-strip a:last-child {
  border-right: 0;
}

.cp-market-strip a:hover {
  color: var(--paper);
  background: var(--teal);
}

.cp-market-strip strong {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.cp-market-strip span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cp-market-strip a:hover span:last-child,
.cp-market-strip a:hover .cp-label {
  color: rgba(255, 255, 255, .78);
}

.shop-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn,
.interest-chip {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.filter-btn.active,
.interest-chip.active,
.filter-btn:hover,
.interest-chip:hover {
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
}

.filters {
  margin-bottom: 30px;
}

.cp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cp-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: transform 450ms var(--ease), box-shadow 450ms var(--ease), border-color 250ms ease;
}

.cp-product:hover {
  border-color: rgba(14, 110, 92, .34);
  box-shadow: 0 28px 70px rgba(22, 39, 43, .1);
  transform: translateY(-6px);
}

.cp-product__media {
  height: 330px;
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: hidden;
  background: var(--panel);
}

.cp-product__media img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(22, 39, 43, .14));
  transform: scale(var(--product-scale, 1));
  transition: transform 650ms var(--ease);
}

.cp-product:hover .cp-product__media img {
  transform: translateY(-5px) scale(var(--product-scale-hover, 1.035));
}

.cp-product__body {
  display: flex;
  min-height: 310px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.cp-product__meta {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}

.cp-product__meta .cp-label {
  margin: 0;
  color: var(--teal);
}

.cp-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}

.cp-rating > span {
  color: #C99434;
  font-size: 14px;
  letter-spacing: .07em;
}

.cp-rating small {
  color: var(--muted);
  font-size: 11px;
}

.cp-product__body h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.cp-product__body h3 sub {
  position: relative;
  bottom: -.08em;
  font-size: .62em;
  line-height: 0;
}

.cp-product__body > p:not(.cp-label) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.price-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.cp-product__footer {
  width: 100%;
  margin-top: auto;
}

.cp-product__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 17px;
}

.cp-product__actions .button {
  min-height: 44px;
  padding: 0 13px;
  white-space: nowrap;
  font-size: 12px;
}

.price-label {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.cart-button svg {
  width: 19px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 99px;
  color: var(--paper);
  background: var(--teal);
  font-size: 10px;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  z-index: 199;
  inset: 0;
  pointer-events: none;
  background: rgba(22, 39, 43, .46);
  opacity: 0;
  transition: opacity 300ms ease;
}

.cart-overlay.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(22, 39, 43, .18);
  transform: translateX(105%);
  transition: transform 460ms var(--ease);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-close,
.cart-remove,
.qty-controls button {
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.cart-close {
  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 10px 0;
}

.empty-cart {
  padding: 46px 8px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 72px;
  padding: 7px;
  object-fit: contain;
  border-radius: 7px;
  background: var(--panel);
}

.cart-item strong {
  display: block;
  font-size: 14px;
}

.cart-item .muted {
  color: var(--muted);
  font-size: 12px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 7px;
}

.qty-controls button {
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.cart-foot {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.product-dialog {
  position: fixed;
  z-index: 240;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  overflow-y: auto;
  background: rgba(22, 39, 43, .68);
  backdrop-filter: blur(10px);
}

.product-dialog[hidden] {
  display: none;
}

.product-dialog__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(10, 31, 29, .28);
}

.product-dialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.product-dialog__grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.product-dialog__media {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 78px);
  background: var(--panel);
}

.product-dialog__media img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(22, 39, 43, .16));
}

.product-dialog__content {
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 6vw, 78px);
}

.product-dialog__content > .cp-label {
  margin: 0 0 14px;
  color: var(--teal);
}

.product-dialog__content h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.product-dialog__price {
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.product-dialog__size {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.product-dialog__description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-dialog__highlights {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.product-dialog__highlights h3 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: 18px;
}

.product-dialog__highlights ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-dialog__highlights li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-dialog__highlights li::before {
  position: absolute;
  top: .45em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--teal-bright);
}

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

.product-dialog__quantity {
  min-height: 48px;
  display: grid;
  grid-template-columns: 40px 36px 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.product-dialog__quantity button {
  align-self: stretch;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.product-dialog__quantity output {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.product-dialog__actions > .button {
  flex: 1;
}

.product-dialog__shipping {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

body.product-dialog-open {
  overflow: hidden;
}

/* Contact */
.cp-contact-shell {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr);
  min-height: calc(100svh - var(--header-height));
}

.cp-contact-aside,
.cp-contact-main {
  padding: clamp(64px, 8vw, 118px) var(--page-gutter);
}

.cp-contact-aside {
  color: var(--paper);
  background: var(--ink);
}

.cp-contact-aside .cp-title {
  max-width: 8ch;
  color: var(--paper);
  font-size: clamp(46px, 5.4vw, 70px);
}

.cp-contact-aside .cp-lede {
  color: rgba(255, 255, 255, .68);
}

.cp-contact-list {
  display: grid;
  gap: 26px;
  margin-top: 54px;
}

.cp-contact-list > div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.cp-contact-list .cp-label {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-bright);
}

.cp-contact-list a,
.cp-contact-list p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.cp-contact-list a:hover {
  color: var(--paper);
}

.cp-contact-main {
  background: var(--panel);
}

.cp-form {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
}

.cp-form__head {
  margin-bottom: 34px;
}

.cp-form__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.cp-form__head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.cp-form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #D7DEDA;
  border-radius: 7px;
  outline: none;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 110, 92, .1);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.consent-row input {
  margin-top: 4px;
  accent-color: var(--teal);
}

.cp-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

.cp-form__submit small {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.5;
}

/* Careers */
.cp-role-list {
  border-top: 1px solid var(--line);
}

.cp-role {
  border-bottom: 1px solid var(--line);
}

.cp-role summary {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px 4px;
  cursor: pointer;
  list-style: none;
}

.cp-role summary::-webkit-details-marker {
  display: none;
}

.cp-role__dept {
  color: var(--teal);
}

.cp-role__title h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.cp-role__title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cp-role__toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 22px;
  transition: color 250ms ease, background 250ms ease, transform 350ms var(--ease);
}

.cp-role[open] .cp-role__toggle {
  color: var(--paper);
  background: var(--teal);
  transform: rotate(45deg);
}

.cp-role__body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 0 72px 38px 4px;
}

.cp-role__content {
  max-width: 820px;
  color: var(--muted);
}

.cp-role__content h4 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
}

.cp-role__content h4:first-child {
  margin-top: 0;
}

.cp-role__content ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.cp-role__content li {
  margin: 7px 0;
}

/* News */
.cp-news-masthead {
  padding: clamp(92px, 9vw, 136px) 0 clamp(62px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.cp-news-masthead .cp-title {
  max-width: none;
}

.cp-news-masthead .cp-lede {
  margin-top: 22px;
}

.cp-news-listing {
  padding-top: clamp(72px, 7vw, 108px);
}

.cp-news-featured {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  margin-bottom: 72px;
}

.cp-news-lead,
.cp-news-side {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
}

.cp-news-side-wrap {
  display: grid;
  gap: 24px;
}

.cp-news-image {
  display: block;
  height: 360px;
  overflow: hidden;
  background: var(--panel);
}

.cp-news-side .cp-news-image {
  height: 190px;
}

.cp-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.cp-news-lead:hover .cp-news-image img,
.cp-news-side:hover .cp-news-image img,
.cp-news-card:hover .cp-news-image img {
  transform: scale(1.035);
}

.cp-news-content {
  padding: 28px;
}

.cp-news-content .cp-meta {
  margin: 0 0 12px;
  color: var(--teal);
}

.cp-news-content h2,
.cp-news-content h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.cp-news-content h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.cp-news-content h3 {
  font-size: 22px;
}

.cp-news-content > p:not(.cp-meta) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.cp-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 24px;
}

.cp-news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.cp-news-card .cp-news-image {
  height: 190px;
  border-radius: 8px;
}

.cp-news-card .cp-news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 0 0;
}

.cp-news-card .cp-news-content h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.cp-news-card .cp-news-content > p:not(.cp-meta) {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cp-news-card .cp-inline-link,
.cp-news-card .cp-news-status {
  margin-top: auto;
}

.cp-news-status {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cp-inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}

.cp-inline-link:hover {
  color: var(--teal-deep);
}

/* Article */
.cp-article {
  padding: clamp(82px, 9vw, 132px) 0;
}

.cp-article__head,
.cp-article__body {
  width: min(850px, 100%);
  margin: 0 auto;
}

.cp-article__head .cp-title {
  max-width: 14ch;
  font-size: clamp(44px, 6vw, 76px);
}

.cp-article__hero {
  width: min(1120px, 100%);
  height: min(62vw, 620px);
  min-height: 360px;
  margin: 54px auto 62px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--panel);
}

.cp-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-article__body {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.cp-article__body > p:first-child {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.cp-article__body h2 {
  margin: 54px 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.cp-article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 46px 0;
}

.cp-article-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.cp-back-link {
  display: inline-flex;
  margin-top: 54px;
  color: var(--teal);
  font-weight: 600;
}

/* Shared footer refinements */
.cp-page .site-footer {
  margin-top: 0;
}

.cp-page .footer-brand p {
  max-width: 590px;
}

@media (max-width: 1180px) {
  .cp-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .cp-person__image {
    height: 390px;
  }

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

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

  .cp-partners {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .cp-page .nav-actions .cart-button {
    display: grid;
  }

  .cp-hero__grid,
  .cp-contact-shell,
  .cp-news-featured {
    grid-template-columns: 1fr;
  }

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

  .product-dialog__grid {
    grid-template-columns: 1fr;
  }

  .product-dialog__media {
    min-height: 360px;
  }

  .product-dialog__media img {
    max-height: 300px;
  }

  .cp-visual {
    min-height: 440px;
  }

  .cp-grid-3,
  .cp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cp-stat:nth-child(2) {
    border-right: 0;
  }

  .cp-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cp-contact-aside,
  .cp-contact-main {
    padding-right: max(28px, 6vw);
    padding-left: max(28px, 6vw);
  }

  .cp-news-side-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cp-hero {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .cp-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .cp-section__head,
  .shop-tools,
  .cp-dark-band__inner,
  .cp-form__submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .cp-grid-2,
  .cp-grid-3,
  .cp-grid-4,
  .cp-product-grid,
  .cp-news-grid,
  .cp-news-side-wrap,
  .cp-team-grid,
  .form-grid,
  .cp-market-strip {
    grid-template-columns: 1fr;
  }

  .cp-market-strip a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cp-market-strip a:last-child {
    border-bottom: 0;
  }

  .cp-product__media {
    height: 300px;
  }

  .cp-product__body {
    min-height: 300px;
  }

  .product-dialog {
    place-items: start center;
    padding: 0;
  }

  .product-dialog__panel {
    min-height: 100svh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .product-dialog__media {
    min-height: 300px;
    padding: 42px;
  }

  .product-dialog__media img {
    max-height: 240px;
  }

  .product-dialog__content {
    padding: 34px 24px 44px;
  }

  .product-dialog__content h2 {
    padding-right: 30px;
  }

  .product-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-dialog__quantity {
    width: 128px;
  }

  .cp-person__image {
    height: 370px;
  }

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

  .cp-role summary {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .cp-role__dept {
    grid-column: 1 / -1;
  }

  .cp-role__body {
    grid-template-columns: 1fr;
    padding-right: 4px;
  }

  .cp-role__body > span {
    display: none;
  }

  .cp-news-image,
  .cp-news-side .cp-news-image {
    height: 250px;
  }

  .cp-article-gallery {
    grid-template-columns: 1fr;
  }

  .cp-article-gallery img {
    height: 260px;
  }

  .cp-article__hero {
    min-height: 280px;
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-card,
  .cp-product,
  .cp-person__image img,
  .cp-news-image img {
    transition: none !important;
  }
}
