:root {
  --bg-main: #050505;
  --bg-alt: #111111;
  --bg-footer: #3f3f42;
  --accent: #008f82; /* deep teal */
  --accent-soft: #0fb4a5;
  --text-main: #f5f5f5;
  --text-muted: #c3c3c3;
  --border-soft: rgba(255, 255, 255, 0.08);
}

/* RESET-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 18px; /* bigger everywhere */
}

/* HEADINGS (match current site vibe) */
.hero-title,
.page-hero-inner h1,
.contact-hero-content h1,
.service-card h2,
.footer-heading {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400; /* Bebas only has one weight */
  letter-spacing: 0.08em;
}

.nav-link {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

/* UTILITIES */
.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.narrow {
  max-width: 680px;
  margin-inline: auto;
}

/* HEADER / NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  padding-block: 0.6rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 96px; /* bigger logo */
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
  text-decoration: none;
  opacity: 0.82;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-soft);
  transition: width 0.18s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Remove underline from Contact Us button */
.nav-cta::after {
  display: none;
}

.nav-cta {
  opacity: 1;
}

.nav-cta {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
}

.nav-cta.active {
  background: var(--accent-soft);
  color: #000;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

/* full video, no shading */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-for-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 36vh;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

.hero-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(3rem, 4vw + 1rem, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.12s ease;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

/* PROUDLY MADE IN CANADA — HERO */
.made-in-canada-hero {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.made-in-canada-hero img {
  height: 70px;
  margin-bottom: 0.25rem;
}

.made-in-canada-hero span {
  display: block;
  text-align: center;
  font-family: "Train One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: white;
  -webkit-text-stroke: 0.8px black;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 0 0 7px rgba(0, 0, 0, 0.7);
}

.made-in-canada-hero span + span {
  margin-top: -0.2rem;
}

/* HOME CONTACT STRIP */
.home-contact-strip {
  background: #000;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-block: 1.3rem;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.strip-item {
  display: flex;
  flex-direction: column;
}

.strip-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.strip-value {
  font-size: 1rem;
}

.strip-value a,
.strip-item a.strip-value {
  color: var(--accent-soft);
  text-decoration: none;
}

/* PAGE HERO (About/Services) */
.page-hero {
  background: linear-gradient(to bottom, #000, #111);
  padding-top: 120px;
  padding-bottom: 60px;
}

.small-hero {
  padding-bottom: 40px;
}

.page-hero-inner h1 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* GENERIC PAGE SECTIONS */
.page-section {
  padding-block: 3.5rem;
  background: var(--bg-main);
}

.page-section p {
  margin-bottom: 1.1rem;
}

/* Small “almost nothing” line */
.tiny-line {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* SERVICES GRID */
.section-intro {
  text-align: center;
  margin-bottom: 2.2rem;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.service-card h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.98rem;
}

.service-extra {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.cta-panel {
  margin-top: 3rem;
  text-align: center;
}

.cta-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

/* CONTACT HERO IMAGE SECTION */
.contact-hero {
  position: relative;
  margin-top: 96px; /* account for fixed header */
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  min-height: 320px;
  background: #000;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  color: #fff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), #000);
}

.contact-hero-content h1 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.contact-hero-content p {
  font-size: 1.05rem;
}

/* CONTACT FORM */
.form-container {
  max-width: 720px;
}

.contact-form {
  background: #101010;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-soft);
  padding: 2.2rem 2.4rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.form-row label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050505;
  color: #fff;
  font-size: 1rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
}

.form-actions {
  text-align: right;
  margin-top: 0.6rem;
}

/* FOOTER */
.site-footer {
  background: var(--bg-footer);
  color: #fff;
  padding-block: 2.4rem;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-heading {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.footer-list {
  list-style: none;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.footer-list a {
  color: var(--accent-soft);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.9rem;
  color: #ddd;
}

/* PROUDLY MADE IN CANADA — FOOTER */
.made-in-canada-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.made-in-canada-footer img {
  height: 46px;
  margin-bottom: 0.25rem;
}

.made-in-canada-footer span {
  display: block;
  text-align: center;
  font-family: "Train One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: white;
}

/* FOOTER STRIP (Amanda-style) — add-on */
.site-footer.footer-strip {
  background: #000;
  padding-block: 1.2rem;
}

.footer-strip .footer-inner {
  align-items: center;
}

.footer-strip .footer-heading {
  /* matches that “We Ship Worldwide…” vibe */
  font-family: serif;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.footer-strip .footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.8rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.footer-strip .footer-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-strip .footer-list img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Right badge sizing (bigger like the current site) */
.footer-strip .made-in-canada-footer img {
  height: 70px; /* bump this */
}

.footer-strip .made-in-canada-footer span {
  font-size: 1.05rem; /* bump this */
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.05;
}

/* Mobile: stack nicely */
@media (max-width: 900px) {
  .footer-strip .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-strip .made-in-canada-footer {
    align-self: flex-end;
  }

  .footer-strip .footer-heading {
    font-size: 1.35rem;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    padding-top: 44vh;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-content {
    padding: 2.2rem 1.7rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-block: 0.4rem;
    background: rgba(0, 0, 0, 0.92);
  }

  .logo img {
    height: 80px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.3rem 1rem;
    gap: 0.8rem;
    border-bottom-left-radius: 14px;
    border-left: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-14px);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 48vh;
  }

  .made-in-canada-hero {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .home-contact-strip {
    padding-block: 1rem;
  }

  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 1.8rem 1.5rem;
  }
}

/* ================================
   FOOTER STRIP (match current site)
================================ */

.footer-strip {
  background: #000;
  padding: 1.2rem 0;
}

.footer-strip .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Headline: We Ship Worldwide */
.footer-strip .footer-title {
  font-family: serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.footer-strip .footer-title a {
  color: #fff;
  text-decoration: none;
}

/* Contact list */
.footer-contact {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-contact img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* PROUDLY MADE IN CANADA (RIGHT SIDE) */
.footer-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Maple leaf */
.footer-canada-img {
  height: 78px; /* 🔥 BIGGER */
  width: auto;
}

/* Text stack */
.footer-canada-text {
  font-family: "Train One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem; /* 🔥 BIGGER */
  line-height: 1.05;
  color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-strip .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-self: flex-end;
  }

  .footer-strip .footer-title {
    font-size: 1.35rem;
  }

  .footer-canada-img {
    height: 64px;
  }

  .footer-canada-text {
    font-size: 0.95rem;
  }
}
/* Canada badge text – match MDL */
.footer-canada-text div {
  font-family: "Train One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
  line-height: 1.1;
  color: #ffffff;
}
