:root {
  --bg-base: #22242d;
  --bg-deep: #22242d;
  --panel: rgba(17, 24, 33, 0.72);
  --yellow: #f1d648;
  --yellow-strong: #f0d13d;
  --text: #edf3f7;
  --muted: rgba(237, 243, 247, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  display: grid;
  place-items: center;
  background: var(--bg-base);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

.page-shell {
  width: min(100%, 1200px);
  min-width: 320px;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 3vw, 2.5rem) 2.5rem;
  text-align: center;
}

.brand {
  width: 100%;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
}

.brand img {
  width: clamp(240px, min(56vw, 52vh), 520px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.22));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--yellow);
}

.hero {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

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

h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
}

.tagline {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
  color: var(--text);
  font-size: clamp(0.72rem, 1.3vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlights span {
  display: inline-block;
}

.highlights span:not(:last-child)::after {
  content: "|";
  margin-left: 0.8rem;
  color: rgba(241, 214, 72, 0.9);
}

.about-section {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  text-align: left;
}

.about-intro h2 {
  margin: 0.35rem 0 0.75rem;
  color: var(--yellow);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.about-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-label {
  margin: 0;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.company-facts {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.company-facts div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--panel);
}

.company-facts dt {
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
}

.company-facts dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.company-facts a {
  color: var(--yellow);
  text-underline-offset: 0.2em;
}

.company-facts a:hover,
.company-facts a:focus-visible {
  color: var(--text);
}

.shop-section {
  margin-top: 2.5rem;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--panel);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.shop-section h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
}

.footer {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer p,
.shop-section p {
  margin: 0;
}

.made-in-usa {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.made-in-usa span {
  margin-left: 0.25rem;
  letter-spacing: normal;
}

.company-history {
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.company-history a {
  margin-left: 0.25rem;
  color: var(--yellow);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.company-history a:hover,
.company-history a:focus-visible {
  color: var(--text);
}

.footer-brand {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.blog-shell {
  width: min(100%, 900px);
  text-align: left;
}

.blog-shell .brand {
  margin-bottom: 1rem;
}

.blog-shell .brand img {
  width: clamp(180px, min(32vw, 30vh), 300px);
}

.blog-shell .site-nav {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.blog-header {
  margin-bottom: 2rem;
}

.blog-header h1,
.post-header h1 {
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.blog-header p,
.post-description {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: block;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--panel);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.post-card h2 {
  margin: 0.35rem 0 0.65rem;
  color: var(--yellow);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.post-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.post-card:hover,
.post-card:focus-visible {
  border-color: rgba(241, 214, 72, 0.55);
  background: rgba(17, 24, 33, 0.9);
  transform: translateY(-2px);
  outline: none;
}

.post-card:hover h2,
.post-card:focus-visible h2 {
  color: var(--text);
}

.post-card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-date {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-header {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.post-content {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.post-content > * {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2.25em;
  margin-bottom: 0.65em;
  color: var(--yellow);
  line-height: 1.2;
}

.post-content a {
  color: var(--yellow);
  text-underline-offset: 0.2em;
}

.post-content blockquote {
  padding-left: 1.25rem;
  border-left: 3px solid var(--yellow);
  color: var(--muted);
}

.post-content pre {
  overflow-x: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #171920;
}

.post-content code {
  padding: 0.12em 0.3em;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.28);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.post-content pre code {
  padding: 0;
  background: transparent;
}

.post-content img {
  height: auto;
  border-radius: 0.65rem;
}

.blog-empty {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--muted);
  background: var(--panel);
}

@media (max-width: 820px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-intro {
    max-width: 40rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1.5rem 1rem 2rem;
  }

  .eyebrow,
  .highlights span {
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0.07em;
  }

  .highlights {
    flex-direction: column;
    gap: 0.45rem;
  }

  .highlights span:not(:last-child)::after {
    display: none;
  }

  .made-in-usa {
    letter-spacing: 0.12rem;
  }

  .brand {
    margin-bottom: 1rem;
  }

  .brand img {
    width: clamp(220px, 72vw, 320px);
  }

  .tagline {
    max-width: 28rem;
  }

  .about-section,
  .shop-section {
    margin-top: 2rem;
  }

  .about-intro,
  .company-facts,
  .shop-section,
  .footer {
    width: 100%;
  }

  .company-facts div {
    padding: 1rem;
  }

  .shop-section {
    padding: 1.1rem 1rem;
  }

  .company-history a {
    display: block;
    width: fit-content;
    margin: 0.5rem auto 0;
  }

  .blog-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
