:root {
  color-scheme: dark;
  --bg: #12100e;
  --bg-warm: #1a1612;
  --surface: #221e18;
  --surface-lit: #2c261e;
  --text: #f2ebe2;
  --muted: #9a8f82;
  --beard: #c9a66b;
  --beard-dim: rgba(201, 166, 107, 0.14);
  --trim: #8b5e3c;
  --trim-light: #b07d52;
  --barber-red: #b83a3a;
  --barber-blue: #3a5a8b;
  --border: rgba(242, 235, 226, 0.08);
  --radius: 6px;
  --radius-sm: 4px;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 80% 15%, var(--beard-dim), transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.backdrop__pole {
  position: absolute;
  top: 10%;
  left: 6%;
  width: 14px;
  height: 100px;
  border-radius: 7px;
  background: repeating-linear-gradient(
    180deg,
    var(--barber-red) 0,
    var(--barber-red) 12px,
    var(--barber-blue) 12px,
    var(--barber-blue) 24px
  );
  opacity: 0.35;
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 52px 0 88px;
}

.hero {
  margin-bottom: 40px;
}

.hero__chair {
  padding: 36px 32px 32px;
  background: linear-gradient(160deg, var(--surface-lit) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--beard);
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beard);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.brand-title .beard {
  color: var(--beard);
  font-style: italic;
}

.brand-title .colon {
  color: var(--muted);
  font-style: normal;
  margin: 0 0.08em;
}

.brand-title .trim {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72em;
}

h1 {
  margin: 22px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 50ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
}

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--trim-light);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-left: 3px solid var(--beard);
}

.highlights li:nth-child(2) {
  border-left: 3px solid var(--trim);
}

.highlights li:nth-child(3) {
  border-left: 3px solid var(--barber-red);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.58;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beard);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.68;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(44, 38, 30, 0.5) 100%);
  border-color: rgba(201, 166, 107, 0.15);
}

a {
  color: var(--beard);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 166, 107, 0.35);
}

a:hover {
  color: var(--trim-light);
}

.footer {
  margin-top: 44px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .beard {
  color: var(--beard);
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__chair {
    padding: 28px 22px 24px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 36px 0 64px;
    width: min(100% - 28px, 900px);
  }
}
