* {
  box-sizing: border-box;
}

:root {
  --ink: #111111;
  --paper: #f4f1e8;
  --white: #ffffff;
  --orange: #ff4f00;
  --orange-dark: #d94300;
  --muted: #6d6d6d;
  --line: #dad5c8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-main {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.brand-sub {
  font-size: .88rem;
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 700;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--orange);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,79,0,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,79,0,.04) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.eyebrow.dark {
  color: #824022;
}

.hero h1,
.contact-hero h1,
.section h2,
.cta-section h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: .98;
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 8vw, 8rem);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 1.15rem;
  color: #383838;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .18s ease;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-light:hover {
  background: var(--paper);
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  font-size: .9rem;
  font-weight: 700;
}

.hero-art {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ink-shape {
  position: absolute;
  border-radius: 46% 54% 60% 40% / 52% 42% 58% 48%;
}

.ink-one {
  width: 390px;
  height: 390px;
  background: var(--orange);
  transform: rotate(-9deg);
}

.ink-two {
  width: 320px;
  height: 320px;
  border: 28px solid var(--ink);
  transform: rotate(17deg);
}

.shirt-card {
  position: relative;
  z-index: 2;
  width: 320px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 8px solid var(--ink);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(3deg);
  text-align: center;
}

.shirt-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: "Anton", Impact, sans-serif;
  font-size: 4rem;
  border-radius: 14px 14px 36px 36px;
}

.shirt-card strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: .02em;
}

.shirt-card span {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid #333;
}

.trust-grid div:first-child {
  border-left: 1px solid #333;
}

.trust-grid strong {
  font-size: 1.35rem;
}

.trust-grid span {
  color: #aaa;
  font-size: .85rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 46px;
}

.section h2,
.cta-section h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  max-width: 580px;
  color: #555;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.18);
}

.service-card:hover {
  background: var(--white);
}

.number {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 40px 0 10px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: #5b5b5b;
  font-size: .94rem;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rich-text {
  color: #c8c8c8;
  font-size: 1.03rem;
}

.rich-text p:first-child {
  margin-top: 0;
}

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

.steps article {
  padding-top: 26px;
  border-top: 4px solid var(--ink);
}

.steps span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.steps h3 {
  margin: 22px 0 10px;
}

.steps p {
  color: #5d5d5d;
  font-size: .92rem;
}

.area-section {
  background: var(--orange);
  color: var(--white);
}

.area-section .eyebrow {
  color: #2c150b;
}

.area-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.area-grid p {
  max-width: 620px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.42);
  border-left: 1px solid rgba(255,255,255,.42);
}

.city-list span {
  padding: 18px 14px;
  border-right: 1px solid rgba(255,255,255,.42);
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-size: .9rem;
  font-weight: 700;
}

.faq-wrap {
  max-width: 900px;
}

.faq-wrap > h2 {
  margin-bottom: 35px;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.05rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 760px;
  color: #606060;
}

.cta-section {
  background: var(--orange);
  color: var(--white);
  padding: 65px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-section .eyebrow {
  color: #271108;
}

.site-footer {
  background: #0b0b0b;
  color: var(--white);
  padding: 70px 0 25px;
}

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

.footer-brand {
  margin-bottom: 15px;
}

.footer-grid h3 {
  margin: 0 0 13px;
  font-size: .9rem;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 6px 0;
  color: #aaa;
  font-size: .88rem;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #292929;
  color: #6f6f6f;
  font-size: .8rem;
}

/* Contact */
.contact-hero {
  padding: 100px 0 80px;
  background: var(--ink);
  color: var(--white);
}

.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 7vw, 7rem);
  text-transform: uppercase;
}

.contact-hero p:last-child {
  max-width: 760px;
  color: #c5c5c5;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-list {
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.contact-list li::before {
  content: "→";
  margin-right: 10px;
  color: var(--orange);
}

.contact-callout {
  margin-top: 35px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.contact-callout p {
  margin-bottom: 0;
  color: #bbb;
  font-size: .9rem;
}

.quote-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-heading span {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.form-heading h2 {
  margin: 8px 0 28px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.8rem;
  text-transform: none;
  letter-spacing: -.03em;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  margin-bottom: 16px;
  font-size: .82rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #c9c4b9;
  border-radius: 0;
  background: #faf9f5;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--orange);
  border-color: transparent;
}

.form-note {
  margin-bottom: 0;
  color: #777;
  font-size: .75rem;
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    padding: 24px 20px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .hero-grid,
  .section-heading,
  .split,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-art {
    min-height: 420px;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    top: 70px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .hero-art {
    transform: scale(.86);
    margin: -20px 0;
  }

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

  .trust-grid div {
    border-bottom: 1px solid #333;
  }

  .section {
    padding: 78px 0;
  }

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

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

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 24px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .contact-hero {
    padding: 75px 0 60px;
  }
}
