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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  line-height: 1.5;
}

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

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

/* -------------------------
   Layout tokens
------------------------- */
.container {
  width: min(1100px, 90%);
  margin-inline: auto;
}

/* -------------------------
   Header / Nav
------------------------- */
/* .site-header {
  border-bottom: 1px solid #eee;
} */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* -------------------------
   Hero
------------------------- */
.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.25rem;
  max-width: 42ch;
  margin: 1rem 0;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 2rem;
}

.hero-bullets li {
  background: #f3f3f3;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-media video {
  display: block;
  border-radius: 6px;
  max-height: 360px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-bullets {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #111; /* dark background */
  color: #fff;            /* white text */
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;  /* removes underline if <a> */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background-color: #333; /* subtle hover effect */
  color: #fff;
}


/* -------------------------
   Section
------------------------- */
.section {
  padding: 2rem 0; /* reduced padding */
}

.section h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* -------------------------
   Footer
------------------------- */
.site-footer {
  /* border-top: 1px solid #eee; */
  padding: 2rem 0;
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center; /* fixes vertical alignment */
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  line-height: 1;
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* reduces hero image/text gap on mobile */
  }

  .section {
    padding-top: 1.5rem;
  }

  .section h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }
}

/* -------------------------
   Contact form
------------------------- */

.contact-form {
  max-width: 480px;
  margin: 0 auto;           /* center on page */
  display: grid;
  gap: 1rem;                /* spacing between inputs */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  resize: vertical;         /* allows textarea to grow vertically */
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #333;
}

/* Responsive tweaks for small screens */
@media (max-width: 480px) {
  .contact-form {
    padding: 0 1rem;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  order: -1; /* Ensures logo stays first */
}

.logo img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}