:root {
  --ink: #111111;
  --coal: #202020;
  --paper: #f7f5f0;
  --white: #ffffff;
  --muted: #69645d;
  --line: rgba(17, 17, 17, 0.12);
  --teal: #05878d;
  --red: #d94b3a;
  --gold: #e3aa35;
  --shadow: 0 20px 55px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(142px, 15vw, 190px);
  height: 50px;
  padding: 0.35rem 0.6rem;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(720px, calc(100svh - 150px));
  padding: clamp(4.5rem, 8vw, 8rem) 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 44%, rgba(0, 0, 0, 0.12) 100%),
    url("assets/blaq-hero-web.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--red), var(--gold));
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4.25rem, 14vw, 10.5rem);
  line-height: 0.82;
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow) {
  width: min(610px, 100%);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(217, 75, 58, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b93c2e;
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  display: grid;
  gap: 0.35rem;
  min-height: 108px;
  padding: 1.4rem 5vw;
  background: var(--white);
}

.quick-strip strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.quick-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 5vw;
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  width: min(840px, 100%);
  margin: 0 0 clamp(2rem, 4vw, 3.25rem);
}

.section-heading p:not(.eyebrow) {
  width: min(690px, 100%);
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading.compact {
  width: min(620px, 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e8e5dd;
}

.product-card-body {
  display: grid;
  min-height: 190px;
  padding: 1.25rem;
}

.product-card-body span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card-body p {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.78)),
    url("assets/custom-shirts-web.jpg") center / cover no-repeat;
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.custom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.custom-list div {
  display: grid;
  gap: 0.55rem;
  min-height: 150px;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.34);
}

.custom-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-step {
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
}

.process-step span {
  width: fit-content;
  margin-bottom: 2rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  background: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  font-weight: 800;
}

.contact-details a {
  width: fit-content;
  border-bottom: 2px solid var(--gold);
}

.quote-form {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--coal);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  outline: none;
}

.quote-form textarea {
  min-height: 128px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(5, 135, 141, 0.16);
}

.form-note {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2rem 5vw;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(210px, 48vw);
  height: 58px;
  padding: 0.45rem 0.7rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-info {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
  text-align: right;
}

.site-footer p {
  margin: 0;
}

.site-footer address {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.55;
}

.footer-ctas {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 0.75rem;
  width: min(900px, 100%);
}

.footer-cta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 74px;
  padding: 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-cta svg {
  width: 34px;
  height: 34px;
  padding: 0.42rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-cta span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.footer-cta strong {
  font-size: 0.9rem;
}

.footer-cta small {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 5vw 1rem;
    background: rgba(17, 17, 17, 0.96);
  }

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

  .site-nav a {
    padding: 0.9rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 5.25rem;
    padding-bottom: 5.5rem;
    background-position: 61% center;
  }

  h1 {
    font-size: clamp(3.9rem, 21vw, 6.5rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .process-grid,
  .custom-list {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-info {
    justify-items: start;
    text-align: left;
  }

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

@media (max-width: 420px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    width: 132px;
    height: 44px;
    padding: 0.3rem 0.5rem;
  }

  .section,
  .hero,
  .quick-strip div,
  .site-footer {
    padding-inline: 1rem;
  }

  .btn {
    padding-inline: 0.9rem;
  }

  .footer-ctas {
    grid-template-columns: 1fr;
  }
}
