:root {
  color-scheme: light;
  --ink: #171411;
  --muted: #6b625c;
  --line: #ded8d1;
  --surface: #fffdf9;
  --surface-soft: #f4efe8;
  --accent: #0d665f;
  --accent-dark: #084641;
  --rose: #b2434a;
  --gold: #b8872d;
  --shadow: 0 18px 50px rgba(23, 20, 17, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

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

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

.skip-link {
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(222, 216, 209, 0.8);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  border-radius: 6px;
  display: block;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

nav a {
  color: #3c3732;
  white-space: nowrap;
}

.language-select {
  appearance: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  flex: 0 0 168px;
  min-height: 44px;
  padding: 0 34px 0 12px;
  width: 168px;
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover,
.header-cta:hover {
  background: var(--accent-dark);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
}

.button.dark {
  background: var(--ink);
}

.hero {
  display: grid;
  height: clamp(340px, 46vh, 430px);
  min-height: 0;
  position: relative;
}

.hero picture,
.hero img,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero picture {
  height: 100%;
  overflow: hidden;
}

.hero img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.84), rgba(15, 12, 9, 0.32) 54%, rgba(15, 12, 9, 0.1));
}

.hero-content {
  align-self: end;
  color: white;
  max-width: 780px;
  padding: 0 clamp(22px, 6vw, 80px) 38px;
  z-index: 1;
}

.eyebrow {
  color: var(--rose);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f8c86b;
}

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

h1 {
  font-size: clamp(40px, 6vw, 66px);
  line-height: 0.98;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin-bottom: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.22;
  margin-bottom: 8px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.58;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.toolbar {
  background: var(--ink);
  color: white;
  padding: 18px clamp(18px, 4vw, 56px);
}

.toolbar-inner {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 180px;
  margin: 0 auto;
  max-width: 1180px;
}

.search-box,
.submit-box {
  display: grid;
  gap: 8px;
}

.search-box span,
.submit-box span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  appearance: none;
  background: white;
  border: 1px solid white;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.search-submit {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  min-height: 48px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease;
  width: 100%;
}

.search-submit:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

input:focus,
select:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 135, 45, 0.6);
  outline-offset: 3px;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 68px clamp(18px, 4vw, 56px);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.split {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.muted {
  color: var(--muted);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tab {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #342f2b;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  min-height: 44px;
  padding: 0 16px;
}

.category-tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.finds-section {
  padding-top: 10px;
}

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

.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(23, 20, 17, 0.06);
  display: grid;
  overflow: hidden;
}

.product-media {
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
  overflow: hidden;
  position: relative;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.badge {
  background: rgba(255, 253, 249, 0.92);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
  top: 12px;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-feature-settings: "tnum";
  font-weight: 850;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: #f7f2ec;
  border-radius: 999px;
  color: #625a53;
  font-size: 12px;
  padding: 5px 8px;
}

.card-link {
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  min-height: 44px;
  padding-top: 12px;
}

.empty-state {
  background: var(--surface-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.about-band {
  align-items: center;
  background: var(--surface-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 56px;
  max-width: 1130px;
}

.about-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 740px;
}

.text-link {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-section {
  padding-top: 24px;
}

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

.guide-card,
.guide-list-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(23, 20, 17, 0.05);
}

.guide-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.guide-card p:not(.guide-meta),
.guide-list-item p:not(.guide-meta),
.article-body p {
  color: var(--muted);
  line-height: 1.7;
}

.guide-meta {
  color: var(--rose);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 0;
  text-transform: uppercase;
}

.guide-card h3,
.guide-list-item h2 {
  margin-bottom: 0;
}

.guide-card a,
.guide-list-item a {
  color: var(--accent-dark);
  font-weight: 850;
}

.article-hero {
  background: var(--ink);
  color: white;
  padding: 84px clamp(18px, 4vw, 56px);
}

.article-hero h1,
.article-hero p {
  max-width: 820px;
}

.article-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.guide-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.guide-list-item {
  padding: 26px;
}

.article-page {
  background: var(--surface);
}

.article-body {
  margin: 0 auto;
  max-width: 820px;
  padding: 74px clamp(18px, 4vw, 56px);
}

.article-body h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
}

.article-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
  margin-top: 42px;
}

.article-lede {
  font-size: 20px;
}

.article-cta {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 46px;
  padding: 26px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 56px);
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    height: 420px;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .toolbar-inner,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}
