:root {
  --ink: #101014;
  --paper: #fbfaf7;
  --muted: #696a70;
  --line: #e5e0d8;
  --teal: #0b9a9a;
  --cyan: #00a6c7;
  --magenta: #e6467a;
  --orange: #f68a35;
  --cream: #f4efe7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 16, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 30;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(16, 16, 20, 0.08);
  backdrop-filter: blur(18px);
}
.top-strip {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}
.nav-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}
.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #34343a;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a { padding: 8px 0; }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 800;
}
.nav-cta { background: var(--ink); color: var(--white); padding-inline: 18px; }
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 112px);
  align-items: center;
  gap: 44px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 74px;
}
.hero-copy { max-width: 690px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { font-size: 22px; line-height: 1.12; }
.lede {
  max-width: 630px;
  color: #3a3a40;
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}
.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-color: transparent;
}
.button-ghost { background: transparent; }
.button-dark { color: var(--white); background: var(--ink); }
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #48484f;
  font-size: 13px;
  font-weight: 800;
}
.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
}
.hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(230, 70, 122, 0.16), transparent 38%, rgba(246, 138, 53, 0.18));
  mix-blend-mode: multiply;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-band,
.product-section,
.process-section,
.content-section,
.quote-section {
  padding: 80px max(20px, calc((100vw - 1180px) / 2));
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.section-head-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.category-band {
  background: var(--ink);
  color: var(--white);
}
.category-band .eyebrow { color: var(--orange); }
.category-band .section-head p { color: rgba(255,255,255,0.72); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.category-card {
  min-height: 220px;
  padding: 26px;
  background: #15151a;
}
.category-card span {
  color: var(--orange);
  font-weight: 800;
}
.category-card p { color: rgba(255,255,255,0.68); }

.product-section { background: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  min-height: 290px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 16, 20, 0.1);
}
.product-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--teal));
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.product-tag {
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card p:not(.product-tag) { color: var(--muted); }
.product-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  font-size: 13px;
  font-weight: 800;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(11,154,154,0.12), rgba(230,70,122,0.12)),
    var(--cream);
}
.process-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.process-list div {
  min-height: 190px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16,16,20,0.08);
}
.process-list span {
  color: var(--orange);
  font-weight: 800;
}
.process-list strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 20px;
}
.process-list p { color: var(--muted); }

.quote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: var(--white);
}
.quote-section div { max-width: 720px; }
.quote-section p:not(.eyebrow) { color: rgba(255,255,255,0.72); font-size: 18px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.page-hero {
  padding: 82px 0 58px;
  background: var(--cream);
}
.page-hero p { max-width: 680px; color: var(--muted); font-size: 18px; }
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.prose {
  max-width: 820px;
  color: #2f3036;
}
.site-footer {
  padding: 54px max(20px, calc((100vw - 1180px) / 2)) 24px;
  color: var(--white);
  background: #0b0b0e;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-mark {
  border-color: var(--white);
}
.footer-grid p { color: rgba(255,255,255,0.68); }
.footer-grid h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.74);
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.54);
  font-size: 13px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 22px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button {
  border: 0;
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1040px) {
  .hero,
  .process-panel {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; }
  .category-grid,
  .product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .top-strip { display: none; }
  .nav-shell { width: min(100% - 28px, 1180px); }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: transparent;
    padding: 10px 14px;
    font-weight: 800;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 8px; }
  .hero {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
    gap: 28px;
  }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .lede { font-size: 18px; }
  .category-band,
  .product-section,
  .process-section,
  .content-section,
  .quote-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .section-head-row,
  .quote-section,
  .split,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-grid,
  .product-grid,
  .process-list,
  .woocommerce ul.products,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-card { min-height: 260px; }
}
