:root {
  --bg: #0f0f10;
  --bg-soft: #17181a;
  --bg-panel: #1f2124;
  --surface: #ffffff;
  --surface-soft: #f4f4f2;
  --text: #191919;
  --text-soft: #5b5b5b;
  --text-light: #f5f5f5;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(0, 0, 0, 0.08);
  --accent: #fb5a2e;
  --accent-dark: #d1492a;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 96px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 10000;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(181, 138, 82, 0.16), transparent 35%),
    linear-gradient(180deg, #111214 0%, #17181a 100%);
  color: var(--text-light);
  min-height: 100vh; padding-top: 40px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 140px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.07rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.card-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-list li {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-card-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 100px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.text-block h2,
.shop-copy h2,
.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p,
.text-block p,
.shop-copy p,
.contact-copy p,
.product-content p,
.feature-item p,
.step-card p {
  color: var(--text-soft);
}

.products-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f5 100%);
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14);
}

.product-image-wrap {
  aspect-ratio: 4 / 3;
  background: #ece7df;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-content h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-actions {
  margin-top: auto;
  padding-top: 4px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.why-section {
  background: #111214;
  color: var(--text-light);
}

.why-section .text-block p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-panel {
  display: grid;
  gap: 18px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature-item p {
  margin: 0;
}

.how-section {
  background: var(--surface-soft);
}

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

.step-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.shop-banner {
  background: linear-gradient(135deg, #1d1f22 0%, #111214 100%);
  color: var(--text-light);
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.shop-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-link {
  display: inline-block;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 20px;
  word-break: break-word;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.back-to-top {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn-card {
  background: #111214;
  color: #fff;
}

.btn-card:hover,
.btn-card:focus-visible {
  background: #000;
}

.btn-outline {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--text);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #f5f5f5;
}

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
}

#backToTop:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

.footer-links {
  display:flex;
  gap:18px;
  font-size:0.9rem;
}

.footer-links a{
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  transition:color .2s ease;
}

.footer-links a:hover{
  color:#ffffff;
}

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .shop-banner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-card {
    justify-content: flex-start;
  }

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

/* Tablet */
@media (max-width: 840px) {
  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 1001;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(15, 15, 16, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0 72px;
  }

  .section {
    padding: 78px 0;
  }
}

/* Phone */
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-banner,
  .contact-card,
  .step-card,
  .feature-item,
  .product-content,
  .hero-card-inner {
    padding: 22px;
  }

  .footer-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
	
	.logo img{
  height:84px;
}
}

/* Very small phones */
@media (max-width: 420px) {
  :root {
    --header-height: 76px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .logo-text {
    font-size: 0.94rem;
  }

  .section-heading h2,
  .text-block h2,
  .shop-copy h2,
  .contact-copy h2 {
    font-size: 1.85rem;
  }

  .btn {
    width: 100%;
  }
}

/* Hero image version */
.hero-has-image {
  background:
    linear-gradient(90deg, rgba(9, 10, 11, 0.78) 0%, rgba(9, 10, 11, 0.52) 38%, rgba(9, 10, 11, 0.22) 62%, rgba(9, 10, 11, 0.12) 100%),
    url("images/hero-sideshooter.jpg") center center / cover no-repeat;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 110px);
  align-items: center;
}

.hero-copy-panel {
  max-width: 620px;
  background: rgba(14, 15, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.hero-copy-panel .hero-text {
  max-width: 52ch;
}

.hero-copy-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.hero-copy-panel .btn-secondary:hover,
.hero-copy-panel .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* Safety fallback if an older hero card is still present */
.hero-has-image .hero-card {
  display: none;
}

@media (max-width: 840px) {
  .hero-grid-single {
    min-height: auto;
  }

  .hero-copy-panel {
    max-width: 100%;
    padding: 26px;
  }

  .hero-has-image {
    background:
      linear-gradient(180deg, rgba(9, 10, 11, 0.82) 0%, rgba(9, 10, 11, 0.58) 45%, rgba(9, 10, 11, 0.4) 100%),
      url("images/hero-sideshooter.jpg") center center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .hero-copy-panel {
    padding: 22px;
    border-radius: 18px;
  }
}

/* Updated hero slider */
.hero-slider-section {
  min-height: 100vh;
  padding-top: 0;
  align-items: flex-start;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-section .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.22) 0%, rgba(8, 8, 9, 0.3) 24%, rgba(8, 8, 9, 0.54) 48%, rgba(8, 8, 9, 0.76) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, 0.38) 0%, rgba(8, 8, 9, 0.18) 45%, rgba(8, 8, 9, 0.34) 100%);
}

.hero-grid-centered-top {
  width: 100%;
  min-height: calc(100vh - 96px);
  align-items: start;
  justify-items: center;
  padding: clamp(118px, 16vh, 168px) 0 110px;
}

.hero-copy-centered {
  max-width: 760px;
  width: min(100%, 760px);
  text-align: center;
  background: rgba(14, 15, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.hero-copy-centered h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-centered .hero-text {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions-centered {
  justify-content: center;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 15, 16, 0.45);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(15, 15, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 15, 16, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition), background var(--transition);
}

.hero-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: #fff;
}

/* Hide old image helper background when slider is active */
.hero-slider-section.hero-has-image,
.hero-slider-section {
  background: #111214;
}

@media (max-width: 840px) {
  .hero-grid-centered-top {
    min-height: auto;
    padding: 112px 0 96px;
  }

  .hero-copy-centered {
    max-width: 100%;
    background: rgba(14, 15, 16, 0.56);
  }

  .hero-slider-controls {
    bottom: 24px;
    gap: 10px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  /* Remove slider visuals on small mobile */
  .hero-slider,
  .hero-slide,
  .hero-slider-controls {
    display: none;
  }

  /* Switch to simple background */
  .hero-slider-section {
    min-height: auto;
    background: linear-gradient(180deg, #111214 0%, #17181a 100%);
  }

  /* Tight, top-aligned layout */
  .hero-grid-centered-top {
    min-height: auto;
    align-items: flex-start;
    padding: 90px 0 50px;
  }

  .hero-copy-centered {
    background: rgba(14, 15, 16, 0.85);
  }

  .hero-copy-centered h1 {
    max-width: 100%;
  }
}
