:root {
  --color-background: #0f0f10;
  --color-text: #1b1b1d;
  --color-muted: #5d5d60;
  --color-accent: #cb8b3e;
  --color-beige: #f5efe6;
  --color-offwhite: #f9f7f2;
  --color-slate: #121315;
  --color-line: rgba(12, 12, 13, 0.08);
  --font-heading: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.primary-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.primary-nav .nav-contact {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #ffffff;
}

.primary-nav .nav-contact:hover,
.primary-nav .nav-contact:focus {
  border-color: #ffffff;
}

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

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

section {
  padding: 72px 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(203, 139, 62, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(203, 139, 62, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-color: #000;
  background: center/cover no-repeat url("assets/images/hero-poster.png");
  background-image: url("../images/hero-poster.png");
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.22));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 120px 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  text-align: center;
}

.section-subheading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--color-muted);
}

.how-it-works {
  background: var(--color-beige);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(15, 15, 16, 0.08);
  border: 1px solid rgba(12, 12, 13, 0.06);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-muted);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(203, 139, 62, 0.12);
  color: var(--color-accent);
  font-size: 1.6rem;
}

.local-processing {
  margin-top: 32px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 32px;
  border: 1px solid rgba(12, 12, 13, 0.08);
  color: var(--color-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why {
  background: var(--color-offwhite);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(12, 12, 13, 0.06);
  box-shadow: 0 12px 35px rgba(15, 15, 16, 0.05);
}

.why-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--color-muted);
}

.installation {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.installation-image {
  flex: 1 1 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 15, 16, 0.15);
}

.installation-text {
  flex: 1 1 320px;
}

.installation-text p {
  color: var(--color-muted);
  margin-bottom: 18px;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 12px;
}

.partners {
  background: #f1f1f3;
  text-align: center;
}

.partners p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--color-muted);
}

.faq {
  background: #ffffff;
}

.faq-list {
  max-width: 840px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
  padding-right: 24px;
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.contact {
  background: var(--color-offwhite);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(15, 15, 16, 0.12);
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 24px;
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(12, 12, 13, 0.12);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(203, 139, 62, 0.15);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
}

.footer {
  background: var(--color-slate);
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 24px;
  font-size: 0.9rem;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}

.footer small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.privacy {
  padding: 120px 24px;
  background: var(--color-offwhite);
}

.privacy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 16px;
  text-align: center;
}

.privacy p,
.privacy li {
  color: var(--color-muted);
}

.privacy article {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 15, 16, 0.08);
  border: 1px solid rgba(12, 12, 13, 0.06);
}

.privacy h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-top: 32px;
}

.privacy ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 96px 16px;
  }

  section {
    padding: 64px 16px;
  }

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

/* Netlify honeypot field */
.hidden { display: none !important; }

/* Safety: if any elements rely on [hidden], ensure they stay hidden */
[hidden] { display: none !important; }

.logo{display:flex;align-items:center;gap:.5rem}
.logo-mark{width:22px;height:22px}
.logo-type{height:18px}

/* If video can’t play, hide it and keep the poster background */
.hero.no-video .hero-video {
  display: none;
}

/* Respect reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.how-animation {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.how-video-wrap {
  position: relative;
  width: 100%;
  max-width: 560px; /* matches middle column feel */
}

.how-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.how-fallback {
  display: none; /* hidden unless video fails */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.how-video-wrap.no-video .how-video {
  display: none;
}

.how-video-wrap.no-video .how-fallback {
  display: block;
}

@media (max-width: 899px) {
  .how-video-wrap {
    max-width: 480px;
  }
}
