:root {
  --cream: #f6efe4;
  --paper: #fffdf8;
  --black: #050505;
  --charcoal: #171717;
  --muted: #6f6a63;
  --border: rgba(5, 5, 5, 0.12);
  --orange: #ff5a1f;
  --soft: rgba(246, 239, 228, 0.88);
  --max: 1180px;
  --header-height: 74px;
  --font: Geist, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--paper);
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(190px, 0.8fr);
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--charcoal);
  font-size: 0.92rem;
}

.site-nav a,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a:hover,
.site-footer a:hover {
  text-decoration-line: underline;
}

.search {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search label,
.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.search input,
.newsletter-form input {
  width: min(100%, 240px);
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--paper);
  color: var(--black);
  padding: 10px 12px;
}

.search input:focus,
.newsletter-form input:focus,
.button:focus-visible,
.category-rail a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: calc(86svh - var(--header-height));
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero-media,
.hero::before {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/images/generated/orbitkey-desk-mat-editorial.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  z-index: 1;
  background: rgba(246, 239, 228, 0.64);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  min-height: calc(86svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 20px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 0;
}

.kicker,
.category,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy > p:not(.kicker) {
  max-width: 570px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--black);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.62);
  color: var(--black);
}

.feature-section,
.recent-section,
.carousel-section,
.about-section,
.newsletter-section,
.archive-main,
.thing-main,
.simple-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.feature-section {
  padding: clamp(46px, 7vw, 90px) 0;
}

.section-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.today-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(26px, 4vw, 42px);
}

.feature-image {
  background: var(--cream);
  border: 1px solid var(--border);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.feature-copy h2,
.section-heading h2,
.about-section h2,
.newsletter-section h2,
.thing-header h1,
.simple-main h1,
.archive-main h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  margin: 0;
  max-width: 620px;
  color: var(--charcoal);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.22;
}

.why-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.why-list h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

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

.why-list li {
  position: relative;
  padding-left: 16px;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.recent-section,
.carousel-section,
.about-section,
.newsletter-section {
  padding: clamp(42px, 7vw, 86px) 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(18px, 4vw, 58px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.section-heading.compact {
  margin-bottom: 18px;
}

.find-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.find-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
}

.find-card a {
  display: grid;
  height: 100%;
}

.find-card:hover .object-portrait span {
  transform: translateY(-2px) rotate(-1deg);
}

.object-portrait {
  min-height: 250px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.object-portrait span {
  display: block;
  transition: transform 180ms ease;
}

.object-coffee span {
  width: 92px;
  height: 138px;
  border: 9px solid var(--charcoal);
  border-radius: 42px 42px 34px 34px;
  background: #d7d1c6;
}

.object-bag span {
  width: 170px;
  height: 92px;
  border-radius: 42px 42px 30px 30px;
  background: var(--charcoal);
  box-shadow: inset 0 -24px 0 rgba(255, 253, 248, 0.1);
}

.object-tech span {
  width: 168px;
  height: 108px;
  border: 14px solid var(--charcoal);
  border-radius: 26px;
  background: #bfc6c2;
}

.object-travel span {
  width: 42px;
  height: 178px;
  border-radius: 28px;
  background: #9b9f98;
  box-shadow: 44px 30px 0 -12px var(--orange);
  transform: rotate(18deg);
}

.object-home span {
  width: 168px;
  height: 108px;
  border: 10px solid #385245;
  background: #d3ded2;
}

.object-book span {
  width: 120px;
  height: 168px;
  border-radius: 3px;
  background: #b87942;
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.18), 18px 16px 0 #ece4d7;
}

.find-card-copy {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.find-card-copy p,
.find-card-copy h3,
.find-card-copy span {
  margin: 0;
}

.find-card-copy p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.find-card-copy h3 {
  font-size: 1.25rem;
  line-height: 1.08;
}

.find-card-copy span {
  color: var(--muted);
}

.category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: thin;
}

.category-rail a {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  padding: 12px 16px;
  font-weight: 800;
}

.category-rail a:hover {
  background: var(--black);
  color: var(--paper);
}

.about-section,
.newsletter-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
}

.about-section > p {
  max-width: 680px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form > div {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1 1 260px;
  width: auto;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 44px);
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.archive-main,
.thing-main,
.simple-main {
  padding: clamp(42px, 7vw, 82px) 0;
}

.page-intro {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.page-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  padding: 8px 12px;
  cursor: pointer;
}

.filter-bar button[aria-pressed="true"] {
  background: var(--black);
  color: var(--paper);
}

.thing-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 78px);
}

.thing-header img {
  width: 100%;
  border: 1px solid var(--border);
}

.thing-copy {
  display: grid;
  gap: 18px;
}

.merchant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliate-disclosure,
.legal-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.affiliate-disclosure {
  max-width: 560px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(26px, 6vw, 76px);
  border-top: 1px solid var(--border);
  padding-top: clamp(28px, 5vw, 54px);
}

.content-grid h2,
.simple-main h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.content-grid p,
.simple-main p,
.simple-main li {
  color: var(--charcoal);
}

.content-grid section {
  margin-bottom: 34px;
}

.disclosure-note {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.links-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.links-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}

.links-list a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.links-list + .legal-meta {
  max-width: 520px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-nav,
  .search {
    justify-self: start;
  }

  .today-feature,
  .section-heading,
  .about-section,
  .newsletter-section,
  .thing-header,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 160px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .search,
  .search input,
  .newsletter-form > div,
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-form > div {
    flex-direction: column;
  }

  .hero,
  .hero-copy {
    min-height: calc(82svh - var(--header-height));
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .why-list ul {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
}
