/* lmpbrskt.com — fleet static site. Design mirrors the original storefront
   theme (color-scheme-1): near-black cocoa background, off-white text,
   crimson buttons, Playfair Display headings, Open Sans body. */

@font-face {
  font-family: 'Pirata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/pirata-n4.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-n4.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/opensans-n4.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/opensans-n7.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/opensans-i4.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/opensans-i7.woff2') format('woff2');
}

:root {
  --bg: #231e1f;
  --bg-contrast: #312a2b;
  --fg: #f0f0f0;
  --fg-soft: rgba(240, 240, 240, 0.75);
  --accent: #c03a2b;
  --accent-hover: #c03a2b;
  --gold: #d5a142;
  --wordmark-gold: #d5a142;
  --border: rgba(240, 240, 240, 0.15);
  --border-soft: rgba(240, 240, 240, 0.08);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
  --page-width: 120rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  padding-top: 6rem; /* offset for the fixed header */
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1, .h1 { font-size: clamp(3.2rem, 5vw, 4.6rem); }
h2, .h2 { font-size: clamp(2.6rem, 4vw, 3.6rem); }
.h0 { font-size: clamp(3.6rem, 6vw, 5.6rem); }

a { color: var(--fg); }
a:hover { color: var(--accent-hover); }

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

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 750px) {
  .page-width { padding: 0 5rem; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999rem;
  background: var(--accent);
  color: var(--fg);
  padding: 1rem 2rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 60; }

/* ---------- Buttons ---------- */

.button {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border: 0.1rem solid transparent;
  padding: 1.3rem 3rem;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}
.button:hover { background: var(--accent); filter: brightness(1.12); transform: translateY(-0.1rem); color: var(--fg); }
.button:disabled { opacity: 0.6; cursor: wait; }

.button--secondary {
  background: transparent;
  border-color: var(--fg);
}
.button--secondary:hover { background: rgba(240, 240, 240, 0.08); color: var(--fg); }

/* Inline-styled content buttons (Ignite page) share the standard hover */
.button-hover { transition: filter 0.18s ease, transform 0.18s ease; }
.button-hover:hover { filter: brightness(1.12); transform: translateY(-0.1rem); }

.button--full { width: 100%; text-align: center; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 6rem;
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid var(--border-soft);
  background: rgba(20, 16, 17, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-header__inner { width: 100%; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.site-header__logo {
  flex-shrink: 0;
  text-decoration: none;
  font-family: 'Pirata One', var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--wordmark-gold);
  text-shadow: 0 0 30px rgba(255, 120, 24, 0.35);
  letter-spacing: 0.02em;
}
.site-header__logo:hover { color: var(--wordmark-gold); }
.site-header__logo .reg {
  font-family: var(--font-body);
  font-size: 0.32em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.15em;
  color: var(--wordmark-gold);
  text-shadow: none;
}

.site-footer__bottom sup { font-size: 0.5em; line-height: 0; vertical-align: super; }

.site-nav { display: none; }
@media (min-width: 750px) {
  .site-nav { display: block; }
  .site-nav ul {
    display: flex;
    gap: 0.4rem;
    list-style: none;
  }
  .site-nav a {
    display: block;
    padding: 1rem 1.2rem;
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--fg-soft);
  }
  .site-nav a[aria-current="page"] {
    color: var(--fg);
    text-decoration: underline;
    text-underline-offset: 0.4rem;
  }
  .site-nav a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    text-underline-offset: 0.4rem;
  }
}

.menu-toggle {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0.6rem;
  display: block;
}
.menu-toggle svg { width: 2.4rem; height: 2.4rem; display: block; }
@media (min-width: 750px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(20, 16, 17, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 0.1rem solid var(--border-soft);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0.4rem 2rem 1.2rem; }
.mobile-nav a {
  display: block;
  padding: 1.3rem 0;
  font-size: 1.7rem;
  text-decoration: none;
}
.mobile-nav li + li a { border-top: 0.1rem solid var(--border-soft); }

/* ---------- Image with text (home hero) ---------- */

.image-with-text { padding-top: 4rem; padding-bottom: 4rem; }
.image-with-text__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.image-with-text__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.image-with-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .image-with-text__media img { animation: none; }
}
@media (min-width: 750px) {
  .image-with-text__grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; }
}
.image-with-text__content { text-align: center; }
.image-with-text__content .h0 { margin-bottom: 2rem; }
.image-with-text__content p {
  color: var(--fg-soft);
  margin-bottom: 3rem;
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Banners ---------- */

.banner { position: relative; }
.banner img { width: 100%; object-fit: cover; }
.banner--medium img { min-height: 34rem; max-height: 56rem; }
.banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 17, 0.35);
}
.banner__box {
  background: var(--bg);
  border: 0.1rem solid rgba(240, 240, 240, 0.55);
  padding: 2rem 3.6rem;
  margin: 0 2rem;
  text-align: center;
}
.banner__overlay h1, .banner__overlay h2 { color: var(--fg); }

/* ---------- Blog cards ---------- */

.section { padding-top: 5rem; padding-bottom: 5rem; }
.section__heading { margin-bottom: 3.4rem; }

.article-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 750px) {
  .article-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  background: var(--bg);
  border: 0.1rem solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.article-card__image { aspect-ratio: 3 / 2; overflow: hidden; }
.article-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card__image img { transform: scale(1.03); }
.article-card__content { padding: 2.4rem 2.4rem 3rem; }
.article-card__title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.article-card__title a { text-decoration: none; }
.article-card__title a:hover { text-decoration: underline; text-underline-offset: 0.4rem; }
.article-card__meta {
  font-size: 1.3rem;
  color: var(--fg-soft);
  margin-bottom: 1.2rem;
}
.article-card__excerpt { color: var(--fg-soft); font-size: 1.5rem; }

.view-all { text-align: center; margin-top: 3.6rem; }

/* ---------- Product page ---------- */

.product { padding-top: 4rem; padding-bottom: 6rem; }
.product__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 990px) {
  .product__grid { grid-template-columns: 1.1fr 1fr; }
}

.product__media img { width: 100%; }
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.product__thumbs button {
  border: 0.1rem solid var(--border-soft);
  background: none;
  padding: 0;
  cursor: pointer;
}
.product__thumbs button[aria-current="true"] { border-color: var(--fg); }
.product__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.product__vendor {
  font-size: 1.2rem;
  letter-spacing: 0.13rem;
  color: var(--fg-soft);
  margin-bottom: 0.8rem;
}
.product__title { margin-bottom: 1.6rem; }
.product__price { font-size: 2rem; letter-spacing: 0.1rem; margin-bottom: 0.4rem; }
.product__tax-note { font-size: 1.3rem; color: var(--fg-soft); margin-bottom: 2.4rem; }

.product__qty-label {
  display: block;
  font-size: 1.3rem;
  color: var(--fg-soft);
  margin-bottom: 0.6rem;
}
.qty {
  display: inline-flex;
  border: 0.1rem solid var(--fg);
  margin-bottom: 1.2rem;
}
.qty button {
  width: 4.4rem; height: 4.4rem;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.8rem;
  cursor: pointer;
}
.qty input {
  width: 5rem;
  text-align: center;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  font-family: var(--font-body);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty { transition: outline-color 0.18s ease, box-shadow 0.18s ease; }
.qty:focus-within {
  outline: 0.2rem solid var(--gold);
  outline-offset: 0.1rem;
  box-shadow: 0 0 1rem rgba(213, 161, 66, 0.4);
}

.product__shipping-perk {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.product__buy { max-width: 44rem; }
.product__error { color: #ff8a8a; font-size: 1.4rem; margin-top: 1rem; min-height: 2rem; }
.product__description { margin-top: 3.4rem; border-top: 0.1rem solid var(--border-soft); padding-top: 3rem; }
.product__description p { margin-bottom: 1.8rem; color: var(--fg-soft); }
.product__description sup { font-size: 0.55em; line-height: 0; }

/* ---------- Collection (Flavor) ---------- */

.collection-header { padding-top: 5rem; padding-bottom: 1rem; }
.collection-header p {
  color: var(--fg-soft);
  max-width: 72rem;
  margin-top: 1.4rem;
}
.collection-count { font-size: 1.3rem; color: var(--fg-soft); margin: 2rem 0 1rem; }

.product-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 6rem;
}
@media (min-width: 750px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  border: 0.1rem solid var(--border-soft);
  text-decoration: none;
  display: block;
}
.product-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.product-card__info { padding: 1.8rem 2rem 2.4rem; }
.product-card__title { font-size: 1.6rem; font-family: var(--font-body); }
.product-card:hover .product-card__title { text-decoration: underline; text-underline-offset: 0.4rem; }
.product-card__price { color: var(--fg-soft); font-size: 1.5rem; margin-top: 0.6rem; }

/* ---------- Page / article content ---------- */

.page-title { padding: 5rem 2rem 0; text-align: center; }
.rte { max-width: 80rem; margin: 0 auto; padding: 3rem 2rem 6rem; }
.rte h2 { margin: 3.6rem 0 1.4rem; }
.rte p { margin-bottom: 1.8rem; color: var(--fg-soft); }
.rte p strong { color: var(--fg); }
.rte a { color: var(--fg); }
.rte a:hover { color: var(--accent-hover); }
.rte img { margin: 2.4rem auto; }
.rte ul, .rte ol { margin: 0 0 1.8rem 2.2rem; color: var(--fg-soft); }

.article-hero { max-width: var(--page-width); margin: 0 auto; }
.article-hero img { width: 100%; max-height: 56rem; object-fit: cover; }
.article-header { text-align: center; padding: 4rem 2rem 0; }
.article-header h1 { max-width: 90rem; margin: 0 auto 1.2rem; }
.article-header__meta { color: var(--fg-soft); font-size: 1.4rem; }
.article-footer { max-width: 80rem; margin: 0 auto; padding: 0 2rem 6rem; }
.article-footer a { font-size: 1.5rem; }

/* ---------- Ethos ---------- */

.rich-text { text-align: center; }
.rich-text .rte h2 { margin-top: 4.4rem; }

.contact-section {
  display: grid;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 6rem;
}
.contact-section > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 32rem;
  object-fit: cover;
}
@media (min-width: 750px) {
  .contact-section { grid-template-columns: 2fr 3fr; gap: 5rem; align-items: stretch; }
  .contact-section > img {
    aspect-ratio: auto;
    height: 100%;
    max-height: none;
  }
}
.contact-form h2 { margin-bottom: 2.4rem; }
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-size: 1.3rem;
  color: var(--fg-soft);
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0.1rem solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.5rem;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, outline-color 0.18s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0.2rem solid var(--gold);
  outline-offset: 0.1rem;
  border-color: var(--gold);
  box-shadow: 0 0 1rem rgba(213, 161, 66, 0.4);
}
.field textarea { min-height: 12rem; resize: vertical; }
.form-status { min-height: 2.4rem; font-size: 1.4rem; margin-top: 1rem; }
.form-status.is-error { color: #ff8a8a; }
.form-status.is-success { color: var(--gold); }

/* ---------- Success page ---------- */

.success-page { text-align: center; padding: 8rem 2rem; }
.success-page h1 { margin-bottom: 1.8rem; }
.success-page p { color: var(--fg-soft); max-width: 52rem; margin: 0 auto 1.4rem; }
.success-page .button { margin-top: 2.4rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: #141011;
  border-top: 0.1rem solid var(--border-soft);
  padding: 5rem 0 3rem;
  margin-top: 4rem;
}
.site-footer__newsletter {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.6rem;
}
.site-footer__newsletter h2 { font-size: 2.4rem; margin-bottom: 2rem; }

.newsletter-form__row {
  display: flex;
  border: 0.1rem solid var(--fg);
}
.newsletter-form__row input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.5rem;
  padding: 1.3rem 1.6rem;
  min-width: 0;
}
.newsletter-form__row input:focus { outline: none; }
.newsletter-form__row { transition: outline-color 0.18s ease, box-shadow 0.18s ease; }
.newsletter-form__row:focus-within {
  outline: 0.2rem solid var(--gold);
  outline-offset: 0.1rem;
  box-shadow: 0 0 1rem rgba(213, 161, 66, 0.4);
}
.newsletter-form__row button {
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0 1.6rem;
  transition: color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}
.newsletter-form__row button svg { width: 1.6rem; height: 1.6rem; display: block; }
.newsletter-form__row button:hover { color: var(--accent-hover); filter: brightness(1.12); transform: translateY(-0.1rem); }

.social-row {
  display: flex;
  justify-content: center;
  gap: 2.6rem;
  list-style: none;
  margin-bottom: 3.6rem;
}
.social-row a { color: var(--fg-soft); display: block; }
.social-row a:hover { color: var(--accent-hover); }
.social-row svg { width: 2rem; height: 2rem; display: block; fill: currentColor; }

.site-footer__bottom {
  border-top: 0.1rem solid var(--border-soft);
  padding-top: 2.6rem;
  text-align: center;
  font-size: 1.3rem;
  color: var(--fg-soft);
}
.site-footer__bottom a { color: var(--fg-soft); }
.site-footer__bottom a:hover { color: var(--accent-hover); }
.site-footer__bottom p + p { margin-top: 0.6rem; }

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.4rem;
  list-style: none;
  margin-bottom: 1.4rem;
  font-size: 1.25rem;
}
.footer-policies a { color: var(--fg-soft); text-decoration: none; }
.footer-policies a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ---------- 404 ---------- */

.error-page { text-align: center; padding: 10rem 2rem; }
.error-page h1 { margin-bottom: 1.6rem; }
.error-page p { color: var(--fg-soft); margin-bottom: 3rem; }

/* ---------- Consent banner ---------- */

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 2.4rem;
  padding: 1.4rem 2rem;
  background: rgba(20, 16, 17, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 0.1rem solid var(--border-soft);
}
.consent__text { font-size: 1.35rem; color: var(--fg-soft); max-width: 56rem; margin: 0; }
.consent__text a { color: var(--fg); }
.consent__actions { display: flex; gap: 1rem; flex-shrink: 0; }
.consent__btn {
  font-family: var(--font-body);
  font-size: 1.4rem;
  letter-spacing: 0.06rem;
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.consent__btn:hover { filter: brightness(1.12); transform: translateY(-0.1rem); }
.consent__btn--primary { background: var(--accent); color: var(--fg); border: 0.1rem solid transparent; }
.consent__btn--ghost { background: transparent; color: var(--fg); border: 0.1rem solid var(--border); }

/* ---------- /join landing ---------- */

.join-page {
  min-height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
}
.join-page__wordmark {
  text-decoration: none;
  font-family: 'Pirata One', var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--wordmark-gold);
  text-shadow: 0 0 30px rgba(255, 120, 24, 0.35);
  letter-spacing: 0.02em;
  margin-bottom: 3.6rem;
}
.join-page__wordmark:hover { color: var(--wordmark-gold); }
.join-page__wordmark .reg {
  font-family: var(--font-body);
  font-size: 0.32em;
  vertical-align: super;
  margin-left: 0.15em;
  text-shadow: none;
}
.join-page h1 { margin-bottom: 1.2rem; }
.join-page__sub {
  color: var(--fg-soft);
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.join-page form { width: 100%; max-width: 40rem; }
.join-page__powered {
  margin-top: 4rem;
  font-size: 1.25rem;
  color: var(--fg-soft);
}
.join-page__powered a { color: var(--wordmark-gold); font-family: 'Pirata One', var(--font-heading); font-size: 1.15em; text-decoration: none; }
.join-page__powered a:hover { color: var(--accent-hover); }
