/* C&L Dryer Service — simplified one-screen site
   Palette: farm red / wheat gold / charcoal / warm cream
   Type: Archivo (display), Barlow Condensed (labels), Public Sans (body) */

:root {
  --red: #A82B22;
  --red-deep: #7C1F17;
  --gold: #E0A32E;
  --gold-deep: #B9822A;
  --gold-ink: #7A5619;
  --charcoal: #211D1B;
  --ink: #2B2622;
  --muted: #6E645A;
  --paper: #FBF7F0;
  --cream: #F3ECDE;
  --line: #E2D6C3;
  --white: #FFFFFF;

  --display: "Archivo", "Arial Black", sans-serif;
  --label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 900px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: var(--red); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--red-deep); outline-offset: 3px; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--display); font-weight: 800; color: var(--charcoal); line-height: 1.05; }
.brand-text .name { font-size: 18px; letter-spacing: -0.01em; }
.brand-text .place {
  display: block; font-family: var(--label); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.header-call {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--label); font-weight: 600; letter-spacing: 0.02em;
  color: var(--charcoal); text-decoration: none; font-size: 17px; white-space: nowrap;
}
.header-call .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: var(--white); flex: none;
}
.header-call .ico svg { width: 17px; height: 17px; }

/* ---------------- hero ---------------- */
.hero { position: relative; overflow: hidden; background: var(--charcoal); }
.hero-bg {
  position: absolute; inset: 0;
  background: url("../images/auger-cx2.jpg") center 38% / cover no-repeat;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,13,0.55) 0%, rgba(20,16,13,0.80) 60%, rgba(15,12,10,0.92) 100%);
}
.hero-wrap {
  position: relative; z-index: 2;
  padding-top: 110px; padding-bottom: 110px;
  text-align: center;
}
.hero .eyebrow {
  font-family: var(--label); font-weight: 600; font-size: 15px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; line-height: 1.04;
  margin: 0; color: var(--white); font-size: clamp(36px, 7vw, 60px);
}
.hero .lede {
  font-size: 20px; color: #E9E1D4; margin: 18px auto 0; max-width: 46ch;
}
.hero .btn { margin-top: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------------- info strip ---------------- */
.info-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 40px 28px; text-align: center;
}
.info-item address { font-style: normal; }
.info-label {
  display: block; font-family: var(--label); font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 8px;
}
.info-item a, .info-item p {
  margin: 0; color: var(--ink); font-family: var(--label); font-size: 18px; line-height: 1.4;
  text-decoration: none;
}
.info-item a { color: var(--red); }
.info-item a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; gap: 26px; padding: 34px 28px; }
}

/* ---------------- footer ---------------- */
footer.site-footer { background: var(--charcoal); padding: 26px 0; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-family: var(--label); font-size: 13.5px; letter-spacing: 0.04em; color: #A79A87;
}
.footer-bottom a { color: #C9BEAF; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .brand-text .name { font-size: 16px; }
  .brand img { height: 44px; }
  .header-call .label { display: none; }
}
