:root {
  --ink: #151515;
  --muted: #666a70;
  --paper: #f5f2eb;
  --surface: #ffffff;
  --line: #d9d4c9;
  --cyan: #009fbd;
  --magenta: #c92d68;
  --yellow: #e4b82f;
  --green: #4f745e;
  --charcoal: #202222;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #fff;
  border-radius: 7px;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101010;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44) 50%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  padding: 150px clamp(18px, 6vw, 78px) 88px;
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6.6vw, 7rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.2;
  font-weight: 800;
}

.hero-copy {
  width: min(690px, 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 4.6vw, 58px);
}

.section-heading .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-heading .section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-heading p:not(.section-label) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.audience-strip article {
  min-height: 168px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.audience-strip article:last-child {
  border-right: 0;
}

.audience-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--magenta);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-strip p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.print-section {
  background: var(--paper);
}

.print-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.print-list article {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.print-list span {
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 800;
}

.print-list h3 {
  margin-bottom: 0;
}

.print-list p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.materials {
  color: #fff;
  background: var(--charcoal);
}

.section-heading.light p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.material-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.material-card:last-child {
  border-right: 0;
}

.material-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.88;
  background-size: 80px 80px, cover;
}

.material-card h3,
.material-card p {
  position: relative;
}

.material-card h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
}

.material-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.acrylic::before {
  background:
    linear-gradient(135deg, rgba(0, 159, 189, 0.4), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, #dff8ff 0 2px, #7db7c5 2px 7px);
}

.aluminum::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.25), transparent 35%),
    repeating-linear-gradient(135deg, #73777a 0 8px, #a9acae 8px 16px);
}

.wood::before {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.1), rgba(20, 20, 20, 0.22)),
    repeating-linear-gradient(90deg, #8b6842 0 12px, #b3834d 12px 20px, #6e4f32 20px 28px);
}

.pvc::before {
  background:
    linear-gradient(135deg, rgba(201, 45, 104, 0.34), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(0deg, #242528 0 6px, #33363a 6px 12px);
}

.glass::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(0, 159, 189, 0.18) 38%, rgba(255, 255, 255, 0.08)),
    linear-gradient(45deg, #56707a, #a6d7e3);
}

.raised {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.58fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 45, 104, 0.82), rgba(0, 159, 189, 0.56)),
    #1b1c1f;
}

.raised-copy {
  width: min(780px, 100%);
}

.raised-copy p:not(.section-label) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.72;
}

.raised-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.raised-stat {
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.raised-stat strong {
  display: block;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.raised-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.raised-panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.raised-panel li {
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.raised-panel li:last-child {
  border-bottom: 0;
}

.process {
  background: var(--surface);
}

.workflow {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.workflow li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.workflow span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.quote {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 80px);
  background: var(--yellow);
}

.quote-content {
  width: min(820px, 100%);
}

.quote p {
  color: rgba(20, 20, 20, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.7;
}

.quote .section-label {
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .audience-strip,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .audience-strip article,
  .material-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .materials .material-card {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .print-list article,
  .workflow li {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .print-list h3 {
    grid-column: 2;
  }

  .print-list p {
    grid-column: 2;
  }

  .raised,
  .quote {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 13px;
    max-width: 245px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.12;
  }

  h3 {
    font-size: 1.08rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading .section-label {
    margin-bottom: 14px;
  }

  .section-heading .section-label::before {
    width: 24px;
  }

  .hero-copy,
  .section-heading p:not(.section-label),
  .raised-copy p:not(.section-label),
  .quote p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .audience-strip article,
  .material-card {
    min-height: 210px;
  }

  .print-list article,
  .workflow li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .print-list h3,
  .print-list p {
    grid-column: auto;
  }

  .raised-stat {
    padding: 24px;
  }

  .raised-panel li {
    padding: 14px 24px;
  }

  .quote {
    display: block;
  }

  .quote .button {
    width: 100%;
    margin-top: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
