:root {
  --orange: #c7642f;
  --orange-strong: #a94f22;
  --charcoal: #454545;
  --ink: #202020;
  --muted: #6a6762;
  --cream: #f7f3ec;
  --sand: #efe6db;
  --mint: #eaf3ee;
  --line: #ded7cc;
  --white: #fff;
  --shadow: 0 18px 55px rgba(32, 32, 32, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(69, 69, 69, .12);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(142px, 18vw, 220px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-footer .brand-logo {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: .94rem;
}

.nav-links a {
  padding: .5rem .1rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--orange-strong);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(32, 32, 32, .22);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.hero::before,
.dark-band::before {
  content: "";
  position: absolute;
  inset: auto -14vw -30vw auto;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(199, 100, 47, .22) 0 2px, transparent 2px 21px);
  opacity: .72;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 46px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 7vw, 5.85rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: -20px;
  bottom: 22px;
  max-width: 245px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.hero-note span {
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--orange-strong);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.brand-pill,
.category-card,
.product-card,
.value-card,
.office-card,
.stat-card,
.testimonial,
.form-card {
  border: 1px solid rgba(69, 69, 69, .12);
  border-radius: var(--radius);
  background: var(--white);
}

.brand-pill {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px 12px;
  text-align: center;
  font-weight: 900;
  color: var(--charcoal);
}

.brand-pill:hover,
.category-card:hover,
.product-card:hover {
  border-color: rgba(199, 100, 47, .5);
  transform: translateY(-2px);
}

.grid-3,
.grid-2,
.product-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.value-card,
.category-card,
.product-card,
.office-card,
.stat-card,
.testimonial,
.form-card {
  padding: 24px;
}

.value-card:nth-child(2),
.category-card:nth-child(2n) {
  background: var(--mint);
}

.value-card:nth-child(3),
.category-card:nth-child(3n) {
  background: var(--sand);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange-strong);
  font-weight: 900;
}

.stat-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.stat-card:nth-child(2) {
  background: var(--charcoal);
}

.stat-card strong {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .9;
  letter-spacing: 0;
}

.stat-card span {
  max-width: 360px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.dark-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.dark-band::before {
  inset: -26vw auto auto -18vw;
  opacity: .2;
}

.dark-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dark-band p {
  max-width: 610px;
  color: rgba(255, 255, 255, .72);
}

.testimonial {
  background: var(--white);
}

.quote {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.12;
  font-weight: 850;
}

.person {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: .65rem .92rem;
  font-weight: 800;
  color: var(--charcoal);
}

.category-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card ul,
.product-card ul,
.office-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: .35rem .62rem;
  background: var(--cream);
  color: var(--charcoal);
  font-size: .78rem;
  font-weight: 850;
}

.product-card .button {
  margin-top: auto;
  width: fit-content;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--charcoal);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem .9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(69, 69, 69, .35);
  border-radius: var(--radius);
  color: var(--muted);
  background: linear-gradient(135deg, var(--white), var(--sand));
  text-align: center;
  padding: 24px;
  font-weight: 800;
}

.map-frame {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  background: var(--sand);
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr 1fr;
  gap: 28px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, .74);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-title {
  color: var(--white);
  font-weight: 900;
}

.copyright {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links .button {
    width: 100%;
    justify-content: flex-start;
    padding: .9rem;
  }

  .hero-grid,
  .split,
  .dark-band .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .brand-strip,
  .grid-3,
  .grid-2,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dark-band .container {
    display: grid;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 60px 0;
  }

  .brand-logo {
    width: 142px;
    max-height: 50px;
  }

  .hero-note {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .brand-strip,
  .grid-3,
  .grid-2,
  .product-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
