@charset "UTF-8";
:root {
  --font1: "Inter Tight", sans-serif;
  --font2: "Fraunces", serif;
  --f1: 45px;
  --f2: 35px;
  --f3: 28px;
  --f4: 22px;
  --f5: 17px;
  --f6: 13px;
  --g1: 71px;
  --g2: 56px;
  --g3: 46px;
  --g4: 37px;
  --g5: 30px;
  --g6: 24px;
  --x1: 49px;
  --x2: 30px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --w-content: 720px;
  --w-total: 1180px;
  --gutter-full: 30px;
  --gutter-mobile: 30px;
  --bg1: #ffffff;
  --bg2: #f6f4ef;
  --c1: #16130f;
  --c2: #6a6258;
  --ca: #e23b2e;
  --phi: 1.618;
  --mount-mat: #e6e1d6;
  --rule: #ddd7cb;
  --how-text: #efe9df;
  --how-muted: #b9b1a4;
  --tile-a: #efece6;
  --tile-b: #eae6df;
  --tile-label: #b7afa2;
  --footer-text: #cfc8bb;
  --footer-head: #ffffff;
  --footer-muted: #8c8478;
  --footer-rule: #2c2820;
  --bar: calc((var(--w-total) - var(--w-content)) / 2);
}

/* ---------- 2. Reset ---------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

code {
  line-height: 1em;
}

pre {
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

sub, sup {
  line-height: 0.5em;
}

img {
  max-width: 100%;
  height: auto;
}

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

img, .left, .right, .center {
  display: block;
}

.center {
  float: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

/* ---------- 3. Body & structural foundations ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  overflow-x: hidden;
}

::selection {
  background: var(--ca);
  color: #fff;
}

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

.wrap, .container {
  max-width: var(--w-total);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 780px) {
  .wrap, .container {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.text {
  max-width: var(--w-content);
}

.muted {
  color: var(--c2);
}

.kicker {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ca);
  font-weight: 600;
  margin-bottom: var(--x5);
}

/* ---------- 4. Common content elements ---------- */
h1 {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 500;
}

h4 {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 600;
}

blockquote {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  background-color: var(--bg2);
  padding: var(--x3);
  border-left: var(--x5) solid var(--ca);
}
blockquote > :last-child {
  margin-bottom: 0;
}

sub, sup {
  color: var(--c2);
}

code, pre, kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--f6);
  line-height: var(--g6);
}

code {
  background-color: rgba(22, 19, 15, 0.07);
  padding: var(--x6);
  border-radius: var(--x5);
  margin: 0 1px;
}

pre {
  color: var(--c1);
  background-color: var(--bg2);
  padding: var(--x3);
  border-left: var(--x5) solid var(--ca);
}

svg {
  width: var(--f5);
  height: var(--f5);
  vertical-align: text-bottom;
}

hr {
  border: 0;
  border-bottom: 1px solid var(--rule);
  margin: var(--x2) 0;
}

.drop-cap {
  font-family: var(--font2);
  font-size: calc(2 * var(--x2));
  line-height: 1em;
  color: var(--ca);
  margin-right: var(--x5);
  float: left;
}

.small {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.callout {
  color: var(--c1);
  background-color: var(--bg2);
  padding: var(--x3);
  border-left: 3px solid var(--ca);
  border-radius: 0 var(--x4) var(--x4) 0;
}
.callout.alert {
  color: var(--c1);
  background-color: #fbe9e7;
  border-left-color: var(--ca);
}
.callout.note {
  color: var(--c1);
  background-color: var(--bg2);
  border-left-color: var(--c2);
}

.highlight {
  background-color: var(--bg2);
  padding: var(--x6) 0;
}

.impact {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-style: italic;
  color: var(--c1);
}

.pop {
  box-shadow: 0 0 var(--x4) rgba(22, 19, 15, 0.4);
}

.caption {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

@media all and (min-width: 780px) {
  h1 {
    font-size: var(--f1);
    line-height: var(--g1);
  }
  h2 {
    font-size: var(--f2);
    line-height: var(--g2);
  }
  h3 {
    font-size: var(--f3);
    line-height: var(--g3);
  }
  h4 {
    font-size: var(--f4);
    line-height: var(--g4);
  }
  .impact {
    font-size: var(--f3);
    line-height: var(--g3);
  }
}
/* ---------- 5. Dynamic page content (.page-content scoped) ---------- */
.page-container + .page-container {
  margin-top: var(--x1);
}

.page-content h1 {
  margin-bottom: var(--x2);
}
.page-content h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}
.page-content h3 {
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h4 {
  margin-bottom: var(--x4);
}
.page-content h1 + h2, .page-content h2 + h3, .page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content hr + h2 {
  margin-top: 0;
}
.page-content > :last-child {
  margin-bottom: 0;
}
.page-content ul {
  list-style-type: disc;
}
.page-content ul, .page-content ol {
  margin-left: var(--x3);
}
.page-content ul ul, .page-content ul ol, .page-content ol ul, .page-content ol ol {
  margin-top: var(--x5);
  margin-bottom: 0;
  margin-left: var(--x3);
}
.page-content li {
  margin-bottom: var(--x5);
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content .callout > :last-child {
  margin-bottom: 0;
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption {
  margin-bottom: var(--x2);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child {
  margin-bottom: 0;
}

.page-content {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--w-content);
}

.page-content:has(.page-template-header),
.page-content:has(.contact-layout),
.page-content:has(.dsr-layout) {
  max-width: var(--w-total);
}

.page-title {
  font-family: var(--font2);
}
.page-title a {
  color: var(--c1);
}
.page-title a:hover {
  color: var(--ca);
}

.byline {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  margin-bottom: var(--x2);
}

.page-container, .headline-area, .page-content {
  display: flow-root;
}

/* ---------- 6. Forms ---------- */
label {
  display: block;
  font-family: var(--font1);
  font-weight: 600;
  margin-bottom: var(--x5);
}
label .required {
  font-weight: normal;
  color: var(--ca);
}

input, textarea, select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: 1em;
  font-weight: inherit;
  padding: var(--x5) var(--x4);
  border: 1.5px solid var(--c1);
  background-color: var(--bg1);
  color: var(--c1);
  margin-bottom: var(--x3);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ca);
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
  width: auto;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  user-select: none;
}

textarea {
  line-height: inherit;
  resize: vertical;
}

button, input[type=submit], .button {
  display: inline-block;
  width: auto;
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.02em;
  vertical-align: top;
  color: #fff;
  text-decoration: none;
  background-color: var(--ca);
  padding: var(--x4) var(--x3);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
button:hover, button:active, input[type=submit]:hover, input[type=submit]:active, .button:hover, .button:active {
  text-decoration: none;
  background-color: var(--c1);
  color: #fff;
}

button.action, .button.action {
  color: var(--c1);
  background-color: transparent;
  border: 1.5px solid var(--c1);
}
button.action:hover, button.action:active, .button.action:hover, .button.action:active {
  background-color: var(--c1);
  color: #fff;
}
button.save, .button.save {
  color: #fff;
  background-color: var(--c1);
}
button.save:hover, button.save:active, .button.save:hover, .button.save:active {
  background-color: var(--ca);
  color: #fff;
}
button.delete, .button.delete {
  color: #fff;
  background-color: #8c2a22;
}
button.delete:hover, button.delete:active, .button.delete:hover, .button.delete:active {
  background-color: var(--c1);
  color: #fff;
}
button.update, .button.update {
  color: #fff;
  background-color: var(--c1);
}
button.update:hover, button.update:active, .button.update:hover, .button.update:active {
  background-color: var(--ca);
  color: #fff;
}
button svg, .button svg {
  vertical-align: inherit;
}

.ep-contact-submit {
  margin-top: var(--x4);
}

/* ---------- 7. Shared components: passe-partout mount + header + footer ---------- */
/* passe-partout mount — the signature motif */
.mount {
  position: relative;
  background: var(--bg1);
  border: 1px solid var(--mount-mat);
  padding: var(--x4);
  margin: 0;
}

.mount::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--c1);
  pointer-events: none;
}

.mount .tile {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, var(--tile-a) 0 14px, var(--tile-b) 14px 28px);
}

.mount .tile span {
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tile-label);
}

.mount img {
  display: block;
  width: 100%;
  height: auto;
}

/* header */
header.site {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 20;
}

header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.word {
  font-family: var(--font2);
  font-size: 1.7rem;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.word .dot {
  color: var(--ca);
}

nav.main {
  display: flex;
  gap: var(--x3);
  align-items: center;
  font-size: var(--f5);
  line-height: var(--g5);
}
nav.main a {
  padding: var(--x6) 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-bottom-color 0.25s ease;
}
nav.main a:hover {
  border-bottom-color: var(--ca);
}
nav.main .shop {
  font-weight: 600;
  border: 1.5px solid var(--c1);
  padding: var(--x5) var(--x4);
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}
nav.main .shop:hover {
  background: var(--c1);
  color: #fff;
}

/* footer — FULL-BLEED near-black, vermilion top-rule */
footer.site {
  background: var(--c1);
  color: var(--footer-text);
  border-top: 4px solid var(--ca);
}

footer.site .wrap {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.fbrand {
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--footer-head);
  font-weight: 600;
}
.fbrand .dot {
  color: var(--ca);
}

.fnav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x3);
  margin: var(--x3) 0 var(--x2);
  font-size: var(--f5);
  line-height: var(--g5);
}
.fnav a {
  color: var(--footer-text);
  transition: color 0.25s ease;
}
.fnav a:hover {
  color: var(--ca);
}

.flegal {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--footer-muted);
  border-top: 1px solid var(--footer-rule);
  padding-top: var(--x4);
}
.flegal a {
  color: var(--footer-text);
}
.flegal a:hover {
  color: var(--ca);
}

/* ---------- 8. Template sections ---------- */
/* page-main wrappers (the editorial-architecture shells) */
.page-main {
  display: flow-root;
}

/* HOME: hero */
.hero {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--x1);
  align-items: center;
}

.hero h1 {
  font-family: var(--font2);
  font-size: clamp(var(--f1), 5.2vw, var(--f1) * var(--phi));
  line-height: clamp(var(--g1), 5.46vw, var(--g1) * var(--phi));
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--ca);
}

.hero .lede {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  max-width: 30ch;
  margin: var(--x3) 0 var(--x2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x4);
  margin: 0;
}

.hero-visual {
  margin: 0;
}

.hero-cap {
  display: flex;
  justify-content: space-between;
  margin-top: var(--x5);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c2);
}
.hero-cap .tick {
  color: var(--ca);
}

/* HOME: manifesto strip */
.manifesto {
  background: var(--bg2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-top: var(--x2);
  padding-bottom: var(--x2);
}
.manifesto p {
  font-family: var(--font2);
  font-size: clamp(var(--f4), 2.5vw, var(--f2));
  line-height: clamp(var(--g4), 3.4vw, var(--g2));
  max-width: 40ch;
  margin: 0;
}
.manifesto p span {
  color: var(--ca);
}

/* HOME + reusable: section head */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--x2);
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--x4);
}
.sec-head h2 {
  font-size: var(--f2);
  line-height: var(--g2);
}
.sec-head .kicker {
  margin-bottom: var(--x6);
}

/* HOME + reusable: collection grid + card */
.coll {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
}

.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--x4);
}
.card .meta .t {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g5);
}
.card .meta .pr {
  font-weight: 600;
}
.card .sub {
  display: flex;
  justify-content: space-between;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  margin-top: var(--x6);
}
.card .sub .ed::before {
  content: "▌ ";
  color: var(--ca);
}

/* HOME: how it works dark band */
.how {
  background: var(--c1);
  color: var(--how-text);
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.how h2 {
  color: #fff;
  font-size: var(--f2);
  line-height: var(--g2);
  margin-bottom: var(--x2);
}
.how .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
}
.how .step .n {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
  color: var(--ca);
}
.how .step h3 {
  color: #fff;
  font-size: var(--f4);
  line-height: var(--g4);
  margin: var(--x5) 0;
}
.how .step p {
  color: var(--how-muted);
  font-size: var(--f5);
  line-height: var(--g5);
  margin: 0;
}

/* PAGE / ERROR: page-template-header */
.page-template-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--rule);
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.page-template-header .kicker {
  margin-bottom: var(--x5);
}
.page-template-header h1 {
  font-family: var(--font2);
  font-size: clamp(var(--f2), 4.4vw, var(--f1));
  line-height: clamp(var(--g2), 5vw, var(--g1));
  font-weight: 500;
  max-width: 18ch;
}
.page-template-header .lede {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  max-width: 46ch;
  margin-top: var(--x3);
}
.page-template-header .hero-actions {
  margin-top: var(--x3);
}

.page-body {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.page-body p, .page-body ul, .page-body ol, .page-body blockquote {
  margin-bottom: var(--x2);
}
.page-body p:last-child, .page-body ul:last-child, .page-body ol:last-child, .page-body blockquote:last-child {
  margin-bottom: 0;
}
.page-body h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x4);
}
.page-body > .wrap > :first-child,
.page-body .text > :first-child {
  margin-top: 0;
}

/* PAGE: contact + data-request layouts (two-column on wide, stack on narrow) */
.contact-layout, .dsr-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 780px) {
  .contact-layout, .dsr-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-intro h2, .dsr-intro h2 {
  margin-top: 0;
  margin-bottom: var(--x4);
}

/* ---------- 8b. E-commerce storefront (ep-ecommerce + ep-ecommerce-pod render these later) ---------- */
.ep-ecommerce-products, .ep-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
}

.ep-product-card .ep-product-image, .ep-product-card .ep-product-thumb, .ep-product .ep-product-image, .ep-product .ep-product-thumb {
  position: relative;
  background: var(--bg1);
  border: 1px solid var(--mount-mat);
  padding: var(--x4);
}
.ep-product-card .ep-product-image::after, .ep-product-card .ep-product-thumb::after, .ep-product .ep-product-image::after, .ep-product .ep-product-thumb::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--c1);
  pointer-events: none;
}
.ep-product-card .ep-product-image img, .ep-product-card .ep-product-thumb img, .ep-product .ep-product-image img, .ep-product .ep-product-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.ep-product-card .ep-product-title, .ep-product .ep-product-title {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-top: var(--x4);
}
.ep-product-card .ep-product-meta, .ep-product .ep-product-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  margin-top: var(--x6);
}
.ep-product-card .ep-product-price, .ep-product .ep-product-price {
  font-weight: 600;
  color: var(--c1);
  transition: color 0.25s ease;
}
.ep-product-card:hover .ep-product-price, .ep-product:hover .ep-product-price {
  color: var(--ca);
}

.ep-product-single .ep-product-gallery {
  position: relative;
  background: var(--bg1);
  border: 1px solid var(--mount-mat);
  padding: var(--x4);
}
.ep-product-single .ep-product-gallery::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--c1);
  pointer-events: none;
}
.ep-product-single .ep-product-title {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
}

/* ---------- 9. Responsive reflow (source breakpoints) ---------- */
@media all and (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--x2);
  }
  .grid, .ep-ecommerce-products, .ep-products {
    grid-template-columns: 1fr 1fr;
  }
  .how .steps {
    grid-template-columns: 1fr;
    gap: var(--x3);
  }
  nav.main {
    display: none;
  }
}
@media all and (max-width: 430px) {
  .grid, .ep-ecommerce-products, .ep-products {
    grid-template-columns: 1fr;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--x5);
  }
}