:root {
  --yellow: #f9b000;
  --yellow-strong: #ffbf16;
  --black: #111111;
  --graphite: #242424;
  --soft-black: #303030;
  --red: #df1018;
  --line: #d7d7d7;
  --paper: #f6f6f4;
  --warm: #fff7df;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  color: var(--black);
  background: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.06) 25%, transparent 25%);
  background-size: 34px 34px;
  z-index: -1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 4px solid var(--yellow);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: clamp(150px, 17vw, 220px);
  height: auto;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover {
  color: var(--yellow);
}

.main-nav .member-link {
  margin-left: 8px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(249, 176, 0, 0.22);
}

.main-nav .member-link:hover {
  color: var(--black);
  background: var(--yellow-strong);
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.main-nav .header-socials a {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  max-width: 38px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  line-height: 1;
}

.main-nav .header-socials svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.main-nav .header-socials svg path,
.main-nav .header-socials svg rect,
.main-nav .header-socials svg circle {
  vector-effect: non-scaling-stroke;
}

.main-nav .header-socials a:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 4vw, 44px) 98px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-store.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--red);
}

.hero .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  font-weight: 900;
  max-width: 780px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 850;
}

.hero-content p:not(.eyebrow),
.section-heading p,
.open-copy p,
.finder-copy p,
.wholesale p {
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.filter-bar,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.filter-chip:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(249, 176, 0, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(223, 16, 24, 0.24);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.hero-strip {
  position: absolute;
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  color: var(--black);
  border: 2px solid rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
}

.hero-strip span {
  padding: 16px;
  font-weight: 850;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 44px);
}

.section-heading,
.benefit-grid,
.store-grid,
.open-store,
.map-shell,
.product-finder,
.wholesale {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.section-heading p {
  max-width: 760px;
}

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

.benefit-card,
.store-card,
.lead-form,
.map-panel,
.finder-tool {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.benefit-card {
  padding: 24px;
  border-top: 5px solid var(--yellow);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--yellow);
  background: var(--black);
  font-weight: 950;
}

.stores {
  background:
    linear-gradient(180deg, rgba(249, 176, 0, 0.08), transparent 36%),
    var(--black);
  color: var(--white);
}

.stores .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.filter-bar {
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
}

.filter-chip {
  color: var(--white);
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.94rem;
}

.filter-chip.active {
  color: var(--black);
  background: var(--yellow);
}

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

.store-card {
  position: relative;
  overflow: hidden;
  color: var(--black);
  padding: 22px;
}

.store-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--yellow);
}

.store-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  font-size: 0.72rem;
  font-weight: 850;
  color: var(--white);
  background: var(--red);
}

.store-card p {
  margin: 8px 0;
  color: #4a4a4a;
}

.open-store,
.product-finder,
.wholesale {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.steps span {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
  border-radius: 3px;
}

.lead-form,
.finder-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  padding: 13px 12px;
  background: var(--white);
  color: var(--black);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 176, 0, 0.32);
  border-color: var(--yellow);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-weight: 800;
}

.locator {
  background: #e9e9e6;
}

.map-shell {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 560px;
  border: 6px solid var(--black);
  background: var(--black);
  box-shadow: var(--shadow);
}

.map-panel {
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
}

.map {
  min-height: 560px;
  background: #d9d9d9;
}

.ingco-marker {
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  font-size: 0.72rem;
  font-weight: 950;
}

.ingco-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  transform: translateX(-50%) rotate(45deg);
}

.ingco-marker span {
  position: relative;
  z-index: 1;
}

.nearest-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.nearest-item {
  border-left: 5px solid var(--yellow);
  padding: 10px 12px;
  background: #f2f2f2;
  cursor: pointer;
}

.nearest-item strong {
  display: block;
}

.product-finder {
  grid-template-columns: 0.8fr 1.2fr;
}

.product-result {
  grid-column: 1 / -1;
  padding: 16px;
  border-left: 6px solid var(--yellow);
  background: #f7f7f7;
  font-weight: 800;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

.stock-modal[hidden] {
  display: none;
}

.stock-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.stock-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.stock-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, 88vh);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow);
}

.stock-dialog h2 {
  padding-right: 46px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.stock-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--black);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.stock-summary {
  margin: 12px 0 20px;
  font-weight: 800;
  color: #4a4a4a;
}

.stock-list {
  display: grid;
  gap: 14px;
}

.stock-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--yellow);
  background: #f7f7f7;
}

.stock-item h3 {
  margin-top: 8px;
}

.stock-item p {
  margin: 5px 0;
}

.stock-status {
  display: inline-flex;
  padding: 6px 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
}

.stock-contact {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 850;
}

.stock-count {
  display: grid;
  place-items: center;
  min-width: 92px;
  padding: 12px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.stock-count span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.wholesale {
  grid-template-columns: 1fr auto;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(249, 176, 0, 0.16), transparent 42%),
    linear-gradient(110deg, var(--black), var(--soft-black));
  border-top: 6px solid var(--yellow);
  padding: clamp(34px, 5vw, 58px);
}

.wholesale .eyebrow {
  color: var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: var(--black);
  border-top: 5px solid var(--yellow);
  font-weight: 800;
}

.site-footer > div,
.footer-contact,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-contact a {
  color: var(--yellow);
}

.footer-contact a:hover {
  color: var(--yellow-strong);
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-socials a:hover {
  color: var(--yellow);
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--black);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav .member-link {
    margin-left: 0;
    margin-top: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  }

  .header-socials {
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    padding-top: 10px;
    border-left: 0;
  }

  .main-nav .header-socials a {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-toggle {
    display: block;
  }

  .hero-strip,
  .benefit-grid,
  .store-grid,
  .open-store,
  .product-finder,
  .wholesale,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .hero {
    align-items: center;
    min-height: auto;
    padding-bottom: 42px;
  }

  .map-panel {
    order: 2;
  }

  .map {
    min-height: 420px;
  }

  .wholesale {
    align-items: start;
  }

  .stock-item {
    grid-template-columns: 1fr;
  }

  .stock-count {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .lead-form,
  .finder-tool {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }

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