@font-face {
  font-family:Barlow;
  src:url('assets/fonts/body-regular.ttf') format('truetype');
  font-style:normal;
  font-weight:400;
  font-display:swap;
}
@font-face {
  font-family:Barlow;
  src:url('assets/fonts/body-semibold.ttf') format('truetype');
  font-style:normal;
  font-weight:600;
  font-display:swap;
}
@font-face {
  font-family:'Barlow Condensed';
  src:url('assets/fonts/display-semibold.ttf') format('truetype');
  font-style:normal;
  font-weight:600;
  font-display:swap;
}
:root {
  --ink:#151515;
  --paper:#fff;
  --soft:#f3f3ef;
  --orange:#ff7900;
  --muted:#575952;
  --line:#d8d9d3;
  --display:'Barlow Condensed',sans-serif;
  --body:Barlow,sans-serif;
  --page:1280px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:400 18px/1.55 var(--body);
  -webkit-font-smoothing:antialiased;
}
::selection {
  background:var(--orange);
  color:var(--ink);
}
a {
  color:inherit;
  text-underline-offset:5px;
}
a,summary {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,summary:focus-visible {
  outline:3px solid var(--orange);
  outline-offset:6px;
}
.program a:focus-visible,.button-orange:focus-visible {
  outline-color:var(--ink);
}
.wrap {
  width:calc(100% - 112px);
  max-width:var(--page);
  margin-inline:auto;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
figure,p,h1,h2,h3 {
  margin:0;
}
p+p {
  margin-top:20px;
}
h1,h2,h3 {
  font-weight:600;
}
h1,h2 {
  font-family:var(--display);
  text-wrap:balance;
  line-height:1.02;
}
h2 {
  font-size:clamp(40px,4.5vw,64px);
  letter-spacing:-.015em;
}
svg {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}
.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;
}
.skip-link {
  position:fixed;
  z-index:100;
  left:16px;
  top:-100px;
  padding:12px 18px;
  background:var(--orange);
  color:var(--ink);
}
.skip-link:focus {
  top:12px;
}
.site-header {
  background:var(--ink);
  color:white;
}
.header-inner {
  min-height:98px;
  display:flex;
  align-items:center;
  gap:40px;
}
.brand {
  display:flex;
  align-items:center;
  justify-content:center;
  width:99px;
  flex-shrink:0;
  padding:4px;
}
.brand img {
  width:100%;
  height:auto;
}
.site-header nav {
  display:flex;
  gap:32px;
  margin-left:auto;
}
.site-header nav a,.header-contact {
  display:flex;
  align-items:center;
  min-height:44px;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}
.site-header nav a {
  color:#d8d9d3;
}
.site-header nav a:hover {
  color:white;
  text-decoration:underline;
}
.header-contact {
  gap:22px;
  color:var(--orange);
  padding-left:32px;
  border-left:1px solid #494949;
}
.header-contact:hover {
  color:white;
}
.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  padding-block:56px 48px;
  align-items:center;
}
.hero h1 {
  font-size:clamp(64px,7.6vw,96px);
  text-transform:uppercase;
  line-height:.91;
  letter-spacing:-.025em;
}
.hero h1 span {
  color:#b84900;
}
.hero-description {
  max-width:450px;
  margin-block:30px 26px;
  font-size:20px;
  line-height:1.5;
  color:#44463f;
}
.hero-description strong {
  color:var(--ink);
  font-weight:600;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  min-height:56px;
  padding:14px 24px;
  text-decoration:none;
  font-weight:600;
  font-size:17px;
  border:1px solid transparent;
  transition:background .18s,color .18s;
}
.button-dark {
  background:var(--ink);
  color:white;
}
.button-dark:hover {
  background:#343630;
}
.button-orange {
  background:var(--orange);
  color:var(--ink);
}
.button-orange:hover {
  background:#ff9a3e;
}
.button svg,.text-link svg {
  transition:transform .18s;
}
.button:hover svg,.text-link:hover svg {
  transform:translateX(3px);
}
.hero-note {
  margin-top:12px;
  color:var(--muted);
  font-size:15px;
}
.hero-image {
  position:relative;
  align-self:stretch;
  min-height:560px;
  background:#143124;
  overflow:hidden;
}
.hero-image>img {
  width:100%;
  height:calc(100% - 44px);
  position:absolute;
  object-fit:cover;
  object-position:50% 100%;
}
.hero-image figcaption {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  gap:16px;
  background:var(--ink);
  color:white;
  font-size:13px;
  padding:12px 18px;
}
.hero-image figcaption span:last-child {
  color:#d8d9d3;
}
.proof {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  padding-block:0 48px;
}
.proof>div {
  display:flex;
  align-items:center;
  gap:20px;
  padding:24px 28px;
  border-left:1px solid var(--line);
}
.proof>div:first-child {
  padding-left:0;
  border-left:0;
}
.proof>div:last-child {
  padding-right:0;
}
.proof-name {
  font:600 32px/1.1 var(--display);
  white-space:nowrap;
}
.proof p {
  font-size:14px;
  line-height:1.5;
  color:var(--muted);
}
.proof strong {
  font-weight:400;
  color:var(--ink);
}
.program {
  background:var(--orange);
  padding-block:76px 48px;
}
.program-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 56px;
}
.program h2 {
  font-size:clamp(46px,5.2vw,72px);
}
.section-lead {
  font-size:24px;
  line-height:1.4;
}
.program-copy>p+p {
  color:#35200a;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:24px;
  min-height:44px;
  font-weight:600;
  text-decoration-thickness:1px;
}
.program-copy .text-link {
  margin-top:24px;
}
.benefits {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
  list-style:none;
  margin:6px 0 0;
  padding:28px 0 0;
  border-top:1px solid #ab4b00;
}
.benefits h3 {
  font-size:20px;
  margin-bottom:8px;
}
.benefits p {
  font-size:17px;
  max-width:300px;
  color:#35200a;
}
.range {
  padding-block:94px 80px;
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:60px;
  margin-bottom:40px;
}
.section-heading>p {
  max-width:345px;
  color:var(--muted);
}
.product-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
}
.product {
  min-width:0;
}
.product-photo {
  background:white;
  border-bottom:1px solid var(--line);
}
.product-photo img {
  width:100%;
  aspect-ratio:1;
  object-fit:contain;
}
.product-copy {
  padding-top:23px;
}
.product-use {
  margin-bottom: 10px;
  font-size:14px;
  font-weight:600;
  color:#965000;
}
.product h3 {
  font:600 31px/1.15 var(--display);
  margin-block:6px 10px;
}
.product-copy>p:not(.product-use) {
  font-size:17px;
  color:var(--muted);
}
dl {
  font-size:15px;
  margin:22px 0 16px;
}
dl>div {
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding-block:7px;
  border-bottom:1px solid #e6e6e1;
}
dt {
  color:var(--muted);
}
dd {
  margin:0;
  text-align:right;
}
.product-standard {
  font-weight:600;
  font-size:14px;
}
.range-note {
  color:var(--muted);
  font-size:14px;
  margin-top:32px;
}
.range>.text-link {
  margin-top:16px;
}
.story {
  background:var(--soft);
  padding-block:72px;
}
.story-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:88px;
  align-items:center;
}
.story-image {
  background:white;
}
.story-image img {
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
}
.story-copy h2 {
  margin-bottom:26px;
}
.story-copy>.section-lead {
  font-size:23px;
}
.story-copy>p:not(.section-lead) {
  color:var(--muted);
}
.story-sources {
  display:flex;
  flex-wrap:wrap;
  gap:8px 22px;
  margin-top:24px;
}
.story-sources a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:44px;
  font-size:14px;
  text-decoration:underline;
}
.story-sources svg {
  width:16px;
  height:16px;
}
.questions {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
  padding-block:82px;
}
.questions h2 {
  font-size:48px;
}
.question-list {
  border-top:1px solid var(--line);
}
details {
  border-bottom:1px solid var(--line);
}
summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  font-weight:600;
  cursor:pointer;
  list-style:none;
  min-height:76px;
  padding-block:18px;
}
summary::-webkit-details-marker {
  display:none;
}
summary svg {
  width:20px;
  height:20px;
}
details[open] summary svg {
  transform:rotate(45deg);
}
details>p {
  padding:0 36px 24px 0;
  color:var(--muted);
  font-size:17px;
}
.contact {
  background:var(--ink);
  color:white;
  padding-block:80px;
}
.contact-grid {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:96px;
}
.contact h2 {
  font-size:clamp(52px,6vw,80px);
}
.contact-grid>div>p {
  margin-top:24px;
  color:#cdcec6;
  font-size:20px;
}
.contact-person {
  padding-left:40px;
  border-left:1px solid #494b44;
}
.contact-person h3 {
  font:600 32px/1.15 var(--display);
}
.contact-person>p {
  font-size:17px!important;
  margin-top:8px!important;
}
.contact-person .button {
  margin-top:26px;
  min-width:250px;
}
.contact-address {
  display:block;
  width:fit-content;
  min-height:44px;
  padding-block:12px;
  font-size:16px;
  color:#eeeee8;
}
.contact-person .contact-note {
  font-size:14px!important;
  color:#b8b9b2;
  margin-top:16px!important;
}
.site-footer {
  background:var(--ink);
  color:#c8c9c2;
}
.footer-inner {
  border-top:1px solid #494b44;
  display:flex;
  align-items:center;
  gap:28px;
  min-height:120px;
}
.footer-inner .brand {
  width:76px;
}
.footer-inner p {
  font-size:15px;
}
.footer-inner>a:last-child {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  min-height:44px;
}
.footer-inner svg {
  width:18px;
  height:18px;
}
@media(min-width:1500px) {
  .hero {
    gap:88px;
  }
  .hero-image {
    min-height:610px;
  }
  .hero-description {
    max-width:480px;
  }
}
@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .hero {
    gap:32px;
  }
  .hero-image {
    min-height:530px;
  }
  .hero h1 {
    font-size:80px;
  }
  .proof>div {
    display:block;
    padding-inline:20px;
  }
  .proof p {
    margin-top:10px;
  }
  .program-grid {
    gap:32px;
  }
  .story-grid {
    gap:40px;
  }
  .section-heading {
    gap:32px;
  }
  .section-heading>p {
    max-width:290px;
  }
  .questions {
    gap:40px;
  }
  .contact-grid {
    gap:48px;
  }
  .product-grid {
    gap:24px;
  }
}
@media(max-width:760px) {
  .wrap {
    width:calc(100% - 40px);
  }
  body {
    font-size:17px;
  }
  .header-inner {
    min-height:80px;
    gap:20px;
  }
  .brand {
    width:78px;
  }
  .site-header nav {
    display:none;
  }
  .header-contact {
    margin-left:auto;
    padding-left:0;
    border-left:0;
    font-size:15px;
    gap:12px;
  }
  .hero {
    padding-block:36px 28px;
    grid-template-columns:1fr;
    gap:28px;
  }
  .hero h1 {
    font-size:clamp(62px,15vw,88px);
    line-height:.93;
  }
  .hero-description {
    font-size:18px;
    margin-block:22px;
    max-width:500px;
  }
  .hero-image {
    min-height:0;
    height:360px;
  }
  .hero-image>img {
    object-position:50% 100%;
    height:calc(100% - 40px);
  }
  .hero-image figcaption {
    font-size:12px;
    padding:10px 14px;
  }
  .proof {
    padding-block:0 32px;
    gap:0;
  }
  .proof>div {
    padding:16px 10px;
  }
  .proof-name {
    font-size:26px;
  }
  .proof p {
    font-size:12px;
    line-height:1.45;
  }
  .proof strong {
    display:inline;
  }
  .program {
    padding-block:48px 36px;
  }
  .program-grid {
    grid-template-columns:1fr;
    gap:24px;
  }
  .program h2 {
    font-size:52px;
  }
  .section-lead {
    font-size:22px;
  }
  .program-copy>.text-link {
    margin-top:16px;
  }
  .benefits {
    grid-template-columns:1fr;
    gap:22px;
    margin-top:6px;
    padding-top:24px;
  }
  .benefits li {
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:20px;
  }
  .benefits h3 {
    font-size:18px;
  }
  .benefits p {
    font-size:16px;
  }
  .range {
    padding-block:56px;
  }
  .section-heading {
    display:block;
    margin-bottom:16px;
  }
  .section-heading h2 {
    font-size:46px;
  }
  .section-heading>p {
    margin-top:20px;
    max-width:500px;
  }
  .product-grid {
    grid-template-columns:1fr;
    gap:38px;
  }
  .product-photo img {
    max-width:400px;
    margin-inline:auto;
  }
  .product-copy {
    padding-top:16px;
  }
  .product h3 {
    font-size:32px;
  }
  .range-note {
    font-size:13px;
  }
  .story {
    padding-block:40px;
  }
  .story-grid {
    grid-template-columns:1fr;
    gap:32px;
  }
  .story-image img {
    max-height:380px;
    object-fit:cover;
  }
  .story-copy h2 {
    font-size:46px;
  }
  .story-copy>.section-lead {
    font-size:21px;
  }
  .questions {
    grid-template-columns:1fr;
    gap:26px;
    padding-block:48px;
  }
  .questions h2 {
    font-size:42px;
  }
  .questions h2 br {
    display:none;
  }
  summary {
    font-size:17px;
    min-height:78px;
  }
  .contact {
    padding-block:52px;
  }
  .contact-grid {
    grid-template-columns:1fr;
    gap:34px;
  }
  .contact h2 {
    font-size:60px;
  }
  .contact-grid>div>p {
    font-size:18px;
  }
  .contact-person {
    padding:26px 0 0;
    border-left:0;
    border-top:1px solid #494b44;
  }
  .contact-person .button {
    width:100%;
  }
  .footer-inner {
    flex-wrap:wrap;
    gap:12px 20px;
    padding-block:20px;
  }
  .footer-inner p {
    flex:1;
    font-size:14px;
  }
  .footer-inner>a:last-child {
    margin-left:0;
    width:100%;
  }
  .footer-inner .brand {
    width:64px;
  }
  .desktop-break {
    display:none;
  }
}
@media(max-width:360px) {
  .wrap {
    width:calc(100% - 32px);
  }
  .hero h1 {
    font-size:59px;
  }
  .hero-image {
    height:310px;
  }
  .proof-name {
    font-size:23px;
  }
  .proof>div {
    padding-inline:7px;
  }
  .proof p {
    font-size:11px;
  }
  .benefits li {
    grid-template-columns:1fr;
    gap:4px;
  }
  .program h2 {
    font-size:46px;
  }
  .button {
    padding-inline:18px;
    gap:16px;
  }
  .header-contact {
    font-size:14px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}
@media print {
  .site-header nav,.header-contact,.skip-link,.button,.text-link,.questions,.site-footer {
    display:none;
  }
  .wrap {
    width:100%;
  }
  .hero {
    padding-top:0;
  }
  .hero-image {
    min-height:320px;
  }
  .hero h1 {
    font-size:64px;
  }
  .program,.contact {
    background:white;
    color:black;
  }
  .contact p,.contact a {
    color:black!important;
  }
  .range,.story,.program,.contact {
    padding-block:25px;
  }
  .product-grid {
    grid-template-columns:repeat(3,1fr);
  }
  .product {
    break-inside:avoid;
  }
  .hero-note {
    color:black;
  }
}
