:root {
  --paper: #f3f1eb;
  --paper-2: #ebe8df;
  --surface: #faf9f6;
  --ink: #171a17;
  --ink-soft: #292d29;
  --muted: #777b74;
  --line: rgba(24,28,24,.12);
  --green: #244438;
  --green-2: #315c4b;
  --lime: #c5d0a5;
  --dark: #14231d;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,241,235,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -.015em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  box-shadow: 0 5px 16px rgba(10,20,15,.14);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #6f746e;
  font-size: 13px;
}

nav a {
  transition: color .2s ease;
}

nav a:hover,
nav a.current {
  color: var(--ink);
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  margin: 18px 18px 0;
  padding: 105px 0 95px;
  color: #f5f3ec;
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(113,153,128,.25),
      transparent 29%
    ),
    radial-gradient(
      circle at 76% 85%,
      rgba(187,198,150,.13),
      transparent 30%
    ),
    linear-gradient(135deg,#12251d,#1a3329 58%,#13261f);
  border-radius: 28px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  right: -140px;
  top: -190px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr .65fr;
  gap: 110px;
  align-items: end;
}

.eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 25px 0 30px;
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: clamp(57px,6vw,88px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(245,243,236,.67);
  font-size: 18px;
  line-height: 1.7;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.hero-stat {
  min-height: 79px;
  display: flex;
  padding: 18px 21px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat strong {
  color: white;
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -.04em;
}

.hero-stat span {
  max-width: 110px;
  text-align: right;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.35;
}


/* CATALOG */

.catalog-section {
  padding: 105px 0 120px;
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
}

.catalog-top h2,
.info-grid h2 {
  margin: 0 0 10px;
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.045em;
}

.catalog-top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.search {
  width: 350px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  transition:
    background .2s ease,
    border .2s ease,
    box-shadow .2s ease;
}

.search:focus-within {
  border-color: rgba(36,68,56,.35);
  background: white;
  box-shadow: 0 8px 30px rgba(25,36,27,.06);
}

.search span {
  color: #747971;
  font-size: 21px;
}

.search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.search input::placeholder {
  color: #969a94;
}


/* FILTERS */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  color: #777c75;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}

.filter:hover {
  background: rgba(255,255,255,.55);
  color: var(--ink);
}

.filter.active {
  color: white;
  background: var(--dark);
  border-color: var(--dark);
}

.result-line {
  margin: 33px 0 16px;
  color: #858981;
  font-size: 12px;
}


/* CARDS */

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

.card {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--surface);
  box-shadow:
    0 1px 1px rgba(20,30,24,.05),
    0 7px 25px rgba(20,30,24,.04);
  transition:
    transform .28s cubic-bezier(.2,.75,.25,1),
    box-shadow .28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 2px rgba(20,30,24,.04),
    0 20px 55px rgba(20,30,24,.11);
}

.card[hidden] {
  display: none;
}

.product-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  border: 0;
  display: block;
}

.product-visual span {
  display: none;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
}


/* Product-like editorial illustrations */

.visual-lamp {
  background:
    radial-gradient(circle at 45% 30%,#fbf1d6 0 13%,transparent 14%),
    linear-gradient(145deg,#d7cbbb,#eee9df);
}
.visual-lamp::before {
  width: 112px;
  height: 80px;
  left: 50%;
  top: 27%;
  transform: translateX(-50%);
  background: #f6f0e4;
  clip-path: polygon(19% 0,81% 0,100% 100%,0 100%);
  box-shadow: 0 18px 28px rgba(75,60,44,.12);
}
.visual-lamp::after {
  width: 9px;
  height: 105px;
  left: calc(50% - 4px);
  top: 51%;
  background: #494b45;
  box-shadow:
    -34px 92px 0 22px #494b45,
    34px 92px 0 22px #494b45;
  clip-path: polygon(34% 0,66% 0,66% 83%,100% 100%,0 100%,34% 83%);
}

.visual-stand {
  background: linear-gradient(145deg,#cfd9d3,#edf0ec);
}
.visual-stand::before {
  width: 67%;
  height: 39%;
  left: 16%;
  top: 21%;
  border-radius: 8px;
  background:
    linear-gradient(145deg,#282d2d,#535b5a);
  transform: perspective(500px) rotateX(-7deg) rotateZ(-3deg);
  box-shadow: 0 25px 30px rgba(34,43,39,.23);
}
.visual-stand::after {
  width: 46%;
  height: 18%;
  left: 27%;
  top: 62%;
  border: 8px solid #777e7a;
  border-top: 0;
  transform: skewX(-13deg);
}

.visual-pouch {
  background: linear-gradient(145deg,#d9d0c1,#f1ece2);
}
.visual-pouch::before {
  width: 66%;
  height: 46%;
  left: 17%;
  top: 29%;
  border-radius: 20px 20px 13px 13px;
  background:
    linear-gradient(130deg,#494740,#706d62);
  box-shadow: 0 25px 35px rgba(49,45,37,.17);
}
.visual-pouch::after {
  width: 56%;
  height: 1px;
  left: 22%;
  top: 42%;
  background: rgba(255,255,255,.38);
  box-shadow: 0 -8px 0 rgba(0,0,0,.15);
}

.visual-charger {
  background: linear-gradient(145deg,#d9dde0,#f0f2f2);
}
.visual-charger::before {
  width: 39%;
  height: 48%;
  left: 31%;
  top: 26%;
  border-radius: 20px;
  background: linear-gradient(145deg,#fff,#d9dddf);
  box-shadow:
    0 28px 42px rgba(48,55,60,.17),
    inset -5px -6px 12px rgba(130,140,145,.12);
}
.visual-charger::after {
  width: 23px;
  height: 8px;
  left: calc(50% - 11px);
  top: 50%;
  border-radius: 5px;
  background: #82888a;
}

.visual-jars,
.visual-bottle,
.visual-blanket,
.visual-umbrella {
  background:
    radial-gradient(circle at 74% 22%,rgba(255,255,255,.55),transparent 28%),
    linear-gradient(145deg,#d8d0d4,#eee8e9);
}

.visual-jars::before,
.visual-bottle::before {
  width: 34%;
  height: 55%;
  left: 33%;
  top: 23%;
  border-radius: 15px 15px 22px 22px;
  border: 3px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.24);
  box-shadow: 0 22px 35px rgba(65,50,55,.12);
}

.visual-blanket::before,
.visual-umbrella::before {
  width: 60%;
  height: 43%;
  left: 20%;
  top: 30%;
  border-radius: 23px;
  background:
    repeating-linear-gradient(
      90deg,
      #c3b7bc 0 8px,
      #d7cdd1 8px 16px
    );
  box-shadow: 0 22px 35px rgba(65,50,55,.12);
}

.visual-tray,
.visual-holder,
.visual-drive,
.visual-planner {
  background: linear-gradient(145deg,#d5dfd8,#eef1ed);
}

.visual-tray::before,
.visual-planner::before,
.visual-drive::before {
  width: 58%;
  height: 46%;
  left: 21%;
  top: 28%;
  border-radius: 10px;
  background: #52675c;
  box-shadow:
    0 23px 30px rgba(32,50,40,.18),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.visual-holder::before {
  width: 36%;
  height: 51%;
  left: 32%;
  top: 31%;
  border-radius: 8px 8px 19px 19px;
  background: #52675c;
  box-shadow: 0 23px 30px rgba(32,50,40,.18);
}

.visual-cubes,
.visual-mouse,
.visual-cable {
  background: linear-gradient(145deg,#d9dee1,#f0f2f3);
}

.visual-cubes::before {
  width: 59%;
  height: 49%;
  left: 20%;
  top: 27%;
  border-radius: 14px;
  background:
    linear-gradient(135deg,#697276,#42494c);
  box-shadow: 0 25px 40px rgba(45,55,60,.2);
}

.visual-mouse::before {
  width: 38%;
  height: 53%;
  left: 31%;
  top: 25%;
  border-radius: 50% 50% 43% 43%;
  background: linear-gradient(160deg,#656c6f,#33383a);
  box-shadow: 0 24px 38px rgba(45,55,60,.22);
}

.visual-cable::before {
  width: 46%;
  height: 46%;
  left: 27%;
  top: 27%;
  border: 9px solid #555e62;
  border-radius: 50%;
}

.visual-board {
  background: linear-gradient(145deg,#d8c9b2,#eee4d3);
}
.visual-board::before {
  width: 61%;
  height: 47%;
  left: 19%;
  top: 28%;
  border-radius: 50% 50% 14px 14px;
  background:
    linear-gradient(110deg,#977358,#c39c78);
  box-shadow: 0 24px 38px rgba(80,59,40,.18);
}


/* Card copy */

.card-body {
  padding: 22px 22px 20px;
}

.category {
  color: var(--green-2);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.card h3 {
  margin: 11px 0 10px;
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.025em;
}

.card p {
  min-height: 66px;
  margin: 0;
  color: #757971;
  font-size: 13px;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #92958f;
  font-size: 10px;
}


/* ABOUT */

.info-section {
  padding: 105px 0;
  color: white;
  background: var(--dark);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.info-grid .eyebrow {
  color: var(--lime);
}

.info-grid h2 {
  max-width: 490px;
  color: #f6f4ed;
  font-size: 49px;
}

.info-grid p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.61);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}


/* FOOTER */

footer {
  padding: 46px 0;
  color: white;
  background: #0e1713;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 35px;
}

.footer-brand .brand-mark {
  background: #f6f4ed;
  color: var(--dark);
}

footer p,
.copyright {
  color: rgba(255,255,255,.4);
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}


/* SUBPAGES */

.page {
  min-height: calc(100vh - 170px);
  padding: 110px 0 130px;
}

.narrow {
  max-width: 850px;
}

.page .eyebrow {
  color: var(--green-2);
}

.page h1 {
  max-width: 800px;
  margin: 18px 0 30px;
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  font-size: clamp(56px,7vw,88px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.055em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.content-block {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.content-block:first-of-type {
  margin-top: 70px;
}

.content-block h2 {
  font-family:
    "Iowan Old Style",
    Georgia,
    serif;
  font-size: 27px;
  font-weight: 600;
}

.content-block p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 21px;
  border-radius: 999px;
  color: white;
  background: var(--dark);
}

.updated {
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}

.error-page {
  display: grid;
  align-items: center;
}

.error-code {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-panel {
    max-width: 500px;
  }

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

  .info-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max),calc(100% - 30px));
  }

  .nav {
    height: 65px;
  }

  nav {
    gap: 15px;
    font-size: 11px;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero {
    margin: 8px;
    padding: 68px 0 62px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 51px;
  }

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

  .catalog-section {
    padding: 70px 0 85px;
  }

  .catalog-top {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-top h2 {
    font-size: 35px;
  }

  .search {
    width: 100%;
  }

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

  .product-visual {
    aspect-ratio: 1.35 / 1;
  }

  .card p {
    min-height: auto;
  }

  .info-section {
    padding: 75px 0;
  }

  .info-grid h2 {
    font-size: 40px;
  }

  .page {
    padding: 75px 0 90px;
  }

  .page h1 {
    font-size: 52px;
  }
}
