@font-face {
  font-family: "Poynter";
  src:
    url("https://www.passenger-clothing.com/cdn/shop/t/883/assets/Poynter_Oldstyle_Display_Bold.woff2?v=6564816799172610981760356938") format("woff2"),
    url("https://www.passenger-clothing.com/cdn/shop/t/883/assets/Poynter_Oldstyle_Display_Bold.woff?v=24080665991907104431760356937") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "GT Pressura";
  src: url("https://www.passenger-clothing.com/cdn/shop/t/883/assets/GT-Pressura-Standard-Regular.woff2?v=4765449934357965631755109682") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "GT Pressura";
  src: url("https://www.passenger-clothing.com/cdn/shop/t/883/assets/GT-Pressura-Standard-Medium.woff2?v=167292161349135979911755109681") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "GT Pressura";
  src: url("https://www.passenger-clothing.com/cdn/shop/t/883/assets/GT-Pressura-Standard-Medium.woff2?v=167292161349135979911755109681") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --bone: #e7e3de;
  --bone-soft: #eeeae4;
  --sand: #d8cbb8;
  --sand-deep: #c8b79e;
  --moss: #8a9a7b;
  --brown: #3b2f2a;
  --charcoal: #2b2b2b;
  --ember: #b5522e;
  --paper-line: rgba(59, 47, 42, 0.12);
  --soft-shadow: 0 24px 70px rgba(43, 43, 43, 0.14);
  --serif: "Poynter", "New York", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "GT Pressura", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 4px;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(59, 47, 42, 0.025) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(180deg, rgba(59, 47, 42, 0.018) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--bone);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(138, 154, 123, 0.06), transparent 42%),
    repeating-linear-gradient(0deg, rgba(59, 47, 42, 0.018), rgba(59, 47, 42, 0.018) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: multiply;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--bone);
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(231, 227, 222, 0.12);
  background: transparent;
  color: var(--bone);
  text-shadow: 0 1px 18px rgba(43, 43, 43, 0.42);
}

.logo {
  width: fit-content;
  font-family: var(--serif);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1;
}

.primary-nav {
  display: flex;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  color: rgba(231, 227, 222, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
}

.primary-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--ember);
}

.cart-link {
  justify-self: end;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(231, 227, 222, 0.32);
  border-radius: 50%;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.cart-link:hover {
  border-color: rgba(231, 227, 222, 0.58);
  background: rgba(231, 227, 222, 0.11);
}

.cart-link svg,
.newsletter button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.66) contrast(0.94) brightness(0.82) sepia(0.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(43, 43, 43, 0.62) 0%, rgba(43, 43, 43, 0.34) 36%, rgba(43, 43, 43, 0.06) 72%),
    linear-gradient(180deg, rgba(43, 43, 43, 0.24) 0%, rgba(43, 43, 43, 0.08) 40%, rgba(43, 43, 43, 0.58) 100%),
    linear-gradient(35deg, rgba(181, 82, 46, 0.12), transparent 42%);
}

.hero-content {
  display: flex;
  width: min(780px, calc(100% - 40px));
  min-height: 100svh;
  flex-direction: column;
  justify-content: end;
  margin-left: clamp(20px, 8vw, 120px);
  padding: 120px 0 clamp(54px, 7vw, 92px);
  color: var(--bone);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7c8ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 9.1rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 34px;
  color: rgba(231, 227, 222, 0.86);
  font-size: 1.125rem;
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(231, 227, 222, 0.32);
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: rgba(231, 227, 222, 0.92);
  color: var(--brown);
  box-shadow: 0 0 28px rgba(181, 82, 46, 0.16);
}

.button-primary:hover {
  border-color: rgba(181, 82, 46, 0.5);
  background: var(--bone);
}

.section {
  padding: clamp(74px, 10vw, 138px) clamp(20px, 4vw, 56px);
}

.section-inner,
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.section-heading h2,
.journal-heading h2 {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: 6.25rem;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(59, 47, 42, 0.68);
}

.categories-section {
  background:
    linear-gradient(180deg, rgba(216, 203, 184, 0.72), rgba(216, 203, 184, 0.44)),
    var(--sand);
}

.categories-heading {
  max-width: 840px;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(59, 47, 42, 0.16);
  background: rgba(59, 47, 42, 0.16);
}

.category-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--bone);
  color: var(--brown);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.category-card span {
  color: rgba(59, 47, 42, 0.52);
  font-size: 0.82rem;
  font-weight: 600;
}

.category-card h3 {
  margin: auto 0 18px;
  font-size: 2.55rem;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(59, 47, 42, 0.66);
  font-size: 0.96rem;
}

.category-card:hover {
  color: var(--bone);
}

.category-card:hover span,
.category-card:hover p {
  color: rgba(231, 227, 222, 0.76);
}

.fire-card:hover {
  background: #4d3328;
}

.hands-card:hover {
  background: #657159;
}

.rest-card:hover {
  background: #7d7161;
}

.dusk-card:hover {
  background: #2b2b2b;
}

.category-feature {
  --cat-bg: var(--bone);
  --cat-text: var(--brown);
  --cat-muted: rgba(59, 47, 42, 0.68);
  --cat-line: rgba(59, 47, 42, 0.16);
  --cat-accent: var(--moss);
  --cat-panel: rgba(231, 227, 222, 0.48);
  padding: clamp(76px, 10vw, 142px) clamp(20px, 4vw, 56px);
  background: var(--cat-bg);
  color: var(--cat-text);
}

.category-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.category-feature-grid.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.category-feature-grid.reverse .category-media {
  order: 2;
}

.category-media {
  margin: 0;
}

.category-media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--cat-shadow, 0 26px 80px rgba(43, 43, 43, 0.16));
  filter: var(--cat-filter, saturate(0.82) contrast(0.94));
}

.category-copy {
  max-width: 690px;
}

.category-copy .eyebrow {
  color: var(--cat-accent);
}

.category-copy h2 {
  margin-bottom: 24px;
  color: var(--cat-text);
  font-size: 6.25rem;
}

.category-copy > p {
  max-width: 560px;
  margin-bottom: 38px;
  color: var(--cat-muted);
  font-size: 1.12rem;
}

.category-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--cat-line);
  background: var(--cat-line);
}

.category-products article {
  min-height: 210px;
  padding: 22px;
  background: var(--cat-panel);
}

.category-products h3 {
  margin-bottom: 14px;
  font-size: 1.85rem;
}

.category-products p {
  margin-bottom: 22px;
  color: var(--cat-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  color: var(--cat-text);
}

.product-price strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.product-price s {
  color: var(--cat-muted);
  font-size: 0.78rem;
}

.product-price.is-sale strong {
  color: var(--cat-accent);
}

.fire-theme {
  --cat-bg: #332b27;
  --cat-text: var(--bone);
  --cat-muted: rgba(231, 227, 222, 0.7);
  --cat-line: rgba(231, 227, 222, 0.14);
  --cat-accent: #d2b890;
  --cat-panel: rgba(231, 227, 222, 0.06);
  --cat-filter: saturate(0.78) contrast(0.96) brightness(0.78);
  --cat-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.fire-theme .category-media img {
  object-position: 50% 62%;
}

.hands-theme {
  --cat-bg: #dfe1d6;
  --cat-text: #342d28;
  --cat-muted: rgba(52, 45, 40, 0.66);
  --cat-line: rgba(52, 45, 40, 0.14);
  --cat-accent: #6f805f;
  --cat-panel: rgba(231, 227, 222, 0.52);
  --cat-filter: saturate(0.72) contrast(0.92);
}

.hands-theme .category-media img {
  object-position: 50% 64%;
}

.rest-theme {
  --cat-bg: #d8cbb8;
  --cat-text: var(--brown);
  --cat-muted: rgba(59, 47, 42, 0.66);
  --cat-line: rgba(59, 47, 42, 0.15);
  --cat-accent: #7f896d;
  --cat-panel: rgba(231, 227, 222, 0.42);
  --cat-filter: saturate(0.72) contrast(0.92);
}

.rest-theme .category-media img {
  aspect-ratio: 1.08 / 1;
  object-position: 45% 52%;
}

.dusk-theme {
  --cat-bg: #262827;
  --cat-text: var(--bone);
  --cat-muted: rgba(231, 227, 222, 0.68);
  --cat-line: rgba(231, 227, 222, 0.13);
  --cat-accent: #c08f6f;
  --cat-panel: rgba(231, 227, 222, 0.055);
  --cat-filter: saturate(0.55) contrast(0.95) brightness(0.72);
  --cat-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.dusk-theme .category-media img {
  object-position: 44% 50%;
}

.journal-card img {
  width: 100%;
  height: clamp(320px, 30vw, 420px);
  object-fit: cover;
}

.journal-section {
  background: var(--bone-soft);
}

.journal-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  max-width: none;
  align-items: end;
}

.journal-heading h2 {
  margin-bottom: 0;
  max-width: 720px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.journal-card {
  overflow: hidden;
  border: 1px solid rgba(59, 47, 42, 0.11);
  border-radius: 8px;
  background: rgba(231, 227, 222, 0.72);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(59, 47, 42, 0.12);
}

.journal-card img {
  filter: saturate(0.82);
}

.journal-card:nth-child(1) img {
  object-position: 55% center;
}

.journal-card:nth-child(2) img {
  object-position: 50% 62%;
}

.journal-card:nth-child(3) img {
  object-position: 44% 50%;
}

.journal-card-body {
  padding: clamp(20px, 3vw, 30px);
}

.journal-meta {
  margin-bottom: 16px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.journal-card h3 {
  margin-bottom: 14px;
  font-size: 2.35rem;
}

.journal-card p:last-child {
  margin-bottom: 0;
  color: rgba(59, 47, 42, 0.62);
  font-size: 0.92rem;
}

.site-footer {
  padding: clamp(58px, 8vw, 90px) clamp(20px, 4vw, 56px);
  background: #d4c5ad;
  color: var(--brown);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr) auto;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.footer-logo {
  display: block;
  margin-bottom: 22px;
}

.footer-inner p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(59, 47, 42, 0.66);
}

.newsletter label {
  display: block;
  margin-bottom: 14px;
  color: rgba(59, 47, 42, 0.76);
  font-size: 0.82rem;
  font-weight: 600;
}

.newsletter-control {
  display: grid;
  grid-template-columns: 1fr 48px;
  min-height: 52px;
  border: 1px solid rgba(59, 47, 42, 0.2);
  border-radius: 6px;
  background: rgba(231, 227, 222, 0.48);
}

.newsletter input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--brown);
  padding: 0 16px;
  outline: 0;
}

.newsletter input::placeholder {
  color: rgba(59, 47, 42, 0.45);
}

.newsletter button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(59, 47, 42, 0.16);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(59, 47, 42, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  h1 {
    font-size: 7.25rem;
  }

  .section-heading h2,
  .journal-heading h2,
  .category-copy h2 {
    font-size: 4.8rem;
  }

  .category-card h3 {
    font-size: 2rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
  }

  .primary-nav {
    justify-self: center;
    gap: 18px;
  }

  .journal-heading,
  .category-feature-grid,
  .category-feature-grid.reverse,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-feature-grid.reverse .category-media {
    order: 0;
  }

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

  .category-card {
    min-height: 300px;
  }

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

  .journal-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.72fr) 1fr;
  }

  .journal-card img {
    height: 100%;
    min-height: 260px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .primary-nav {
    gap: 13px;
    font-size: 0.76rem;
  }

  .cart-link {
    width: 38px;
    height: 38px;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin-inline: 16px;
    justify-content: end;
  }

  h1 {
    font-size: 5rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section {
    padding-inline: 16px;
  }

  .section-heading h2,
  .journal-heading h2,
  .category-copy h2 {
    font-size: 3.75rem;
  }

  .journal-card h3,
  .category-products h3 {
    font-size: 1.9rem;
  }

  .category-overview,
  .category-products {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 250px;
    padding: 22px;
  }

  .category-copy > p {
    font-size: 1rem;
  }

  .category-products article {
    min-height: auto;
  }

  .journal-card {
    display: block;
  }

  .journal-card img {
    height: 310px;
  }
}

@media (max-width: 430px) {
  .primary-nav {
    gap: 10px;
    font-size: 0.7rem;
  }

  .logo {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .journal-card:hover {
    transform: none;
  }
}
