:root {
  --ink: #161637;
  --ink-soft: #25264d;
  --gold: #c99335;
  --gold-dark: #a87420;
  --paper: #f6f1e8;
  --cream: #fffaf2;
  --line: #dfd2bd;
  --white: #ffffff;
  --page-width: min(calc(100% - 80px), 1320px);
  --content-pad: clamp(36px, 4vw, 68px);
  --tile-pad: clamp(24px, 2.6vw, 42px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, #10112c 0, #17183b 50%, #10112c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 32px);
  min-height: 86px;
  padding: 0 calc(var(--content-pad) + 56px) 0 var(--content-pad);
  background: var(--ink);
  color: var(--white);
}

.site-header,
main,
.site-footer {
  width: var(--page-width);
  margin-inline: auto;
  box-shadow: 0 0 34px rgba(0, 0, 0, .22);
}

.brand {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin-bottom: -52px;
  border-radius: 50%;
  background: var(--ink);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a.is-active {
  color: var(--gold);
}

.mobile-account-links {
  display: none;
}

.nav-toggle {
  display: none;
}

.account-menu {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.account-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.account-button:hover,
.account-button:focus-visible {
  border-color: var(--gold);
  outline: 0;
}

.account-icon {
  position: relative;
  width: 21px;
  height: 24px;
}

.account-icon::before,
.account-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--white);
}

.account-icon::before {
  top: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.account-icon::after {
  bottom: 1px;
  width: 18px;
  height: 10px;
  border-radius: 10px 10px 4px 4px;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
}

.account-dropdown a,
.account-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown a:focus-visible,
.account-dropdown button:hover,
.account-dropdown button:focus-visible {
  background: var(--paper);
  color: var(--gold-dark);
  outline: 0;
}

.nav-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #d3a044, var(--gold-dark));
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

#cc-main .cm__footer {
  align-items: center;
  gap: 10px;
}

#cc-main .cm__footer a.cc-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#cc-main .cm__footer a.cc-order-link:hover,
#cc-main .cm__footer a.cc-order-link:focus-visible {
  background: var(--gold-dark);
  outline: 0;
}

.impact-bar {
  padding: 14px 24px;
  background: var(--paper);
  color: var(--gold-dark);
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  min-height: 548px;
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(22, 22, 55, .9) 26%, rgba(22, 22, 55, .36) 47%, rgba(22, 22, 55, 0) 74%),
    linear-gradient(0deg, rgba(22, 22, 55, .08), rgba(22, 22, 55, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 5vw, 74px) var(--content-pad);
  color: var(--white);
  background: transparent;
}

h1,
h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
}

h1 {
  max-width: 420px;
  font-size: clamp(42px, 5vw, 60px);
}

h1 span,
.product-copy strong {
  color: var(--gold);
}

h2 {
  font-size: clamp(30px, 4vw, 43px);
}

.hero-copy p {
  max-width: 420px;
  margin: 0 0 16px;
}

.hero-copy .button {
  margin-top: 12px;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero-image img {
  object-position: center;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  padding: 72px var(--content-pad) 34px;
  background: var(--cream);
}

.intro-photo {
  height: 305px;
  border-radius: 6px;
}

.copy-block {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--content-pad) 48px;
  background: var(--cream);
}

.values article {
  min-height: 148px;
  padding: 14px clamp(18px, 2.2vw, 34px);
  border-left: 1px solid var(--line);
  text-align: center;
}

.values article:first-child {
  border-left: 0;
}

.values span {
  color: var(--gold-dark);
  font-size: 46px;
  line-height: 1;
}

.values h3 {
  margin: 12px 0 6px;
  font-size: 13px;
  text-transform: uppercase;
}

.values p {
  margin: 0;
  font-size: 14px;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  height: 318px;
  min-height: 318px;
  overflow: hidden;
}

.product-band > img {
  min-height: 0;
}

.product-copy {
  padding: 34px var(--tile-pad);
}

.product-copy {
  background: var(--ink);
  color: var(--white);
}

.product-copy h2 {
  font-size: clamp(28px, 3vw, 34px);
}

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

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.admin-form-link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.story-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.story {
  position: relative;
  min-height: 330px;
  padding: 42px var(--content-pad);
  overflow: hidden;
}

.story p {
  max-width: 360px;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(360px, 1.05fr);
  min-height: 560px;
  background: var(--cream);
}

.story-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 88px) var(--content-pad);
}

.story-hero-copy h1 {
  max-width: 520px;
  color: var(--ink);
}

.story-hero-copy p {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: clamp(17px, 1.8vw, 20px);
}

.story-portrait {
  min-height: 420px;
}

.story-portrait img {
  object-position: center top;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(480px, 1.25fr);
  gap: clamp(36px, 5vw, 72px);
  padding: 72px var(--content-pad);
  background: var(--paper);
}

.founder-story h2 {
  max-width: 460px;
}

.story-columns {
  max-width: 680px;
}

.story-columns p {
  margin: 0 0 18px;
}

.mission-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  padding: 44px var(--content-pad);
  background: var(--ink);
  color: var(--white);
}

.mission-band article {
  min-width: 0;
  padding-left: clamp(18px, 2vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.mission-band article:first-child {
  padding-left: 0;
  border-left: 0;
}

.mission-band span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.mission-band h3 {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.mission-band p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.story-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 54px var(--content-pad);
  background: var(--cream);
}

.story-cta p {
  max-width: 640px;
  margin: 0;
}

.story-cta h2 {
  max-width: 720px;
}

.line-art {
  position: absolute;
  right: 10%;
  bottom: 20px;
  width: 220px;
  height: 160px;
  border: 1px solid var(--line);
  border-radius: 50% 50% 4px 4px;
  opacity: .65;
}

.line-art::before,
.line-art::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.line-art::before {
  left: 50%;
  bottom: 26px;
  width: 2px;
  height: 102px;
}

.line-art::after {
  left: 42px;
  bottom: 42px;
  width: 134px;
  height: 74px;
  border: 1px solid var(--line);
  background: transparent;
}

.order-form {
  padding: 42px var(--content-pad) 42px clamp(36px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 56px var(--content-pad);
  background: var(--cream);
}

.checkout-copy h1 {
  color: var(--ink);
}

.checkout-copy p {
  max-width: 460px;
}

.checkout-form {
  padding: 0;
  border-left: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.order-form-fields,
.order-form-products {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cfc7ba;
  border-radius: 3px;
  padding: 10px 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid #cfc7ba;
  border-radius: 3px;
  padding: 12px;
  background: #fffdf8;
}

legend {
  padding: 0 6px;
  font-size: 13px;
  font-weight: 800;
}

.product-quantity-fieldset {
  display: grid;
  gap: 10px;
}

.product-quantity-fieldset label {
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 6px 14px;
}

.product-quantity-fieldset label span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.product-quantity-fieldset input {
  grid-column: 2;
  grid-row: 1 / span 2;
  text-align: center;
}

.product-quantity-fieldset label.is-unavailable {
  color: #80766a;
}

.product-quantity-fieldset label.is-unavailable span {
  color: #8a3128;
}

.product-quantity-fieldset label.is-unavailable em {
  grid-column: 1 / -1;
  margin-top: -4px;
  color: #8a3128;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.product-quantity-fieldset input:disabled {
  cursor: not-allowed;
  background: #eee8dc;
  color: #80766a;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}

.radio-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.radio-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}

.checkbox-label a,
.legal-page a,
.footer-links a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wide {
  grid-column: 2;
}

.address-lookup {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.address-lookup p,
.order-summary p {
  margin: 0;
  font-size: 13px;
}

.order-summary {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px;
  background: var(--paper);
}

.order-summary dl {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
}

.order-summary dl div,
.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.summary-lines span {
  font-size: 13px;
  font-weight: 800;
}

.summary-lines strong {
  font-size: 13px;
}

.order-summary dt,
.order-summary dd {
  margin: 0;
}

.order-summary dt {
  font-size: 13px;
  font-weight: 800;
}

.order-summary dd {
  font-weight: 800;
}

.order-summary dl div:last-child {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.form-footer {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
}

.form-footer p,
.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 800;
}

.form-status.success {
  color: #2c6a3f;
}

.form-status.error {
  color: #a33a2c;
}

.payment-return-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 30px var(--content-pad);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
}

.footer-brand img {
  object-fit: contain;
}

.thanks {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: .9;
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.site-footer strong {
  color: var(--gold);
  text-transform: uppercase;
}

.socials a {
  color: var(--gold);
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  margin: 12px 0 0;
  font-size: 13px;
}

.site-footer .footer-links a {
  color: var(--gold);
}

.thanks {
  text-transform: none;
  font-style: italic;
  text-align: right;
}

.legal-page {
  padding: clamp(52px, 6vw, 84px) var(--content-pad);
  background: var(--cream);
}

.legal-page h1 {
  max-width: 760px;
  color: var(--ink);
}

.legal-intro {
  max-width: 760px;
  margin: 0 0 36px;
  font-size: clamp(17px, 1.8vw, 20px);
}

.legal-page article {
  max-width: 860px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.5vw, 31px);
}

.legal-page p {
  margin: 0;
}

.quality-hero {
  display: grid;
  grid-template-columns: minmax(380px, .95fr) minmax(360px, 1.05fr);
  min-height: 420px;
  background: var(--cream);
}

.quality-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 84px) var(--content-pad);
}

.quality-hero h1 {
  max-width: 660px;
  color: var(--ink);
}

.quality-hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
}

.quality-hero img {
  min-height: 360px;
}

.quality-page {
  display: grid;
  gap: 34px;
  padding: clamp(48px, 6vw, 78px) var(--content-pad);
  background: var(--paper);
}

.products-hero {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(380px, 1.08fr);
  min-height: 0;
  background: var(--cream);
}

.products-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 52px) var(--content-pad);
}

.products-hero h1 {
  max-width: 650px;
  color: var(--ink);
}

.products-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(17px, 1.8vw, 20px);
}

.products-hero img {
  width: 100%;
  height: clamp(460px, 46vw, 580px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.product-catalog {
  padding: clamp(50px, 6vw, 78px) var(--content-pad);
  background: var(--paper);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.catalog-heading h2 {
  margin-bottom: 0;
}

.catalog-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
}

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

.product-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
}

.product-card-image {
  min-height: 0;
  padding: 18px;
  background: var(--paper);
}

.product-card-image img {
  object-fit: contain;
  object-position: center;
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 2.8vw, 34px);
}

.product-card-body span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card-body h3 {
  margin: 0;
  font-size: 23px;
}

.product-card-body p {
  margin: 0;
}

.product-card-body strong {
  margin-top: 6px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 5vw, 64px) var(--content-pad);
  background: var(--ink);
  color: var(--white);
}

.products-cta h2 {
  max-width: 720px;
  color: var(--white);
}

.products-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
}

.business-hero {
  position: relative;
  min-height: 560px;
  background: var(--ink);
  overflow: hidden;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 22, 55, .9) 0%, rgba(22, 22, 55, .78) 34%, rgba(22, 22, 55, .28) 62%, rgba(22, 22, 55, 0) 100%),
    linear-gradient(0deg, rgba(22, 22, 55, .08), rgba(22, 22, 55, 0));
  pointer-events: none;
}

.business-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: clamp(58px, 7vw, 92px) var(--content-pad);
  color: var(--white);
}

.business-hero h1 {
  max-width: 690px;
  color: var(--white);
}

.business-hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 16px;
  font-size: clamp(17px, 1.8vw, 20px);
}

.business-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  object-position: center;
}

.business-hero .button {
  margin-top: 14px;
}

.audience-tiles,
.business-uses,
.business-impact,
.business-proof,
.business-story {
  padding: clamp(48px, 6vw, 76px) var(--content-pad);
}

.audience-tiles {
  background: var(--paper);
}

.audience-tiles h2,
.business-uses h2,
.business-impact h2 {
  max-width: 760px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.audience-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.audience-card p {
  margin: 0 0 22px;
}

.business-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--cream);
}

.business-proof article {
  min-height: 150px;
  padding: 0 clamp(22px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.business-proof article:first-child {
  border-left: 0;
  padding-left: 0;
}

.business-proof span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.business-proof h3 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
}

.business-proof p {
  margin: 0;
  font-size: 15px;
}

.business-uses {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  background: var(--cream);
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  font-weight: 800;
}

.business-impact {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  background: var(--ink);
  color: var(--white);
}

.business-impact h2 {
  color: var(--white);
}

.business-impact .eyebrow,
.business-impact strong {
  color: var(--gold);
}

.business-benefits {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-benefits li {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.business-benefits strong {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.business-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.business-story {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  background: var(--cream);
}

.business-story p {
  max-width: 690px;
}

.business-story strong {
  color: var(--gold-dark);
}

.business-request {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(440px, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  padding: clamp(48px, 6vw, 76px) var(--content-pad);
  background: var(--paper);
}

.business-request-copy p {
  max-width: 520px;
}

.business-request .order-form {
  padding: 0;
  border: 0;
}

.business-request .wide {
  grid-column: 1 / -1;
}

.ingredients-panel,
.protocol-panel {
  max-width: 920px;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}

.ingredients-panel p,
.protocol-panel p {
  margin: 0 0 14px;
}

.ingredients-panel a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.protocol-panel section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.protocol-panel section:first-of-type {
  padding-top: 8px;
}

.protocol-panel h3 {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 18px;
}

.protocol-panel ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.protocol-panel li {
  margin: 4px 0;
}

.admin-header .brand {
  width: 112px;
  height: 112px;
  margin-bottom: -34px;
}

.admin-page {
  min-height: calc(100vh - 112px);
  background: var(--cream);
}

.admin-login {
  display: grid;
  place-items: start center;
  padding: clamp(54px, 7vw, 92px) var(--content-pad);
}

.admin-login-form,
.admin-profile-form {
  width: min(100%, 720px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.admin-login-form h1,
.admin-toolbar h1 {
  color: var(--ink);
}

.admin-profile-form {
  background: var(--paper);
}

.admin-dashboard {
  padding: clamp(42px, 5vw, 68px) var(--content-pad);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.orders-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.orders-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.orders-table th {
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.orders-table tbody tr:last-child td {
  border-bottom: 0;
}

.orders-table strong,
.orders-table span,
.orders-table a {
  display: block;
}

.orders-table span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.orders-table a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-select {
  min-width: 170px;
}

.empty-orders {
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 1040px) {
  :root {
    --page-width: min(calc(100% - 40px), 1320px);
    --content-pad: clamp(28px, 5vw, 52px);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px calc(5vw + 56px) 18px 5vw;
  }

  .brand {
    width: 112px;
    height: 112px;
    margin-bottom: 0;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-order {
    margin-left: auto;
  }

  .hero,
  .section-grid,
  .story-order,
  .checkout-page,
  .story-hero,
  .founder-story,
  .quality-hero,
  .products-hero,
  .catalog-heading,
  .business-hero,
  .business-uses,
  .business-impact,
  .business-proof,
  .business-story,
  .business-request {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(22, 22, 55, .88) 42%, rgba(22, 22, 55, .12) 100%),
      linear-gradient(0deg, rgba(22, 22, 55, .12), rgba(22, 22, 55, 0));
  }

  .hero-image {
    left: 0;
  }

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

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

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

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

  .mission-band {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 36px var(--content-pad);
  }

  .business-proof {
    gap: 0;
  }

  .business-proof article {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-proof article:first-child {
    border-top: 0;
  }

  .mission-band article {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .mission-band article:first-child {
    border-top: 0;
  }

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

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

  .order-form {
    padding: 42px var(--content-pad);
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .wide {
    grid-column: auto;
  }

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

  .admin-header .brand {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --page-width: 100%;
    --content-pad: 24px;
  }

  .site-header {
    position: static;
    align-items: center;
    gap: 14px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .account-menu {
    display: none;
  }

  .brand {
    width: 86px;
    height: 86px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 0;
    font-size: 12px;
    overflow: visible;
  }

  .site-header.is-nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .mobile-account-links {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .mobile-account-links a,
  .mobile-account-links button {
    display: block;
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
  }

  .mobile-account-links a:first-child,
  .mobile-account-links button:first-child {
    border-top: 0;
  }

  .nav-order,
  .button {
    width: 100%;
  }

  .site-header .nav-order {
    display: none;
    order: 4;
    margin-left: 0;
  }

  .site-header.is-nav-open .nav-order {
    display: inline-flex;
  }

  .hero-copy,
  .section-grid,
  .story,
  .story-hero-copy,
  .founder-story,
  .order-form,
  .admin-login,
  .admin-dashboard,
  .quality-hero > div,
  .quality-page,
  .products-hero-copy,
  .product-catalog,
  .products-cta,
  .business-hero-copy,
  .audience-tiles,
  .business-uses,
  .business-impact,
  .business-proof,
  .business-story,
  .business-request {
    padding-left: 24px;
    padding-right: 24px;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .admin-toolbar h1 {
    margin-bottom: 0;
  }

  .orders-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .orders-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 14px;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table,
  .orders-table tbody,
  .orders-table tr,
  .orders-table td {
    display: block;
    width: 100%;
  }

  .orders-table tr {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .orders-table td {
    display: grid;
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .orders-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .orders-table td::before {
    content: attr(data-label);
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .orders-table .order-id-cell {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .orders-table .order-id-cell::before {
    content: none;
  }

  .orders-table .order-id-cell strong {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .orders-table .order-customer-cell span {
    max-height: none;
    overflow-wrap: anywhere;
  }

  .orders-table .order-status-cell {
    grid-template-columns: 1fr;
  }

  .orders-table .order-status-cell::before {
    margin-bottom: -4px;
  }

  .status-select {
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    left: 0;
    min-height: 300px;
    opacity: .36;
  }

  .values,
  .product-band,
  .product-grid,
  .tile-grid,
  .business-list,
  .form-grid,
  .address-lookup,
  .form-footer,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-band {
    height: auto;
  }

  .product-band > img {
    height: 280px;
  }

  .business-hero {
    min-height: auto;
  }

  .business-hero img {
    position: absolute;
    min-height: 300px;
    opacity: .58;
  }

  .story-hero {
    min-height: auto;
  }

  .story-portrait {
    min-height: 340px;
  }

  .story-hero-copy p {
    font-size: 16px;
  }

  .values article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-copy {
    padding: 34px 24px;
  }

  .product-band img {
    min-height: 260px;
  }

  .products-hero {
    min-height: auto;
  }

  .products-hero img {
    height: 380px;
    min-height: 0;
    max-height: none;
  }

  .product-card {
    grid-template-rows: 320px 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .thanks {
    text-align: left;
  }
}
