:root {
  --navy: #121920;
  --navy-2: #1a2633;
  --ink: #1c242c;
  --muted: #5d6a75;
  --paper: #f3f1ec;
  --white: #ffffff;
  --green: #0d6a3a;
  --red: #c1272d;
  --line: rgba(18, 25, 32, 0.12);
  --shadow: 0 18px 50px rgba(18, 25, 32, 0.12);
  --radius: 18px;
  --header: 86px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1rem;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 2.4rem), var(--max));
  margin-inline: auto;
}

.tricolor {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0 33.33%, var(--white) 33.33% 66.66%, var(--red) 66.66%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

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

.btn-primary:hover {
  background: #09552e;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

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

.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 4px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 0.2rem 0.4rem;
}

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

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

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100svh - 90px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 22, 0.88) 0%, rgba(12, 16, 22, 0.55) 52%, rgba(12, 16, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 16, 22, 0.15), rgba(12, 16, 22, 0.55));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 2rem;
  padding: 5rem 0 4rem;
}

.lead {
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-panel dd {
  margin: 0.2rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 1rem 0;
  animation: scroll 28s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-track span {
  opacity: 0.78;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head p:last-child {
  color: var(--muted);
}

.about {
  background: var(--paper);
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px 28px 4px 28px;
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  padding: 0.9rem 1.1rem;
  border-left: 4px solid var(--green);
}

.about-badge strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.checklist {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 9px;
  height: 9px;
  background: var(--green);
}

.product-grid,
.why-list,
.location-grid {
  display: grid;
  gap: 1.1rem;
}

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

.product-card,
.why-list article,
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.product-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-index {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

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

.brands {
  margin-top: auto;
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.why .eyebrow {
  color: #79c49a;
}

.why p {
  color: rgba(255, 255, 255, 0.78);
}

.why-list {
  grid-template-columns: 1fr 1fr;
}

.why-list article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.why-list h3 {
  margin-bottom: 0.4rem;
}

.locations {
  background: var(--paper);
}

.location-card--accent {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.location-card--accent .text-link {
  color: #79c49a;
}

.loc-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.location-card--accent .loc-label {
  color: #79c49a;
}

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

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}

.contact-details li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact-details span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-details a {
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  position: relative;
  background: var(--paper);
  padding: 1.6rem;
  border-radius: var(--radius);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.82rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.form-note {
  margin: 0.9rem 0 0;
  font-weight: 600;
}

.form-note.is-ok {
  color: var(--green);
}

.form-note.is-error {
  color: var(--red);
}

.form-debug {
  margin: 0.8rem 0 0;
  max-height: 220px;
  overflow: auto;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #121920;
  color: #d7e0d4;
  font-size: 0.75rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.site-footer {
  background: #0d1318;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.2rem 0 1.4rem;
}

.footer-logo {
  height: 52px;
  background: var(--white);
  padding: 0.2rem 0.45rem;
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.1rem;
  font-size: 0.88rem;
}

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

  .site-nav {
    position: absolute;
    top: calc(var(--header) + 4px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 0.6rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .product-grid,
  .why-list,
  .location-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 340px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 4.5rem;
  }
}
