:root {
  --ink: #2c2c2c;
  --charcoal: #3a3a3a;
  --muted: #6a6a6a;
  --line: #e6e6e6;
  --paper: #ffffff;
  --mist: #f6f6f5;
  --orange: #e85c04;
  --blue: #1e8ad8;
  --shadow: 0 18px 40px rgba(44, 44, 44, 0.08);
  --radius: 14px;
  --max: 1120px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.hero,
.section,
.stats,
.story,
.inquire,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.hero {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--ink);
  transform: rotate(45deg);
}

.accent-orange {
  color: var(--orange);
}

.accent-blue {
  color: var(--blue);
}

.lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--charcoal);
}

.btn-ghost {
  border-color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.stats {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats article {
  border-top: 3px solid var(--ink);
  padding-top: 1rem;
}

.stats article:nth-child(1) {
  border-top-color: var(--orange);
}

.stats article:nth-child(3) {
  border-top-color: var(--blue);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-heading p:last-child {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-media {
  height: 210px;
  position: relative;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 0;
  height: 0;
  border-style: solid;
}

.tone-a {
  background:
    linear-gradient(135deg, rgba(232, 92, 4, 0.18), transparent 42%),
    linear-gradient(225deg, #2c2c2c 0%, #6d6d6d 100%);
}

.tone-a::after {
  border-width: 0 18px 18px 0;
  border-color: transparent var(--orange) transparent transparent;
}

.tone-b {
  background:
    linear-gradient(160deg, rgba(30, 138, 216, 0.22), transparent 50%),
    linear-gradient(40deg, #1b1b1b, #4a4a4a);
}

.tone-b::after {
  border-width: 18px 18px 0 0;
  border-color: var(--blue) transparent transparent transparent;
}

.tone-c {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, #323232 0 18px, #3f3f3f 18px 36px);
}

.tone-c::after {
  border-width: 0 0 18px 18px;
  border-color: transparent transparent var(--blue) transparent;
}

.tone-d {
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 92, 4, 0.35), transparent 32%),
    linear-gradient(180deg, #2f2f2f, #171717);
}

.tone-d::after {
  border-width: 18px 0 0 18px;
  border-color: var(--orange) transparent transparent transparent;
}

.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.product-body p:last-child {
  color: var(--muted);
  margin: 0;
}

.categories {
  background: var(--mist);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.categories .section-heading,
.categories .category-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.mark {
  display: block;
  width: 18px;
  height: 18px;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  margin-bottom: 1rem;
}

.mark-orange {
  background: var(--orange);
}

.mark-charcoal {
  background: var(--ink);
}

.mark-blue {
  background: var(--blue);
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.story-copy p {
  color: var(--charcoal);
}

.story-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.panel-kicker {
  color: #cfcfcf;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.panel-quote {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.2;
}

.story-panel ul {
  padding-left: 1.1rem;
  margin: 0;
}

.story-panel li + li {
  margin-top: 0.45rem;
}

.inquire {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.inquire-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquire-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.inquire-form input,
.inquire-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
}

.inquire-form input:focus,
.inquire-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  background: var(--paper);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.3rem;
  color: var(--blue);
  margin: 0;
}

.form-note.error {
  color: var(--orange);
}

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  height: 64px;
}

.footer-brand p {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.footer-meta,
.footer-legal {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-legal {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.9rem;
  }

  .site-nav.open {
    display: flex;
  }

  .stats,
  .product-grid,
  .category-grid,
  .story,
  .inquire,
  .inquire-form {
    grid-template-columns: 1fr;
  }
}
