:root {
  --ink: #15191e;
  --muted: #5e625f;
  --cream: #f7f1e4;
  --cream-2: #fffaf0;
  --orange: #ff8508;
  --orange-dark: #d96700;
  --green: #6e9638;
  --line: #201f1d;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(29, 25, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255,133,8,.11), transparent 28rem),
    linear-gradient(180deg, var(--cream-2), #f3eadb 75%, #eee2d0);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255,250,240,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32,31,29,.12);
}
.brand img { width: 190px; height: 72px; object-fit: contain; object-position: left center; }
.text-link {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
  border-bottom: 3px solid var(--orange);
}

.section-pad { padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 90px); }
.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .17em;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { max-width: 760px; font-size: clamp(3.35rem, 7.2vw, 7.4rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); margin-bottom: 28px; }
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 2px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font: 800 .9rem/1 Inter, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
}
.btn-primary { color: white; background: var(--ink); box-shadow: 7px 7px 0 var(--orange); }
.btn-primary:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--orange); }
.btn-secondary { background: var(--cream-2); }
.service-area { color: var(--muted); font-size: .95rem; }
.card-art {
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow), 14px 14px 0 var(--green);
}
.card-art img { width: 100%; height: 100%; object-fit: contain; background: white; }
.hero-art { aspect-ratio: 1.18; }

.services { background: var(--ink); color: white; }
.services .eyebrow { color: #b8d778; }
.section-heading { max-width: 900px; margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.service-grid span { color: var(--orange); font-weight: 800; }
.service-grid h3 { margin: 76px 0 14px; font-size: 1.35rem; }
.service-grid p { color: #c8c9c6; line-height: 1.65; }

.story { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(36px, 7vw, 92px); }
.story-art { aspect-ratio: 1.1; box-shadow: var(--shadow), -14px 14px 0 var(--orange); }
.story-copy > p { color: var(--muted); font-size: 1.13rem; line-height: 1.7; }
.story ol { padding-left: 1.25rem; }
.story li { margin: 18px 0; color: var(--muted); line-height: 1.6; }
.story strong { color: var(--ink); }

.request {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(35px, 7vw, 90px);
  background: #f1e4cf;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.request-copy p { color: var(--muted); line-height: 1.65; }
.request-copy img { margin-top: 30px; border-radius: 24px; border: 2px solid var(--line); background: white; }
.project-form {
  padding: clamp(24px, 4vw, 46px);
  border: 3px solid var(--line);
  border-radius: 24px;
  background: var(--cream-2);
  box-shadow: 12px 12px 0 var(--orange);
}
.project-form label { display: grid; gap: 9px; margin-bottom: 20px; font-weight: 700; }
.project-form input, .project-form textarea {
  width: 100%;
  border: 2px solid #b7ac9c;
  border-radius: 10px;
  background: white;
  padding: 14px 15px;
  font: 500 1rem/1.4 Inter, sans-serif;
  color: var(--ink);
}
.project-form input:focus, .project-form textarea:focus { outline: 3px solid rgba(255,133,8,.24); border-color: var(--orange-dark); }
.file-field small { color: var(--muted); font-weight: 500; }
.checkbox { grid-template-columns: auto 1fr; align-items: start; font-weight: 500 !important; line-height: 1.5; }
.checkbox input { width: 20px; height: 20px; margin-top: 1px; }
.submit { width: 100%; }
.form-note { margin: 20px 0 0; text-align: center; color: var(--muted); }
.form-note a { font-weight: 800; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px clamp(20px, 6vw, 90px);
  background: var(--ink);
  color: white;
}
footer p { margin: 6px 0; color: #c9cac8; }
.footer-title { color: white; font-weight: 800; }
.footer-links { display: grid; gap: 10px; text-align: right; }
.footer-links a { color: white; font-weight: 700; }

@media (max-width: 980px) {
  .hero, .story, .request { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .request-copy img { max-width: 700px; }
}

@media (max-width: 620px) {
  .topbar { padding: 10px 16px; }
  .brand img { width: 128px; height: 52px; }
  .text-link { font-size: .78rem; }
  .section-pad { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 220px; }
  .service-grid h3 { margin-top: 44px; }
  .card-art { border-radius: 18px; box-shadow: 8px 8px 0 var(--green); }
  .story-art { box-shadow: -8px 8px 0 var(--orange); }
  .project-form { box-shadow: 7px 7px 0 var(--orange); }
  footer { flex-direction: column; }
  .footer-links { text-align: left; }
}
