:root{
  --charcoal: #1a1a1a;
  --charcoal-raised: #212120;
  --off-white: #f7f7f5;
  --off-white-dim: #a3a19b;
  --orange: #d97706;
  --steel: #3a3a38;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --content-width: 46rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--charcoal);
  color: var(--off-white);
  font-family: 'Work Sans', sans-serif;
}

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

a { color: inherit; }

/* ---------- NAV ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gap);
  border-bottom: 1px solid var(--steel);
  flex-wrap: wrap;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-nav .brand img {
  width: 2.75rem;
  height: 2.75rem;
}

.site-nav .brand span {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav .nav-links {
  display: flex;
  gap: clamp(0.85rem, 2.4vw, 1.6rem);
  flex-wrap: wrap;
}

@media (max-width: 30rem) {
  .site-nav .brand span { display: none; }
  .site-nav { justify-content: space-between; }
  .site-nav .nav-links { gap: 0.9rem 1.1rem; }
}

.site-nav .nav-links a {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white-dim);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-right: 1.2rem;
}

.site-nav .nav-links a:last-child { margin-right: 0; }

.site-nav .nav-links a:hover,
.site-nav .nav-links a[aria-current="page"] {
  color: var(--off-white);
  border-color: var(--orange);
}

/* ---------- LAYOUT ---------- */

main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) var(--gap);
}

.eyebrow {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.9rem;
}

h1.page-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
  max-width: 24ch;
}

.lede {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--off-white-dim);
  line-height: 1.7;
  max-width: 42ch;
  margin: 0 0 3rem;
}

section + section { margin-top: clamp(3rem, 8vw, 4.5rem); }

h2.section-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: 0 0 1.5rem;
}

p.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--off-white-dim);
  margin: 0 0 1.2rem;
}

p.body-text strong { color: var(--off-white); font-weight: 500; }

/* ---------- DIVIDER (signature blade-cut) ---------- */

.cut {
  width: 100%;
  max-width: 18rem;
  height: 12px;
  margin: 0 0 2.4rem;
}
.cut svg { width: 100%; height: 100%; display: block; }
.cut path { stroke: var(--steel); stroke-width: 1; fill: none; }
.cut circle { fill: var(--orange); }

/* ---------- PROCESS STEPS ---------- */

.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--steel);
}

.process-step:last-child { border-bottom: 1px solid var(--steel); }

.process-step .num {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--orange);
}

.process-step h3 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--off-white-dim);
  line-height: 1.65;
  margin: 0;
}

/* ---------- CARD GRID ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--charcoal-raised);
  border: 1px solid var(--steel);
  padding: 1.5rem;
}

.card h3 {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  color: var(--off-white);
}

.card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--off-white-dim);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CONTACT FORM ---------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 32rem;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white-dim);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--charcoal-raised);
  border: 1px solid var(--steel);
  color: var(--off-white);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.75rem 0.9rem;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form .hp-field { display: none; }

.contact-form button {
  align-self: flex-start;
}

.form-note {
  font-size: 0.82rem;
  color: var(--off-white-dim);
  margin-top: 1.1rem;
}

.form-error {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid var(--orange);
  color: var(--off-white);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  max-width: 32rem;
}

/* ---------- BUTTON ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  background: var(--orange);
  padding: 0.9rem 1.6rem;
  border: none;
  transition: filter 0.2s ease;
}

.btn:hover { filter: brightness(1.1); }

.btn-ghost {
  color: var(--off-white);
  background: transparent;
  border: 1px solid var(--steel);
}

.btn-ghost:hover { border-color: var(--orange); filter: none; }

/* ---------- REVIEWS ---------- */

.review-card {
  background: var(--charcoal-raised);
  border: 1px solid var(--steel);
  padding: 1.6rem;
}

.review-card .stars {
  color: var(--orange);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.review-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.65;
  margin: 0 0 0.9rem;
}

.review-card .author {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white-dim);
}

.reviews-note {
  border: 1px dashed var(--steel);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--off-white-dim);
  margin-top: 2rem;
}

/* ---------- HERO (home) ---------- */

.hero {
  text-align: center;
  padding-top: clamp(2rem, 6vw, 3.5rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero .wordmark {
  width: min(100%, 36rem);
  margin: 0 auto 1.6rem;
}

.hero .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 30ch;
}

.hero .cut { margin-left: auto; margin-right: auto; }

/* ---------- FOOTER ---------- */

footer.site-footer {
  border-top: 1px solid var(--steel);
  padding: 2rem var(--gap) 2.5rem;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white-dim);
  transition: color 0.2s ease;
  margin-right: 1.2rem;
}

.footer-links a:last-child { margin-right: 0; }

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.08em;
}

.footer-bottom a { color: var(--steel); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
