/* bowrehairs.co.uk — single stylesheet.
   Letterpress-workshop look: Fraunces display, mono tags, cream paper,
   pernambuco red, hard offset shadows. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=IBM+Plex+Mono:wght@450;600&display=swap');

:root {
  --paper: #f3ecdc;
  --card: #faf5e9;
  --ink: #1d1610;
  --muted: #6b6152;
  --line: #d0c5ab;
  --accent: #8a2f1d;       /* pernambuco */
  --accent-dark: #641f12;
  --ok: #38634a;
  --max: 960px;
  --display: "Fraunces", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, "Courier New", monospace;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: var(--accent); color: var(--paper); }

a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

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

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* Mono kicker tags */
.kicker {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 14px;
}

/* Header / nav */
.site-header {
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 16px;
  gap: 10px;
}
.brand {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand span { color: var(--accent); }
.brand::after { content: "."; color: var(--accent); }
nav { display: flex; flex-wrap: wrap; gap: 4px 18px; }
nav a {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  margin: 0;
}
nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 64px 0 52px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 750;
  margin: 0 0 18px;
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.hero p.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--accent);
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.btn:hover {
  color: var(--paper);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--accent);
}
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--accent); }
.btn.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--line);
}

/* Sections */
section { padding: 56px 0; }
section.alt {
  background: var(--card);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
h2 { font-size: clamp(28px, 4vw, 36px); margin: 0 0 22px; }
h3 { font-size: 21px; margin: 0 0 8px; }

/* Pricing */
.prices {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}
.price-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 8px 8px 0 var(--line);
  padding: 30px 30px 28px;
  flex: 1 1 260px;
  max-width: 350px;
  text-align: center;
}
.price-card h3 {
  margin-top: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.price-card .price {
  font-family: var(--display);
  font-size: 62px;
  font-weight: 850;
  line-height: 1;
  color: var(--accent);
  margin: 14px 0 4px;
}
.price-card .price small { font-size: 16px; color: var(--muted); font-weight: normal; }
.price-card p.note { color: var(--muted); font-size: 15.5px; margin: 12px 0 24px; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 20px; padding: 0; }
.steps li {
  list-style: none;
  position: relative;
  padding-left: 56px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  line-height: 38px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

/* Status stages */
.stages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stages .stage {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  border-radius: 0;
}
.stages .arrow { color: var(--accent); font-size: 16px; }

/* Trust list */
.trust { display: grid; gap: 20px; }
.trust .item { border-left: 4px solid var(--accent); padding-left: 18px; }

/* Callout */
.callout {
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--line);
  border-radius: 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.callout strong { color: var(--accent-dark); }

/* Icons */
.sicon {
  width: 36px;
  height: 36px;
  vertical-align: -10px;
  margin-right: 10px;
}
.tracker-stages .tstage > .sicon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 2px 0 0;
}

/* Illustrations */
.illus {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 26px auto 0;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--line);
}

/* Utility */
.center { text-align: center; }
.muted { color: var(--muted); }
ul.plain { padding-left: 20px; }
ul.plain li { margin-bottom: 8px; }

/* Forms */
form.intake { display: grid; gap: 20px; max-width: 560px; }
form.intake label {
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
form.intake label .optional { font-weight: 450; color: var(--muted); text-transform: none; letter-spacing: 0; }
form.intake input[type="text"],
form.intake input[type="email"],
form.intake input[type="tel"],
form.intake select,
form.intake textarea {
  width: 100%;
  padding: 12px 13px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 0;
}
form.intake input:focus,
form.intake select:focus,
form.intake textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--accent);
}
form.intake textarea { min-height: 96px; resize: vertical; }
.field-note {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 450;
  color: var(--muted);
  margin-top: 6px;
}

/* Tracker */
.tracker-stages { display: grid; gap: 0; margin: 26px 0; }
.tracker-stages .tstage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-left: 3px solid var(--line);
  padding-left: 22px;
  position: relative;
}
.tracker-stages .tstage::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 22px;
  width: 13px; height: 13px;
  background: var(--paper);
  border: 3px solid var(--line);
}
.tracker-stages .tstage.done { border-left-color: var(--ok); }
.tracker-stages .tstage.done::before { background: var(--ok); border-color: var(--ok); }
.tracker-stages .tstage.current { border-left-color: var(--accent); }
.tracker-stages .tstage.current::before { background: var(--accent); border-color: var(--accent); }
.tracker-stages .tstage h3 { margin: 0; font-size: 19px; }
.tracker-stages .tstage p { margin: 2px 0 0; }

/* FAQ */
.faq details {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 0;
  margin-bottom: 12px;
}
.faq details[open] { box-shadow: 5px 5px 0 var(--line); }
.faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--display);
  font-weight: 650;
  font-size: 18.5px;
  list-style-position: inside;
}
.faq summary::marker { color: var(--accent); }
.faq details > div { padding: 0 20px 16px; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--line);
  padding: 38px 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 450;
  margin-top: auto;
}
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: var(--line); }
.site-footer .bridge {
  margin-top: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--line);
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .hero { padding: 44px 0 38px; }
  .hero h1 { max-width: none; }
  .price-card { box-shadow: 6px 6px 0 var(--line); }
}
