:root {
  color-scheme: light;
  --ink: #221814;
  --muted: #6d5b51;
  --paper: #fff8ed;
  --cream: #f3dec4;
  --marrow: #ead0aa;
  --oxblood: #6e1717;
  --oxblood-dark: #3d0b0b;
  --gold: #c28a32;
  --line: rgba(61, 11, 11, 0.22);
  --shadow: rgba(41, 18, 10, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(194, 138, 50, 0.25), transparent 30rem),
    linear-gradient(135deg, #2c0c0a 0%, #5b1612 42%, #f3dec4 42%, #fff8ed 100%);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  padding: 1.25rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 248, 237, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood-dark);
}

.brand-mark {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(61, 11, 11, 0.28));
}

.links {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-menu {
  display: none !important;
}

.links a,
.mobile-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  text-decoration: none;
  background: rgba(255, 248, 237, 0.55);
  color: var(--oxblood-dark);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.links a[aria-current="page"],
.links a:hover,
.mobile-links a[aria-current="page"],
.mobile-links a:hover,
.button {
  background: var(--oxblood);
  color: #fff8ed;
  border-color: var(--oxblood);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-secondary {
  background: rgba(255, 248, 237, 0.55);
  color: var(--oxblood-dark);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem 0 3rem;
}

.panel {
  background: rgba(255, 248, 237, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px var(--shadow);
}

.hero-copy,
.page-card {
  padding: clamp(1.35rem, 4vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--oxblood);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--oxblood-dark);
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 9ch;
}

.page-card h1 {
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
}

.lede {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--muted);
  max-width: 34rem;
}

.quote-card {
  display: grid;
  align-content: end;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(61, 11, 11, 0.74), rgba(61, 11, 11, 0.88)),
    repeating-linear-gradient(45deg, rgba(255, 248, 237, 0.09) 0 1px, transparent 1px 16px);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  opacity: 0.22;
  filter: sepia(1) saturate(0.65) brightness(1.4);
}

.quote-card p {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin: 0;
  position: relative;
  z-index: 1;
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  color: var(--marrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 0 0 3rem;
}

.section > * + * {
  margin-top: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.35rem;
  background: rgba(255, 248, 237, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(41, 18, 10, 0.1);
}

.card p,
.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.65;
}

.about-story {
  overflow: auto;
}

.about-story h2 {
  clear: both;
  margin-top: 2rem;
}

.about-story p {
  max-width: 76ch;
}

.content-figure {
  width: 32%;
  max-width: 320px;
  margin: 0.35rem 0 1rem;
  padding: 0.65rem;
  background: rgba(234, 208, 170, 0.45);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(41, 18, 10, 0.1);
}

.content-figure.compact {
  width: 24%;
  max-width: 230px;
}

.content-figure.float-right {
  float: right;
  margin-left: 1.35rem;
}

.content-figure.float-left {
  float: left;
  margin-right: 1.35rem;
}

.content-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-figure.compact img {
  aspect-ratio: 1 / 1;
}

.content-figure figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.principles p {
  margin: 0;
  padding: 1rem;
  background: rgba(234, 208, 170, 0.4);
  border: 1px solid var(--line);
}

.product-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(234, 208, 170, 0.45), rgba(255, 248, 237, 0.95));
}

.price {
  color: var(--oxblood);
  font-weight: 800;
  white-space: nowrap;
}

.notice {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 5px solid var(--gold);
  background: rgba(234, 208, 170, 0.45);
  color: var(--muted);
}

.specials-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 1.25rem;
  align-items: start;
}

.special-feature h1 {
  max-width: 12ch;
}

.special-meta {
  margin: 0.8rem 0 1rem;
  color: var(--oxblood);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-body {
  margin-top: 1.5rem;
  columns: 2 22rem;
  column-gap: 2rem;
}

.special-body p {
  break-inside: avoid;
  margin: 0 0 1rem;
  max-width: none;
}

.special-archive {
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}

.special-archive h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.archive-note {
  color: var(--muted);
  line-height: 1.55;
}

.archive-item {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1rem;
  text-decoration: none;
  background: rgba(234, 208, 170, 0.45);
  border: 1px solid var(--line);
}

.archive-item span,
.archive-item em {
  color: var(--muted);
  font-size: 0.82rem;
}

.archive-item strong {
  color: var(--oxblood-dark);
  font-size: 1.05rem;
}

.gear-hero h1 {
  max-width: 11ch;
}

.gear-updated {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.gear-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 248, 237, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(41, 18, 10, 0.1);
}

.gear-image-link {
  display: block;
  background: rgba(234, 208, 170, 0.55);
  border: 1px solid var(--line);
}

.gear-image-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gear-card-copy {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.gear-card-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin: 0;
}

.gear-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gear-price {
  color: var(--oxblood) !important;
  font-weight: 800;
}

.gear-empty {
  padding: 1.5rem;
  background: rgba(255, 248, 237, 0.96);
  border: 1px solid var(--line);
}

.footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 0 3rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.9rem;
}

.footer-mark {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
  opacity: 0.68;
}

@media (max-width: 760px) {
  .nav,
  .hero,
  .grid,
  .product,
  .principles,
  .specials-page,
  .gear-grid,
  .gear-card {
    grid-template-columns: 1fr;
  }

  .special-body {
    columns: 1;
  }

  .special-archive {
    position: static;
  }

  .content-figure,
  .content-figure.compact {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }

  .content-figure img {
    max-width: 100%;
  }

  .nav {
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    flex-basis: 38px;
  }

  .footer {
    align-items: flex-start;
  }

  .links {
    display: none;
  }

  .mobile-menu {
    display: block !important;
    margin-left: auto;
  }

  .mobile-menu summary {
    display: grid;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.72rem;
    cursor: pointer;
    list-style: none;
    background: var(--oxblood);
    border: 1px solid var(--oxblood);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    height: 2px;
    background: var(--paper);
  }

  .mobile-links {
    display: grid;
    gap: 0.45rem;
    width: 100%;
    min-width: min(20rem, calc(100vw - 4rem));
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 248, 237, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px var(--shadow);
  }

  .mobile-links a {
    width: 100%;
    justify-content: flex-start;
  }

  h1 {
    max-width: none;
  }
}
