@font-face {
  font-family: "Veltide Serif";
  src: url("../fonts/cormorant-garamond.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "Veltide Sans";
  src: url("../fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #4b4241;
  --ink-soft: #796f6d;
  --paper: #ffffff;
  --white: #ffffff;
  --mist: #fbf8f6;
  --line: #eae1db;
  --teal: #b88e6b;
  --teal-bright: #c7a47e;
  --metal: #e9d8c7;
  --danger: #a6534a;
  --success: #5d806a;
  --shell: 1240px;
  --radius: 6px;
  --shadow: 0 18px 54px rgba(91, 72, 64, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Veltide Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Veltide Serif", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  font-size: 50px;
  line-height: 1.03;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin-top: 0;
}

.site-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-main {
  min-height: 65vh;
}

.section {
  padding: 112px 0;
}

.section--soft {
  background: var(--mist);
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
}

.icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal-bright);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
button.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding-inline: 16px;
}

.button--dark,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  color: var(--ink);
  background: #e8d7c8;
  border-color: #e8d7c8;
}

.button--dark:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: var(--ink);
  background: #dfc9b8;
  border-color: #dfc9b8;
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  background: var(--mist);
  border-color: var(--mist);
}

.button--outline,
.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: #bfc0c4;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--ink);
}

.button--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--ghost-light:hover {
  border-color: var(--white);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}

.announcement {
  color: var(--white);
  background: var(--teal);
}

.announcement__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(19, 23, 25, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 5px 20px rgba(19, 23, 25, 0.08);
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand__mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand__name {
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 30px;
  line-height: 0.9;
  font-weight: 600;
}

.brand__descriptor {
  margin-top: 7px;
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 12px 0;
  color: #303138;
  font-size: 13px;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--teal-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
}

.icon-button:hover {
  border-color: var(--ink);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
  font-size: 10px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
}

.nav-toggle__close {
  display: none;
}

.hero-oem {
  position: relative;
  min-height: 680px;
  height: calc(100vh - 114px);
  max-height: 780px;
  overflow: hidden;
  background: #f7f7f7;
}

.hero-oem__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-oem__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-oem__copy {
  width: min(590px, 48%);
  padding: 38px 0 56px;
}

.hero-oem h1 {
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-oem__lead {
  max-width: 555px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-strip__grid {
  display: grid;
  min-height: 106px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-strip__grid > div {
  display: flex;
  min-height: 50px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  gap: 16px;
}

.proof-strip__grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  color: #e4c28f;
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.proof-strip span {
  font-size: 13px;
  font-weight: 600;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.split-intro h2 {
  max-width: 530px;
}

.split-intro__copy {
  padding-top: 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.split-intro__copy p:last-of-type {
  margin-bottom: 28px;
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1fr 360px;
  gap: 90px;
  align-items: end;
}

.section-heading h2 {
  max-width: 740px;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
}

.section-heading--light > p {
  color: #f4f7f8;
}

.section-heading--light .eyebrow,
.section--dark .eyebrow {
  color: #e4c28f;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-list article {
  min-height: 290px;
  padding: 30px 28px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-list article > span {
  display: block;
  margin-bottom: 72px;
  color: #e4c28f;
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 28px;
}

.service-list h3 {
  margin-bottom: 16px;
}

.service-list p {
  color: #f4f7f8;
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 82px;
  align-items: center;
}

.process-grid--reverse {
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
}

.process-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.process-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.process-copy h2 {
  margin-bottom: 24px;
}

.process-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-steps {
  padding: 0;
  margin: 34px 0 36px;
  list-style: none;
}

.process-steps li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
  gap: 10px;
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--teal-bright);
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 21px;
}

.process-steps h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.process-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.materials-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-column {
  min-height: 300px;
  padding: 34px 26px;
  border-left: 1px solid var(--line);
}

.spec-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.spec-column h3 {
  margin-bottom: 32px;
  color: var(--teal);
}

.spec-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-column li {
  position: relative;
  padding: 9px 0 9px 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.spec-column li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--metal);
  content: "";
}

.stock-feature {
  padding: 0;
  background: var(--mist);
}

.stock-feature__grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.stock-feature__copy {
  display: flex;
  padding: 90px 70px 90px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.stock-feature__copy h2 {
  margin-bottom: 26px;
}

.stock-feature__copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.stock-feature__media {
  min-height: 520px;
  overflow: hidden;
}

.stock-feature__media img {
  height: 100%;
  object-fit: cover;
}

.buyer-lines {
  border-top: 1px solid var(--line);
}

.buyer-lines > div {
  display: grid;
  min-height: 114px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.buyer-lines span {
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 29px;
  line-height: 1.1;
}

.buyer-lines p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
}

.buyer-lines--four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line);
}

.buyer-lines--four > div {
  display: block;
  min-height: 230px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.buyer-lines--four p {
  margin-top: 24px;
}

.project-cta {
  padding: 94px 0;
  color: var(--white);
  background: var(--teal);
}

.project-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}

.project-cta .eyebrow {
  color: #e0d9ce;
}

.project-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.project-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #e9e5dc;
}

.page-hero {
  padding: 122px 0 94px;
  background: var(--mist);
}

.page-hero--dark,
.page-hero--about {
  color: var(--white);
  background: var(--ink);
}

.page-hero--contact {
  background: #f1f2f4;
}

.page-hero--compact {
  padding: 82px 0 66px;
}

.page-hero__inner {
  max-width: 930px;
  margin-left: max(24px, calc((100% - var(--shell)) / 2));
}

.page-hero h1 {
  margin-bottom: 28px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 19px;
}

.page-hero--dark p:not(.eyebrow),
.page-hero--about p:not(.eyebrow) {
  color: #dddad3;
}

.check-list {
  padding: 0;
  margin: 30px 0 36px;
  list-style: none;
}

.check-list li {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 18px;
  height: 18px;
  color: var(--teal-bright);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d7d6d5;
  border-left: 1px solid #d7d6d5;
}

.timeline-grid article {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid #d7d6d5;
  border-bottom: 1px solid #d7d6d5;
}

.timeline-grid article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--teal-bright);
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 29px;
}

.timeline-grid h3 {
  margin-bottom: 12px;
}

.timeline-grid p {
  color: var(--ink-soft);
  font-size: 14px;
}

.capability-rows article {
  display: grid;
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 100px 1.1fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.capability-rows article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.capability-rows article > span {
  color: #e4c28f;
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 32px;
}

.capability-rows h2 {
  margin-bottom: 14px;
  font-size: 38px;
}

.capability-rows p,
.capability-rows li {
  color: #f4f7f8;
}

.capability-rows ul {
  padding-left: 18px;
  margin: 2px 0 0;
}

.capability-rows li {
  padding: 4px 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d7d6d5;
  border-left: 1px solid #d7d6d5;
}

.principle-grid article {
  min-height: 230px;
  padding: 40px;
  border-right: 1px solid #d7d6d5;
  border-bottom: 1px solid #d7d6d5;
}

.principle-grid h3 {
  margin-bottom: 24px;
  color: var(--teal);
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.principle-grid p {
  max-width: 460px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 24px;
}

.product-card {
  min-width: 0;
}

.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--mist);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.stock-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 3px;
  color: var(--white);
  background: var(--teal);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__body {
  padding: 18px 2px 0;
}

.product-card__type {
  margin-bottom: 8px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h2 {
  font-family: "Veltide Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.product-card__footer {
  display: flex;
  min-height: 52px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-card__footer .price {
  font-size: 14px;
  font-weight: 600;
}

.product-card__footer .icon-button {
  width: 36px;
  height: 36px;
  border: 0;
}

.stock-empty {
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  background: var(--mist);
}

.stock-empty > div {
  padding: 64px 0 64px 64px;
}

.stock-empty h2 {
  margin-bottom: 24px;
}

.stock-empty p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.stock-empty img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 118px;
}

.contact-intro h2 {
  margin-bottom: 36px;
}

.contact-checklist {
  padding: 0;
  margin: 0 0 42px;
  list-style: none;
}

.contact-checklist li {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 10px;
}

.contact-checklist li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-checklist li > span {
  color: var(--teal-bright);
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 23px;
}

.contact-checklist h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.contact-checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.direct-contact {
  padding: 26px 0;
}

.direct-contact > p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.inquiry-panel {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 20px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #33343a;
  font-size: 13px;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d5d5d7;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form textarea {
  min-height: 160px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(45, 119, 113, 0.25);
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-field span {
  margin: 0 !important;
  color: var(--ink-soft) !important;
  font-weight: 400 !important;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-footnote {
  margin: 12px 0 0;
  color: #666870;
  font-size: 11px;
  text-align: center;
}

.form-notice {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 3px;
  font-size: 13px;
}

.form-notice--success {
  color: var(--success);
  background: #eaf4ee;
}

.form-notice--error {
  color: var(--danger);
  background: #f8ebeb;
}

.prose {
  max-width: 850px;
}

.prose h2,
.prose h3 {
  margin: 2em 0 0.7em;
}

.prose h2 {
  font-size: 40px;
}

.prose a {
  color: var(--teal);
  text-decoration: underline;
}

.prose img {
  margin: 2rem 0;
  border-radius: var(--radius);
}

.faq-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.prose .faq-item h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 26px;
}

.post-card__media {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--mist);
}

.post-card__media img {
  height: 100%;
  object-fit: cover;
}

.post-card h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.post-card > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.article-header {
  padding: 100px 0 64px;
  background: var(--mist);
}

.article-header__inner {
  max-width: 960px;
}

.article-header h1 {
  margin-bottom: 24px;
}

.article-header p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 19px;
}

.article-featured {
  padding-top: 54px;
}

.article-featured img {
  max-height: 680px;
  border-radius: var(--radius);
  object-fit: cover;
}

.prose--article {
  padding-top: 72px;
  padding-bottom: 112px;
}

.commerce-shell .woocommerce-breadcrumb {
  margin-bottom: 34px;
  color: #666870;
  font-size: 12px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: 100%;
  float: none;
}

.woocommerce div.product .product_title {
  margin-bottom: 20px;
  font-family: "Veltide Serif", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--teal);
  font-size: 20px;
}

.woocommerce div.product form.cart {
  display: flex;
  margin: 28px 0;
  gap: 10px;
}

.woocommerce .quantity .qty {
  min-height: 48px;
  border: 1px solid #d5d5d7;
  border-radius: 3px;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 60px 0 28px;
  border-bottom: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0;
  margin: 0 28px 0 0;
  border: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 0;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: 100%;
  margin: 0;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 17px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--teal);
  background: var(--mist);
}

.oem-price {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.veltide-single-quote {
  margin: 10px 0 24px;
}

.not-found {
  display: flex;
  min-height: 70vh;
  padding: 100px 0;
  align-items: center;
}

.not-found h1 {
  max-width: 800px;
  margin-bottom: 24px;
}

.not-found p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 18px;
}

.site-footer {
  padding: 82px 0 22px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1.45fr 0.65fr 0.65fr 1fr;
  gap: 56px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 25px;
  color: #d1d1d4;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #8a8a8e;
  font-family: "Veltide Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column a {
  color: #dedee0;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact p {
  color: #d1d1d4;
  font-size: 13px;
}

.footer-contact .text-link {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #888a90;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #168b5b;
  box-shadow: 0 8px 24px rgba(13, 68, 45, 0.25);
}

@media (max-width: 1100px) {
  h1 { font-size: 62px; }
  h2 { font-size: 44px; }
  .site-header__inner { grid-template-columns: 190px 1fr auto; gap: 18px; }
  .primary-nav ul { gap: 18px; }
  .header-actions .button { display: none; }
  .process-grid,
  .process-grid--reverse { gap: 54px; grid-template-columns: 1fr 1fr; }
  .stock-feature__copy { padding-right: 44px; }
}

@media (max-width: 900px) {
  .site-shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding: 86px 0; }
  h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .announcement__inner { gap: 20px; }
  .announcement__inner span:nth-child(2) { display: none; }
  .site-header__inner { min-height: 74px; grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: inline-flex; grid-column: 2; }
  .primary-nav {
    position: fixed;
    inset: 106px 0 0;
    display: none;
    padding: 28px 18px 50px;
    overflow-y: auto;
    background: var(--white);
  }
  .nav-open .primary-nav { display: block; }
  .nav-open .nav-toggle__open { display: none; }
  .nav-open .nav-toggle__close { display: inline-flex; }
  .primary-nav ul { display: block; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav a { padding: 18px 4px; font-size: 17px; }
  .header-actions { grid-column: 3; }
  .hero-oem { min-height: 660px; height: calc(100vh - 106px); max-height: 760px; }
  .hero-oem::after { position: absolute; inset: 0; background: rgba(11, 17, 18, 0.56); content: ""; }
  .hero-oem__image { object-position: 68% center; }
  .hero-oem__copy { z-index: 1; width: min(620px, 100%); color: var(--white); }
  .hero-oem__lead { color: #f4f7f8; }
  .hero-oem .eyebrow { color: #e4c28f; }
  .hero-oem .button--dark { color: var(--ink); background: var(--white); border-color: var(--white); }
  .hero-oem .button--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child { min-height: 64px; padding: 0 18px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
  .proof-strip__grid > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .split-intro,
  .section-heading,
  .process-grid,
  .process-grid--reverse,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-intro__copy { padding-top: 0; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 620px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-list article:nth-child(3) { border-left: 0; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-column:nth-child(3) { border-left: 0; }
  .stock-feature__grid { min-height: 0; grid-template-columns: 1fr; }
  .stock-feature__copy { padding: 78px 0; }
  .stock-feature__media { min-height: 480px; }
  .project-cta__inner { grid-template-columns: 1fr; gap: 38px; align-items: start; }
  .page-hero__inner { margin-left: 18px; margin-right: 18px; }
  .capability-rows article { grid-template-columns: 70px 1fr; gap: 28px; }
  .capability-rows article ul { grid-column: 2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-empty { grid-template-columns: 1fr; gap: 0; }
  .stock-empty > div { padding: 52px; }
  .stock-empty img { min-height: 420px; }
  .contact-intro { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
  .footer-contact { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .site-shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 68px 0; }
  h1 { font-size: 46px; line-height: 1; }
  h2 { font-size: 36px; line-height: 1.05; }
  h3 { font-size: 18px; }
  .announcement__inner { min-height: 30px; justify-content: space-between; gap: 8px; font-size: 9px; }
  .site-header__inner { min-height: 70px; }
  .primary-nav { inset: 100px 0 0; }
  .brand__mark { width: 29px; height: 29px; }
  .brand__name { font-size: 27px; }
  .brand__descriptor { font-size: 8px; }
  .header-actions { display: none; }
  .hero-oem { min-height: 670px; height: calc(100vh - 100px); max-height: 760px; }
  .hero-oem__inner { align-items: flex-end; }
  .hero-oem__copy { padding-bottom: 52px; }
  .hero-oem__lead { font-size: 16px; }
  .hero-oem .button-row { align-items: stretch; }
  .hero-oem .button { width: 100%; }
  .proof-strip span { font-size: 11px; }
  .proof-strip strong { font-size: 24px; }
  .proof-strip__grid > div { gap: 9px; }
  .split-intro { gap: 34px; }
  .split-intro__copy { font-size: 16px; }
  .section-heading { margin-bottom: 42px; gap: 24px; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article,
  .service-list article:first-child,
  .service-list article:nth-child(3) { min-height: 230px; padding: 28px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .service-list article > span { margin-bottom: 42px; }
  .process-grid,
  .process-grid--reverse { gap: 38px; }
  .process-media img { aspect-ratio: 4 / 3; }
  .process-steps li { grid-template-columns: 42px 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-column,
  .spec-column:first-child,
  .spec-column:nth-child(3) { min-height: 0; padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .spec-column h3 { margin-bottom: 16px; }
  .stock-feature__copy { padding: 64px 0; }
  .stock-feature__media { min-height: 360px; }
  .buyer-lines > div { padding: 26px 0; grid-template-columns: 1fr; gap: 12px; }
  .buyer-lines span { font-size: 25px; }
  .buyer-lines--four { grid-template-columns: 1fr; }
  .buyer-lines--four > div { min-height: 0; padding: 30px 22px; }
  .project-cta { padding: 70px 0; }
  .project-cta .button-row { width: 100%; }
  .project-cta .button { width: 100%; }
  .page-hero { padding: 82px 0 64px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid article { min-height: 230px; }
  .timeline-grid article > span { margin-bottom: 36px; }
  .capability-rows article { padding: 38px 0; grid-template-columns: 48px 1fr; gap: 18px; }
  .capability-rows h2 { font-size: 30px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 0; padding: 32px 24px; }
  .principle-grid h3 { font-size: 27px; }
  .product-grid,
  .post-grid { grid-template-columns: 1fr; }
  .stock-empty > div { padding: 38px 24px; }
  .stock-empty img { min-height: 320px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .inquiry-panel { padding: 28px 20px; }
  .contact-grid { gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: flex-end; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .woocommerce div.product .product_title { font-size: 42px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Bright collection refresh. Kept at the end to intentionally refine legacy dark styles. */
.site-header {
  border-bottom-color: rgba(61, 70, 80, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.hero-oem {
  min-height: 700px;
  background: #f6f8f9;
}

.hero-oem__image {
  object-position: center;
}

.hero-oem h1 {
  color: var(--ink);
}

.hero-oem__lead {
  color: #697783;
}

.proof-strip {
  color: var(--ink);
  background: #f5f7f8;
  border-bottom: 1px solid #e0e4e6;
}

.proof-strip__grid > div,
.proof-strip__grid > div:first-child {
  border-left-color: #e0e4e6;
}

.proof-strip strong {
  color: #a98158;
}

.section--dark {
  background: #68757e;
}

.section-heading--light > p {
  color: #f4f7f8;
}

.section-heading--light .eyebrow,
.section--dark .eyebrow {
  color: #e4c28f;
}

.service-list {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.service-list article {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.stock-feature {
  background: #f7f9fa;
}

.collection-preview {
  background: #ffffff;
}

.collection-preview__heading {
  margin-bottom: 54px;
}

.collection-preview__heading > div:last-child {
  color: var(--ink-soft);
}

.collection-preview__heading .text-link {
  margin-top: 20px;
}

.product-grid--featured {
  gap: 36px 24px;
}

.product-card {
  padding: 0;
}

.product-card__media {
  border: 1px solid #e3e7e9;
  background: #fbfcfc;
  box-shadow: 0 10px 28px rgba(61, 70, 80, 0.07);
}

.product-card__body {
  padding-top: 20px;
}

.product-card__type {
  color: #9c7851;
}

.product-card__availability {
  color: #67727c;
  font-size: 13px;
  font-weight: 600;
}

.product-card__footer {
  border-top-color: #e2e6e8;
}

.product-card__footer .icon-button {
  color: var(--white);
  background: var(--teal);
}

.product-card__footer .icon-button:hover {
  color: var(--white);
  background: #3f4b55;
}

.page-hero {
  background: #f1f4f6;
}

.page-hero--collection {
  background: #f7f9fa;
}

.page-hero--about {
  color: var(--ink);
  background: #f8f9fa;
}

.page-hero--about p:not(.eyebrow) {
  color: var(--ink-soft);
}

.project-cta {
  background: #c8a372;
}

.project-cta .eyebrow {
  color: #fff8ef;
}

.project-cta p:not(.eyebrow) {
  color: #fffdf8;
}

.site-footer {
  background: #46525c;
}

.product-detail {
  padding: 40px 0 116px;
  background: #ffffff;
}

.product-detail__breadcrumb {
  display: flex;
  margin-bottom: 28px;
  color: #75808a;
  font-size: 13px;
  align-items: center;
  gap: 9px;
}

.product-detail__breadcrumb a {
  color: var(--teal);
  font-weight: 700;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
}

.product-detail__media {
  overflow: hidden;
  border: 1px solid #e2e6e8;
  border-radius: var(--radius);
  background: #f9fafb;
}

.announcement {
  color: #47545e;
  background: #f3f5f6;
  border-bottom: 1px solid #e3cfac;
}

.product-detail__media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail__summary {
  padding-top: clamp(8px, 3vw, 42px);
}

.product-detail__summary h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 70px);
}

.product-detail__availability {
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.product-detail__description {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 17px;
}

.product-detail__description p:last-child {
  margin-bottom: 0;
}

.product-specs {
  margin: 36px 0 30px;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 132px 1fr;
  gap: 18px;
}

.product-specs dt {
  color: #75767d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.product-detail__actions {
  margin-top: 4px;
}

.product-detail__note {
  margin-top: 22px;
  color: #7b7c82;
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-oem::after {
    background: rgba(255, 255, 255, 0.52);
  }

  .hero-oem__copy {
    color: var(--ink);
  }

  .hero-oem__lead {
    color: var(--ink-soft);
  }

  .hero-oem .eyebrow {
    color: var(--teal);
  }

  .hero-oem .button--dark {
    color: var(--white);
    background: var(--teal);
    border-color: var(--teal);
  }

  .hero-oem .button--ghost {
    color: var(--ink);
    border-color: rgba(24, 63, 74, 0.35);
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child {
    border-left-color: #e6ddcf;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-detail__summary {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .hero-oem {
    min-height: 650px;
  }

  .hero-oem::after {
    background: rgba(255, 255, 255, 0.64);
  }

  .collection-preview__heading {
    margin-bottom: 38px;
  }

  .product-detail {
    padding: 28px 0 72px;
  }

  .product-detail__breadcrumb {
    margin-bottom: 22px;
  }

  .product-detail__summary h1 {
    font-size: 44px;
  }

  .product-detail__description {
    font-size: 16px;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-detail__actions {
    width: 100%;
  }

  .product-detail__actions .button {
    width: 100%;
  }
}

/* Keep the service and capability bands airy, so the jewelry remains the visual focus. */
.section--dark {
  color: var(--ink);
  background: #fbf7f4;
}

.section-heading--light > p {
  color: var(--ink-soft);
}

.section-heading--light .eyebrow,
.section--dark .eyebrow {
  color: var(--teal);
}

.service-list {
  border-top-color: #e5d9d1;
}

.service-list article {
  border-left-color: #e5d9d1;
}

.service-list article > span {
  color: var(--teal);
}

.service-list h3 {
  color: var(--ink);
}

.service-list p {
  color: var(--ink-soft);
}

.capability-rows article,
.capability-rows article:last-child {
  border-color: #e5d9d1;
}

.capability-rows article > span {
  color: var(--teal);
}

.capability-rows p,
.capability-rows li {
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .service-list article,
  .service-list article:first-child,
  .service-list article:nth-child(3) {
    border-top-color: #e5d9d1;
  }
}

/* Light pearl-and-champagne treatment for the jewelry brand. */
.announcement {
  color: #6c5a52;
  background: #fcf6f2;
  border-bottom-color: #ead9cd;
}

.site-header {
  border-bottom-color: rgba(75, 66, 65, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.hero-oem {
  background: #fdfaf8;
}

.hero-oem__lead {
  color: var(--ink-soft);
}

.proof-strip {
  color: var(--ink);
  background: #fcf7f4;
  border-bottom-color: #eadfd6;
}

.proof-strip__grid > div,
.proof-strip__grid > div:first-child {
  border-left-color: #eadfd6;
}

.proof-strip strong {
  color: var(--teal);
}

.project-cta {
  color: var(--ink);
  background: #f3e4db;
}

.project-cta .eyebrow {
  color: var(--teal);
}

.project-cta p:not(.eyebrow) {
  color: var(--ink-soft);
}

.project-cta .button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.page-hero,
.page-hero--collection,
.page-hero--about,
.page-hero--dark {
  color: var(--ink);
  background: #fbf7f4;
}

.page-hero--about p:not(.eyebrow),
.page-hero--dark p:not(.eyebrow) {
  color: var(--ink-soft);
}

.stock-feature,
.product-detail__media,
.product-card__media {
  background: #fcf9f7;
}

.product-detail__media,
.product-card__media {
  border-color: #eadfd8;
}

.product-card__footer .icon-button {
  color: var(--white);
  background: var(--teal);
}

.product-card__footer .icon-button:hover {
  color: var(--white);
  background: #a97a5d;
}

.site-footer {
  color: var(--ink);
  background: #faf3ef;
  border-top: 1px solid #eadfd8;
}

.brand--footer,
.footer-contact .text-link {
  color: var(--ink);
}

.footer-brand > p,
.footer-contact p {
  color: var(--ink-soft);
}

.footer-column h2 {
  color: var(--teal);
}

.footer-column a {
  color: var(--ink-soft);
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top-color: #e6dcd5;
  color: #8a7c77;
}

.button--ghost-light {
  color: var(--ink);
  border-color: #d6baaa;
}

.button--ghost-light:hover {
  color: var(--ink);
  border-color: var(--teal);
}

@media (max-width: 1100px) {
  .footer-contact {
    border-top-color: #e6dcd5;
  }
}

@media (max-width: 900px) {
  .hero-oem .button--dark {
    color: var(--ink);
    background: #e8d7c8;
    border-color: #e8d7c8;
  }

  .hero-oem .button--ghost {
    color: var(--ink);
    border-color: #d6baaa;
  }
}
