﻿:root {
  --navy: #091a2e;
  --blue: #153e59;
  --teal: #39758a;
  --aqua: #7dbfc9;
  --cream: #f7f4ec;
  --mist: #dfecef;
  --copy: #526271;
  --line: #bac4c7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
}

.bg-cream {
  background: var(--cream);
}

.bg-mist {
  background: var(--mist);
}

.site-container {
  padding-left: 4.45vw;
  padding-right: 4.45vw;
}

.navbar {
  min-height: 86px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(9, 26, 46, 0.05);
}

.navbar-brand,
.footer-brand {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.navbar .nav-link {
  color: var(--navy);
  font-size: 0.875rem;
  padding: 0.65rem 0.45rem;
}

.navbar .nav-link:hover {
  color: var(--teal);
}

.btn {
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.72rem 1.25rem;
}

.btn-brand {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-outline-brand {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-brand:hover {
  background: var(--blue);
  color: #fff;
}

.hero-copy {
  min-height: 640px;
  padding: 72px 3.9vw 72px 5vw;
}

.hero-image,
.model-image {
  min-height: 640px;
  background: center/cover no-repeat;
  position: relative;
}

.hero-image {
  background-image: linear-gradient(rgba(9, 26, 46, 0.08), rgba(9, 26, 46, 0.08)), url("/assets/hero-lg.webp");
}

.eyebrow {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 1.35rem;
}

.hero h1,
.display-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3rem, 4.6vw, 4.125rem);
  max-width: 630px;
  margin-bottom: 1.4rem;
}

.hero-lead {
  color: var(--copy);
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 600px;
}

.strengths {
  background: var(--navy);
}

.strength {
  min-height: 130px;
  padding: 36px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strength:last-child {
  border-right: 0;
}

.strength h2,
.category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.strength p {
  color: var(--aqua);
  font-size: 0.75rem;
  margin: 0;
}

.section {
  padding: 88px 0;
}

.display-heading {
  font-size: clamp(2.65rem, 3.4vw, 3rem);
  max-width: 680px;
}

.body-copy {
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.55;
}

.category {
  height: 190px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.category:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 26, 46, 0.42);
}

.category h3 {
  color: #fff;
  margin: 0;
  position: relative;
}

.category-electronics{
  background-image: url("/assets/electronics.jpg");
}
.category-toys {
  background-image: url("/assets/toys.jpg");
}

.category-gadgets {
  background-image: url("/assets/gadgets.jpg");
}

.category-novelty{
  background-image: url("/assets/novelty.jpg");
}
.model-image {
  background-image: linear-gradient(rgba(9, 26, 46, 0.12), rgba(9, 26, 46, 0.12)), url("/assets/harbor-lg.webp");
}

.model-section {
  background: var(--navy);
}

.model-copy {
  padding: 68px 5vw;
}

.eyebrow-light {
  color: var(--aqua);
}

.model-intro {
  color: #bacfd9;
  line-height: 1.55;
  max-width: 630px;
}

.model-steps {
  max-width: 630px;
}

.model-steps li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px 0;
}

.model-steps span {
  color: var(--aqua);
  font-size: 0.75rem;
}

.model-steps strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.capability {
  min-height: 180px;
  border: 1px solid var(--line);
  padding: 28px;
  margin: -0.5px;
}

.capability h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.capability p {
  color: var(--copy);
  font-size: 0.94rem;
  max-width: 590px;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details dt,
.inquiry-form label {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0.6rem 0 1.6rem;
}

.contact-details a {
  color: var(--navy);
  text-decoration: none;
}

.inquiry-form {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
}

.form-control {
  border-color: #c9d0d2;
  border-radius: 2px;
  padding: 0.72rem 0.9rem;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(57, 117, 138, 0.14);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.site-footer {
  background: var(--navy);
  padding: 42px 0 28px;
}

.site-footer p,
.footer-bottom {
  color: #bacfd9;
  font-size: 0.8rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

@media (max-width: 991.98px) {
  .site-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .navbar-collapse {
    padding: 18px 0 4px;
  }

  .hero-copy {
    min-height: auto;
    padding: 72px 28px;
  }

  .hero-image,
  .model-image {
    min-height: 480px;
  }

  .section {
    padding: 72px 0;
  }

  .model-copy {
    padding: 64px 28px;
  }

  .categories .category {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 74px;
  }

  .navbar {
    min-height: 74px;
  }

  .strength {
    min-height: auto;
    padding: 28px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-copy {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-image,
  .model-image {
    min-height: 360px;
  }

  .section {
    padding: 58px 0;
  }

  .capability {
    min-height: auto;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .inquiry-form {
    padding: 22px;
  }
}

@media (max-width: 575.98px) {
  .site-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .display-heading {
    font-size: 2.4rem;
  }

  .hero-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .category {
    height: 210px;
  }

  .footer-bottom nav {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
