:root {
  --purple: hsla(253, 67%, 31%, 1);
  --lime: hsla(80, 83%, 60%, 1);
  --lime-bg: hsla(80, 83%, 60%, 0.41);
  --text: #111;
  --muted: #555;
  --light-bg: #fafaf7;
  --white: #fff;
  --black: #000;
  --max-width: 2000px;
  --gutter: 4vw;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo img { height: 50px; width: auto; }

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: var(--lime);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.site-nav a:hover, .site-nav a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-link {
  margin-left: auto;
  color: var(--lime);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cart-link:hover, .cart-link.active { opacity: 1; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--lime);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title .highlight {
  background: var(--lime-bg);
  padding: 0 0.2em;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 8px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  margin: 0 0 40px;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  text-transform: uppercase;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn-dark:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* About / Why We Exist */
.about-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-lead {
  font-size: 18px;
  margin: 0;
  line-height: 1.55;
}

.about-detail {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.about-detail a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Testimonials */
.testimonials {
  background: var(--white);
  padding: 100px 0;
}

.slider {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.slider-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 200px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: auto; }

.slide blockquote {
  margin: 0;
  max-width: 800px;
  text-align: center;
}

.slide blockquote p {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px;
}

.slide blockquote cite {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.2s;
}

.slider-arrow:hover { opacity: 0.5; }
.slider-arrow-left { left: var(--gutter); }
.slider-arrow-right { right: var(--gutter); }

/* Page Sections */
.page-section { padding: 100px 0; }
.section-light { background: var(--light-bg); }
.section-bright { background: hsla(80, 83%, 60%, 0.18); }
.section-white { background: var(--white); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h1, .split-text h2 { margin: 0 0 24px; }
.split-text p { font-size: 17px; line-height: 1.6; margin: 0 0 16px; color: var(--muted); }

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* Store */
.store-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-size: 18px;
}

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field .req { color: var(--purple); }

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  background: var(--white);
}

.form-field textarea { border-radius: 18px; resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px hsla(253, 67%, 31%, 0.12);
}

.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; pointer-events: none; }

.form-status { margin: 0; font-size: 14px; min-height: 1.2em; }
.form-status.success { color: #1b7a1b; }
.form-status.error { color: #c0392b; }

/* Footer */
.site-footer {
  background: var(--light-bg);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col h4 { margin: 0; font-size: 16px; font-weight: 600; }
.footer-col h4 a { transition: color 0.2s; }
.footer-col h4 a:hover { color: var(--purple); }
.footer-col-right { text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-section { padding: 70px 0; }
  .slider { padding: 0 50px; }
}

@media (max-width: 767px) {
  .header-inner { padding: 12px var(--gutter); }
  .logo img { height: 36px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

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

  .site-nav a {
    padding: 14px var(--gutter);
    font-size: 16px;
    border-top: 1px solid hsla(80, 83%, 60%, 0.15);
  }

  .menu-toggle { display: flex; }
  .cart-link { margin-left: auto; margin-right: 8px; }

  .hero { min-height: 75vh; }
  .form-row { grid-template-columns: 1fr; }
  .slider-list { min-height: 280px; }

  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-col-right { text-align: center; }
}
