:root {
  --of-paper: #f4efe6;
  --of-taupe: #cbc4b9;
  --of-ink: #171615;
  --of-muted: #746d64;
  --of-bronze: #a1784d;
  --of-line: rgba(35, 31, 28, .16);
  --of-gutter: clamp(20px, 5vw, 72px);
  --of-section: clamp(76px, 9vw, 132px);
  --of-max: 1440px;
  --of-radius: 8px;
  --of-serif: Georgia, "Times New Roman", serif;
  --of-sans: Inter, Arial, sans-serif;
}

body.of-core-page {
  margin: 0;
  color: var(--of-ink);
  background: var(--of-paper);
  font-family: var(--of-sans);
}

.of-core-page *, .of-core-page *::before, .of-core-page *::after { box-sizing: border-box; }
.of-core-page a { color: inherit; text-decoration: none; }
.of-core-page img { display: block; max-width: 100%; }
.of-core-page button, .of-core-page input, .of-core-page textarea { font: inherit; }

.of-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 var(--of-gutter);
  border-bottom: 1px solid var(--of-line);
  background: var(--of-paper);
}

.of-brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.of-brand img { width: 29px; height: 40px; object-fit: contain; }
.of-brand span { display: grid; gap: 3px; }
.of-brand strong { font-size: 15px; letter-spacing: .16em; }
.of-brand small { color: var(--of-muted); font-size: 7px; letter-spacing: .12em; }
.of-nav { display: flex; gap: 30px; align-items: center; }
.of-nav a { padding: 30px 0 27px; border-bottom: 1px solid transparent; color: var(--of-muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.of-nav a:hover, .of-nav a[aria-current="page"] { color: var(--of-ink); border-color: var(--of-ink); }
.of-header > .of-button { justify-self: end; }

.of-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--of-ink);
  border-radius: 6px;
  color: #fff;
  background: var(--of-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.of-button.secondary { color: var(--of-ink); background: transparent; }
.of-button.light { color: var(--of-ink); border-color: #fff; background: #fff; }
.of-button:hover { transform: translateY(-1px); }

.of-main { min-height: 70vh; }
.of-eyebrow { margin: 0 0 16px; color: var(--of-bronze); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.of-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: var(--of-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.of-breadcrumb a:hover { color: var(--of-ink); }

.of-product { max-width: var(--of-max); margin: 0 auto; padding: 36px var(--of-gutter) var(--of-section); }
.of-product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(48px, 7vw, 112px); align-items: start; }
.of-product-image { position: sticky; top: 26px; aspect-ratio: 5 / 6; overflow: hidden; border-radius: var(--of-radius); background: var(--of-taupe); }
.of-product-image img { width: 100%; height: 100%; object-fit: cover; }
.of-product-copy { padding-top: clamp(18px, 3vw, 46px); }
.of-product-copy h1 { margin: 0; font-family: var(--of-serif); font-size: clamp(48px, 5.6vw, 82px); font-weight: 500; line-height: .98; }
.of-lede { margin: 24px 0 0; color: var(--of-muted); font-size: 15px; line-height: 1.75; }
.of-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 23px; }
.of-tags span { padding: 8px 10px; border: 1px solid var(--of-line); border-radius: 4px; color: var(--of-muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.of-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 46px; }
.of-specs { margin: 0; border-top: 1px solid var(--of-line); }
.of-specs > div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--of-line); }
.of-specs dt { color: var(--of-muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.of-specs dd { margin: 0; font-size: 13px; line-height: 1.55; }
.of-note { color: var(--of-muted); font-size: 10px; line-height: 1.65; }

.of-related { max-width: var(--of-max); margin: 0 auto; padding: var(--of-section) var(--of-gutter); border-top: 1px solid var(--of-line); }
.of-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.of-section-head h2, .of-intro h2, .of-about-story h2, .of-capabilities h2, .of-legal h2 { margin: 0; font-family: var(--of-serif); font-size: clamp(36px, 4vw, 60px); font-weight: 500; line-height: 1.03; }
.of-section-head > a { color: var(--of-muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.of-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.of-related-card { border-bottom: 1px solid var(--of-line); }
.of-related-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--of-radius); }
.of-related-card h3 { margin: 16px 0 6px; font-family: var(--of-serif); font-size: 25px; font-weight: 500; }
.of-related-card p { margin: 0 0 18px; color: var(--of-muted); font-size: 10px; }

.of-inquiry-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; padding: clamp(68px, 8vw, 110px) var(--of-gutter); background: var(--of-taupe); }
.of-inquiry-band > div { max-width: 820px; }
.of-inquiry-band h2 { margin: 0; font-family: var(--of-serif); font-size: clamp(38px, 4.5vw, 66px); font-weight: 500; line-height: 1.03; }
.of-inquiry-band p:not(.of-eyebrow) { max-width: 620px; color: var(--of-muted); line-height: 1.7; }

.of-page-hero { position: relative; min-height: 76vh; display: grid; align-items: end; overflow: hidden; color: #fff; }
.of-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.of-page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,14,13,.76), rgba(15,14,13,.18)); }
.of-page-hero > div { position: relative; z-index: 1; width: min(880px, 100%); padding: clamp(110px, 15vh, 180px) var(--of-gutter) clamp(64px, 9vh, 104px); }
.of-page-hero h1 { margin: 0; font-family: var(--of-serif); font-size: clamp(48px, 6vw, 84px); font-weight: 500; line-height: .98; }
.of-page-hero > div > p:not(.of-eyebrow) { max-width: 650px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.of-page-hero .of-eyebrow { color: rgba(255,255,255,.72); }

.of-intro, .of-about-story { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: clamp(48px, 9vw, 140px); align-items: end; max-width: var(--of-max); margin: 0 auto; padding: var(--of-section) var(--of-gutter); }
.of-intro > p, .of-about-story > div:last-child { color: var(--of-muted); font-size: 15px; line-height: 1.8; }
.of-about-story > div:last-child p { margin: 0 0 18px; }

.of-application-grid { max-width: var(--of-max); margin: 0 auto; padding: 0 var(--of-gutter) var(--of-section); }
.of-application-grid article { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(34px, 6vw, 90px); align-items: center; padding: clamp(42px, 6vw, 82px) 0; border-top: 1px solid var(--of-line); }
.of-application-grid article:nth-child(even) img { order: 2; }
.of-application-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--of-radius); }
.of-application-grid h2 { margin: 0; font-family: var(--of-serif); font-size: clamp(34px, 3.5vw, 54px); font-weight: 500; line-height: 1.04; }
.of-application-grid p:not(.of-eyebrow) { color: var(--of-muted); line-height: 1.75; }
.of-application-grid a { display: inline-block; margin-top: 18px; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.of-timeline { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--of-max); margin: 0 auto; padding: 0 var(--of-gutter) var(--of-section); }
.of-timeline article { padding: 30px; border: 1px solid var(--of-line); border-right: 0; }
.of-timeline article:last-child { border-right: 1px solid var(--of-line); }
.of-timeline strong { font-family: var(--of-serif); font-size: 46px; font-weight: 500; }
.of-timeline h3 { margin: 48px 0 10px; font-size: 15px; }
.of-timeline p { margin: 0; color: var(--of-muted); font-size: 12px; line-height: 1.7; }
.of-capabilities { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); gap: clamp(48px, 9vw, 140px); align-items: center; max-width: var(--of-max); margin: 0 auto; padding: var(--of-section) var(--of-gutter); border-top: 1px solid var(--of-line); }
.of-capabilities img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--of-radius); }
.of-capabilities ul { margin: 32px 0; padding: 0; list-style: none; border-top: 1px solid var(--of-line); }
.of-capabilities li { padding: 14px 0; border-bottom: 1px solid var(--of-line); color: var(--of-muted); }
.of-legal { padding: var(--of-section) var(--of-gutter); text-align: center; background: var(--of-taupe); }
.of-legal p:last-child { margin-bottom: 0; color: var(--of-muted); }

.of-contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(380px, 1.15fr); gap: clamp(48px, 9vw, 130px); max-width: var(--of-max); margin: 0 auto; padding: var(--of-section) var(--of-gutter); }
.of-contact-copy h1 { margin: 0; font-family: var(--of-serif); font-size: clamp(44px, 5vw, 76px); font-weight: 500; line-height: 1; }
.of-contact-copy > p:not(.of-eyebrow) { color: var(--of-muted); line-height: 1.8; }
.of-contact-copy dl { margin-top: 48px; border-top: 1px solid var(--of-line); }
.of-contact-copy dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--of-line); }
.of-contact-copy dt { color: var(--of-muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.of-contact-copy dd { margin: 0; font-size: 13px; line-height: 1.7; }
.of-contact-form-wrap { padding: clamp(24px, 4vw, 54px); border-radius: var(--of-radius); background: #fff; }
.of-contact-form { display: grid; gap: 24px; }
.of-contact-form label { display: grid; gap: 8px; color: var(--of-muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.of-contact-form input, .of-contact-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--of-line); border-radius: 0; outline: none; color: var(--of-ink); background: transparent; font-size: 14px; letter-spacing: 0; text-transform: none; }
.of-contact-form input:focus, .of-contact-form textarea:focus { border-color: var(--of-bronze); }
.of-contact-form p { margin: 0; color: var(--of-muted); font-size: 10px; line-height: 1.6; }
.of-contact-form .of-button { justify-self: start; }
.of-honeypot { position: absolute !important; left: -9999px !important; }
.of-form-status { margin-bottom: 26px; padding: 18px; border: 1px solid var(--of-line); }
.of-form-status h2 { margin: 0 0 6px; font-family: var(--of-serif); font-size: 28px; font-weight: 500; }
.of-form-status p { margin: 0; color: var(--of-muted); }
.of-form-status.success { background: var(--of-paper); }

.of-footer { display: flex; justify-content: space-between; gap: 30px; padding: 34px var(--of-gutter); border-top: 1px solid var(--of-line); background: var(--of-taupe); color: var(--of-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.of-footer > div { display: flex; gap: 26px; }
.of-footer strong { color: var(--of-ink); }

@media (max-width: 1000px) {
  .of-header { grid-template-columns: 1fr auto; }
  .of-nav { display: none; }
  .of-product-layout, .of-contact-layout { grid-template-columns: 1fr; }
  .of-product-image { position: relative; top: auto; }
  .of-application-grid article { grid-template-columns: 1fr; }
  .of-application-grid article:nth-child(even) img { order: initial; }
}

@media (max-width: 760px) {
  .of-header { min-height: 68px; gap: 12px; }
  .of-brand img { width: 25px; height: 34px; }
  .of-brand strong { font-size: 12px; }
  .of-brand small { font-size: 6px; }
  .of-header > .of-button { min-height: 38px; padding: 0 11px; font-size: 8px; }
  .of-page-hero { min-height: 70vh; }
  .of-page-hero h1 { font-size: 48px; }
  .of-intro, .of-about-story, .of-capabilities, .of-inquiry-band { grid-template-columns: 1fr; }
  .of-product { padding-top: 24px; }
  .of-product-copy h1 { font-size: 50px; }
  .of-specs > div { grid-template-columns: 108px 1fr; }
  .of-related-grid { grid-template-columns: 1fr; }
  .of-section-head { align-items: start; flex-direction: column; }
  .of-timeline { grid-template-columns: 1fr; }
  .of-timeline article, .of-timeline article:last-child { border-right: 1px solid var(--of-line); border-bottom: 0; }
  .of-timeline article:last-child { border-bottom: 1px solid var(--of-line); }
  .of-contact-layout { padding-top: 70px; }
  .of-contact-form-wrap { padding: 22px; }
  .of-footer, .of-footer > div { display: grid; }
}

