/* ============================================================
   BK Outfitters — single page site
   Palette: black & white only. Fonts: Instrument Serif (display),
   Stack Sans Notch (eyebrows/labels/prices), Google Sans Flex (body/UI).
   ============================================================ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f6f6f4;
  --gray-100: #ececea;
  --gray-300: #cfcfcb;
  --gray-500: #8a8a86;
  --gray-700: #4f4f4f;
  --border: #4f4f4f;

  --font-heading: "Stack Sans Notch", "Google Sans Flex", Arial, sans-serif;
  --font-label: "Stack Sans Notch", "Google Sans Flex", Arial, sans-serif;
  --font-body: "Google Sans Flex", Arial, sans-serif;
  --font-cta: "Instrument Serif", Georgia, serif;

  --container: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);

  /* button accent — overridden per-context */
  --btn-accent: #000000;
  --btn-fg: #000000;
  --btn-fg-hover: #ffffff;
  --btn-border: #4f4f4f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--black);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; margin: 0; }

.section-heading {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.02;
  margin: 0.5rem 0 0;
  letter-spacing: -0.01em;
}

/* Accent word: no italics — a highlighter band covers the lower half of
   the text, the upper half stays outlined/hollow via text-stroke.
   On light sections: white fill / black stroke / black band.
   On dark sections (hero, cta-banner): colors invert. */
.section-heading em,
.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--black);
  paint-order: stroke fill;
}

.section-heading em::before,
.hero__title em::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.05em;
  right: -0.05em;
  bottom: 0;
  height: 50%;
  background: var(--black);
}

.hero .hero__title em,
.cta-banner .section-heading em {
  color: var(--black);
  -webkit-text-stroke: 1.5px var(--white);
}

.hero .hero__title em::before,
.cta-banner .section-heading em::before {
  background: var(--white);
}

.section-intro {
  max-width: 640px;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ---------------- Buttons (Uiverse cssbuttons-io, adapted b/w) ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--btn-border);
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-family: var(--font-cta);
  font-weight: 400;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--btn-fg);
  background: transparent;
  z-index: 1;
  white-space: nowrap;
}

.btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--btn-accent);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn:hover {
  color: var(--btn-fg-hover);
  border: 1px solid var(--btn-accent);
}

.btn:hover:before {
  top: -35%;
  background-color: var(--btn-accent);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn:hover:after {
  top: -45%;
  background-color: var(--btn-accent);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* light-surface button: black text -> fills black on hover */
.btn--primary {
  --btn-accent: #0a0a0a;
  --btn-fg: #0a0a0a;
  --btn-fg-hover: #ffffff;
  --btn-border: #4f4f4f;
  background: var(--white);
}

/* dark-surface button: white text -> fills white on hover */
.btn--onDark {
  --btn-accent: #ffffff;
  --btn-fg: #ffffff;
  --btn-fg-hover: #0a0a0a;
  --btn-border: #ffffff;
}

/* solid black CTA — fg white by default, inverts to white fill / black text on hover */
.btn--solid {
  --btn-accent: #ffffff;
  --btn-fg: #ffffff;
  --btn-fg-hover: #0a0a0a;
  --btn-border: #0a0a0a;
  background: var(--black);
}

.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }

.btn svg { width: 18px; height: 18px; flex: none; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  padding: 1.1rem clamp(1rem, 3vw, 2rem) 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.site-header .btn {
  border-radius: 999px;
}

.wordmark {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark span { font-weight: 300; opacity: 0.55; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-nav a:not(.btn) {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.site-nav a:not(.btn):hover { opacity: 1; }

.nav-links { display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
}

.hero__copy {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
  padding-top: calc(clamp(3rem, 8vw, 5.5rem) + 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.hero__eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--white);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.stars { color: var(--white); letter-spacing: 0.05em; }

.hero__media {
  position: relative;
  min-height: 320px;
}

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

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}

@media (max-width: 900px) {
  .hero__media { min-height: 340px; order: -1; }
}

/* ---------------- Value props ---------------- */

.values {
  border-bottom: 1px solid var(--gray-100);
}

.values__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

@media (max-width: 760px) {
  .values__row { grid-template-columns: repeat(2, 1fr); }
}

.value {
  padding: 1rem 0;
}

.value__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.value h3 {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.value p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.92rem;
}

/* ---------------- Product grid ---------------- */

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}

.product-card__body {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1.25rem 1.35rem;
  color: var(--white);
}

.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
}

.product-card__price {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 0.35rem;
}

.product-card--dark {
  background: var(--black);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 14px
  );
}

.product-card--dark::before { background: none; }
.product-card--dark .product-card__name { color: var(--white); }

.product-card--dark .product-card__note {
  color: var(--gray-500);
  font-size: 0.78rem;
  margin-top: 0.6rem;
}

/* ---------------- Detail strip ---------------- */

.detail-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
  background: var(--black);
}

@media (max-width: 760px) {
  .detail-strip { grid-template-columns: 1fr; }
}

.detail-strip__panel {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

.detail-strip__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.detail-strip__panel:hover img {
  transform: scale(1.06);
}

@media (max-width: 760px) {
  .detail-strip__panel { min-height: 55vh; }
}

.detail-strip__caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-strip__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%);
}

/* ---------------- Testimonials ---------------- */

.testimonials {
  background: var(--gray-50);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

@media (max-width: 900px) {
  .t-grid { grid-template-columns: 1fr; }
}

.t-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-card .stars { color: var(--black); font-size: 0.95rem; }

.t-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.t-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-family: var(--font-label);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-700);
}

.testimonials__foot {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------------- CTA banner ---------------- */

.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-banner .section-heading { color: var(--white); }

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cta-banner__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------------- Visit / map ---------------- */

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; }
}

.visit__list {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.visit__list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.visit__list strong {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: 0.2rem;
}

.visit__list svg { width: 20px; height: 20px; flex: none; margin-top: 0.2rem; }

.map-frame {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 2.75rem 0 6.5rem;
}

@media (min-width: 761px) {
  .site-footer { padding-bottom: 2.75rem; }
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__wordmark {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.footer__meta { font-size: 0.85rem; line-height: 1.7; }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------------- Sticky mobile CTA bar ---------------- */

.mobile-cta {
  display: none;
}

@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--black);
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
    gap: 0.6rem;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
  }

  .mobile-cta .btn {
    flex: 1;
    justify-content: center;
  }
}
