@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Sans+3:wght@400;600&display=swap");

:root {
  --navy: #141617;
  --ink: #212326;
  --blue: #198fd9;
  --blue-hot: #0f7bc0;
  --off: #f9f9fb;
  --line: #e4e6ea;
  --muted: #5c6168;
  --text: #212326;
  --white: #fff;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.family-logo {
  width: min(100%, 22rem);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand img {
  height: 48px;
  width: auto;
}

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

.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 4px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 2px;
  border: 1px solid transparent;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-hot);
}

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

.btn-ghost {
  border-color: var(--line);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(20, 22, 23, 0.88), rgba(20, 22, 23, 0.55)),
    url("../images/shop.jpg") center / cover no-repeat;
}

.hero p {
  max-width: 46rem;
  color: #d7dbe0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.section {
  padding: 3.75rem 0;
}

.section.alt {
  background: var(--off);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card .body {
  padding: 1.15rem 1.2rem 1.3rem;
}

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

.usa {
  height: 48px;
  width: auto;
  margin-top: 1rem;
}

.job {
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  background: var(--white);
}

.form {
  display: grid;
  gap: 0.85rem;
  background: var(--off);
  border: 1px solid var(--line);
  padding: 1.4rem;
}

.form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  font: inherit;
}

.form textarea {
  min-height: 110px;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  background: var(--navy);
  color: #c5c9ce;
  padding: 2rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.8rem 1.2rem;
  }
}
