/* ===== Design tokens ===== */
:root {
  --moss: #2B3A2E;
  --brass: #C89B3C;
  --rust: #B5451B;
  --paper: #EFE9DC;
  --ink: #23201B;
  --paper-line: rgba(35, 32, 27, 0.15);

  --font-display: "Big Shoulders", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-tag: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--moss);
  border-bottom: 3px solid var(--brass);
  display: inline-block;
  padding-bottom: 0.2em;
  margin-bottom: 1.5em;
}

/* ===== Header ===== */
.site-header {
  background: var(--moss);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--paper);
}
.brand-mark {
  font-family: var(--font-mono);
  background: var(--brass);
  color: var(--ink);
  padding: 0.25em 0.5em;
  border-radius: var(--radius-tag);
  font-weight: 700;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
}
.site-nav {
  display: none;
}
.site-nav a {
  color: var(--paper);
  text-decoration: none;
  margin-left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
}
@media (min-width: 800px) {
  .site-nav { display: block; }
}
.call-button {
  background: var(--rust);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-mono);
  padding: 0.55em 1em;
  border-radius: var(--radius-tag);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Persistent mobile call bar */
.call-bar {
  display: block;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--rust);
  color: var(--paper);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-mono);
  padding: 0.6em;
  font-size: 0.9rem;
}
@media (min-width: 800px) {
  .call-bar { display: none; }
}

/* ===== Hero: job card ===== */
.hero {
  padding: 3rem 1.25rem;
  display: flex;
  justify-content: center;
}
.job-card {
  position: relative;
  max-width: 640px;
  width: 100%;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 6px 6px 0 var(--moss);
}
.job-card__hole {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.job-card__label {
  font-family: var(--font-mono);
  color: var(--rust);
  letter-spacing: 0.1em;
  margin: 0 0 0.75em;
  font-size: 0.85rem;
}
.job-card__title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--moss);
}
.job-card__desc {
  max-width: 46ch;
  margin: 1rem 0 1.75rem;
}
.job-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.stamp-button {
  display: inline-block;
  border: 3px solid var(--rust);
  color: var(--rust);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 6px;
  transform: rotate(-2deg);
}
.text-button {
  text-decoration: none;
  font-family: var(--font-mono);
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  padding-bottom: 2px;
}

/* ===== Services tickets ===== */
.services-strip, .reviews-teaser, .brands-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.ticket-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.5rem;
}
.ticket {
  background: #fff;
  border: 1px dashed var(--paper-line);
  border-left: 4px solid var(--brass);
  padding: 1.25rem;
  border-radius: var(--radius-tag);
}
.ticket__no {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 0.85rem;
}
.ticket h3 { color: var(--moss); font-size: 1.3rem; margin-top: 0.2em; }

/* ===== Brands ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  align-items: center;
  gap: 1.5rem;
}
.brands-grid img {
  max-width: 100%;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s, filter 0.2s;
}
.brands-grid img:hover {
  filter: none;
  opacity: 1;
}

/* ===== Reviews (ticket-stub styling for the reviews partial) ===== */
.reviews-summary {
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-top: 4px solid var(--rust);
  padding: 1.25rem;
  border-radius: var(--radius-tag);
}
.review-author { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.review-author img { border-radius: 50%; }
.review-rating { font-family: var(--font-mono); font-size: 0.8rem; color: var(--brass); }
.review-text { font-size: 0.95rem; }
.review-source { font-family: var(--font-mono); font-size: 0.8rem; }

/* ===== Blog/tips post content ===== */
.post-content p { margin: 0 0 1.2em; }
.post-content strong { color: var(--moss); }
.page-header { max-width: 1100px; margin: 0 auto; padding: 3rem 1.25rem 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--moss);
  color: var(--paper);
  padding: 3rem 1.25rem 1.5rem;
}
.site-footer__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.site-footer h3 {
  color: var(--brass);
  font-size: 1.1rem;
}
.site-footer a { text-decoration: none; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(239,233,220,0.3);
  padding: 0.3em 0;
}
.hours-note { font-size: 0.8rem; opacity: 0.8; }
.footer-copyright {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2rem;
}

/* ===== Motion & accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}
