:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --surface: #ffffff;
  --ink: #15191c;
  --muted: #59636b;
  --steel: #20282e;
  --steel-2: #303b42;
  --red: #d64632;
  --red-dark: #b93525;
  --clay: #9f4b2d;
  --green: #16824a;
  --sand: #d5c09b;
  --line: rgba(21, 25, 28, 0.12);
  --shadow: 0 20px 60px rgba(20, 25, 28, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(214, 70, 50, 0.45);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, var(--container));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(22, 27, 31, 0.42);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 27, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  background: var(--red);
  color: #ffffff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--steel);
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px max(22px, calc((100vw - var(--container)) / 2)) 76px;
  color: #ffffff;
  background: var(--steel);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.82), rgba(9, 11, 13, 0.36) 48%, rgba(9, 11, 13, 0.68)),
    linear-gradient(0deg, rgba(9, 11, 13, 0.76), rgba(9, 11, 13, 0.12) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb09f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 10ch;
  font-size: 4.5rem;
  font-weight: 950;
}

h2 {
  font-size: 2.45rem;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.products-section .button-secondary,
.contact-section .button-secondary {
  border-color: var(--steel);
  background: var(--steel);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.strip-item {
  min-height: 96px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--steel);
  color: #ffffff;
}

.strip-item:nth-child(2) {
  background: var(--clay);
}

.strip-item:nth-child(3) {
  background: var(--green);
}

.strip-item:nth-child(4) {
  background: #f0eee8;
  color: var(--steel);
}

.strip-item span,
.strip-item strong {
  display: block;
}

.strip-item span {
  font-size: 0.82rem;
  opacity: 0.78;
}

.strip-item strong {
  margin-top: 6px;
  font-size: 1.15rem;
}

.section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 94px 0;
}

.intro-section,
.proof-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.section-copy p,
.proof-copy p,
.contact-copy p,
.section-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy h2,
.section-heading h2,
.proof-copy h2,
.contact-copy h2 {
  max-width: 760px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.feature-list span {
  color: var(--red);
  font-weight: 950;
}

.feature-list h3 {
  margin-top: 36px;
}

.feature-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.products-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: #e8e3d7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-bottom: 0;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(21, 25, 28, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

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

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.category-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(21, 25, 28, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--steel);
  font-weight: 800;
}

.proof-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.proof-media img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-copy .button {
  margin-top: 18px;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: var(--steel);
  color: #ffffff;
}

.gallery-section .section-heading p,
.gallery-section .eyebrow {
  color: #ffb09f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.contact-section {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 74px 0;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-phone {
  display: inline-flex;
  min-width: min(100%, 290px);
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 25, 28, 0.1);
}

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

.contact-phone strong {
  color: var(--steel);
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - var(--container)) / 2));
  background: #111518;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    width: min(100% - 24px, var(--container));
    gap: 10px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(22, 27, 31, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  }

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

  .nav-links a {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-call {
    justify-self: end;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .quick-strip,
  .feature-list,
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto;
    margin-top: 10px;
    padding: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
  }

  .nav-toggle {
    justify-self: end;
  }

  .hero {
    min-height: 78svh;
    padding: 154px 20px 56px;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 11, 13, 0.86), rgba(9, 11, 13, 0.22) 60%),
      linear-gradient(90deg, rgba(9, 11, 13, 0.56), rgba(9, 11, 13, 0.18));
  }

  h1 {
    max-width: 9ch;
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text,
  .section-copy p,
  .proof-copy p,
  .contact-copy p,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .contact-phone {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .strip-item {
    min-height: 74px;
  }

  .section,
  .contact-section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .products-section,
  .gallery-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-heading {
    display: block;
  }

  .feature-list,
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    min-height: 0;
  }

  .feature-list h3 {
    margin-top: 20px;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
