/* Clean Slate — brand styles.
   Palette and type match the printed flyer and business card. */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/anton-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/archivo-var.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/montserrat-600.woff2) format('woff2');
}

:root {
  --ink: #191c1f;
  --paper: #f6f5f2;
  --accent: #a94d28;
  --accent-dark: #7e3a1e;
  --ink-dim: #4c555c;
  --paper-dim: #a9afb4;
  --hairline: rgba(25, 28, 31, 0.14);

  --display: Anton, 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  --body: Archivo, 'Helvetica Neue', Arial, sans-serif;
  --word: Montserrat, 'Helvetica Neue', Arial, sans-serif;

  --gutter: 20px;
  --measure: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

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

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 10;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

/* ---------- header ---------- */

.site-head {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 5;
}

.head-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.logo-mark {
  width: 54px;
  height: auto;
  fill: var(--paper);
  flex-shrink: 0;
}

.logo-word {
  display: flex;
  flex-direction: column;
  width: 92px;
}
.logo-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--word);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}
/* the wordmark's two rules, as on the printed logo */
.logo-rule-thin {
  height: 1.5px;
  background: var(--paper);
  margin: 4px 0 3px;
}
.logo-rule-thick {
  height: 5px;
  background: var(--paper);
  margin-top: 5px;
}

.head-nav {
  display: none;
  gap: 22px;
}
.head-nav a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.head-nav a:hover { color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-light {
  border-color: var(--paper-dim);
  color: var(--paper);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); }

.head-call {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
}
.head-call:hover { background: var(--accent-dark); color: #fff; }
.btn-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .85;
}
.btn-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

/* ---------- touch vs. desktop ----------
   `is-desktop` is set on <html> before first paint for hover + fine-pointer
   devices. Default (no class) is the phone wording, so if the script never
   runs everyone still gets working tel:/sms: links. */

.on-desktop { display: none; }

.is-desktop .on-touch { display: none; }
.is-desktop .on-desktop { display: inline; }

/* sms: is genuinely useless on a desktop browser, so drop that button */
.is-desktop .sms-only { display: none; }

.tel-hint {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 34em;
}
.is-desktop .tel-hint { display: block; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(10px);
  max-width: calc(100% - 32px);
  background: var(--ink);
  color: var(--paper);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}
.toast.is-up {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- hero ---------- */

.hero { padding-block: 52px 46px; }

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 11vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  max-width: 34em;
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-dim);
}

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

.hero-note {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- section furniture ---------- */

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 26px;
}

/* ---------- services ---------- */

.services {
  padding-block: 46px;
  border-top: 1px solid var(--hairline);
}

.svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 26px;
}

.svc { border-top: 4px solid var(--accent); padding-top: 14px; }
.svc h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.svc p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-dim);
}

/* ---------- work ---------- */

.work {
  padding-block: 46px;
  border-top: 1px solid var(--hairline);
}

.shots {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

.shot { margin: 0; position: relative; background: var(--ink); }
.shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.shot:nth-child(1) img { object-position: center 58%; }
.shot:nth-child(2) img { object-position: center 34%; }
.shot:nth-child(3) img { object-position: center 55%; }

.shot figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 11px;
}

/* ---------- area ---------- */

.area {
  padding-block: 46px;
  border-top: 1px solid var(--hairline);
}

.towns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.towns li {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 2px solid var(--ink);
}

.area-note {
  margin: 20px 0 0;
  font-size: 16px;
  color: var(--ink-dim);
}

/* ---------- closing CTA ---------- */

.cta {
  background: var(--ink);
  color: var(--paper);
  padding-block: 52px;
  text-align: center;
}

.cta-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.cta-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(46px, 13vw, 92px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-decoration: none;
  margin: 10px 0 4px;
  white-space: nowrap;
}
.cta-num:hover { color: var(--accent); }

.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink);
  color: var(--paper-dim);
  border-top: 1px solid rgba(246, 245, 242, 0.14);
  padding-block: 22px;
  font-size: 14px;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: space-between;
}
.site-foot p { margin: 0; }
.site-foot a { color: var(--paper); }
.site-foot a:hover { color: var(--accent); }

/* ---------- larger screens ---------- */

@media (min-width: 640px) {
  :root { --gutter: 28px; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shot img { height: 260px; }
  .logo-mark { width: 64px; }
  .logo-word { width: 108px; }
  .logo-line { font-size: 26px; }
}

@media (min-width: 900px) {
  :root { --gutter: 40px; }
  .head-nav { display: flex; }
  .hero { padding-block: 76px 64px; }
  .services, .work, .area { padding-block: 66px; }
  .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta { padding-block: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
