/* Kamloops Web Agency — demo stylesheet
   Base system by Codex (kept), extended by conversion/sales additions below.
   Sections marked "ADDED" are new: social proof, sticky mobile call bar,
   booking inquiry form, and the photo-free barber-pole motif. */

* { box-sizing: border-box; }
:root {
  --ink: #171717;
  --muted: #6a665f;
  --paper: #fbfaf7;
  --soft: #f3eee6;
  --line: rgba(26, 22, 17, .12);
  --gold: #b9853c;
  --gold-deep: #7a501c;
  --green: #19382f;
  --red: #8d2f25;
  --charcoal: #151515;
  --steel: #2f3d49;
  --shadow: 0 24px 70px rgba(18, 16, 12, .16);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 30px;
  background: rgba(251, 250, 247, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { font-weight: 900; letter-spacing: .01em; }
.navlinks { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.nav a {
  text-decoration: none;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 750;
}
.nav a.callcta { background: var(--gold); color: #fff; border-color: var(--gold); } /* ADDED */
.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 70px 30px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.48) 45%, rgba(0,0,0,.16)),
    var(--hero) center / cover no-repeat;
}
.hero.light {
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 28%, rgba(185,133,60,.18), transparent 30%),
    linear-gradient(135deg, #fffaf3, #f7efe5 58%, #fff);
}
.hero.restaurant {
  background:
    linear-gradient(90deg, rgba(30, 6, 2, .82), rgba(59, 13, 7, .58), rgba(30, 6, 2, .18)),
    var(--hero) center / cover no-repeat;
}
.hero.hotel {
  background:
    linear-gradient(90deg, rgba(11, 20, 30, .82), rgba(11, 20, 30, .55), rgba(11, 20, 30, .18)),
    var(--hero) center / cover no-repeat;
}
.wrap { width: min(1160px, 100%); margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .62fr);
  gap: 38px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.light .eyebrow { color: var(--gold-deep); border-color: #edd4a9; background: #fff3dd; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
h1 { max-width: 820px; margin: 0 0 20px; font-size: clamp(40px, 5.8vw, 76px); line-height: .98; }
h2 { margin: 0 0 18px; font-size: clamp(34px, 4.8vw, 62px); line-height: 1; }
h3 { margin: 0 0 9px; font-size: 20px; }
p { margin: 0 0 18px; }
.lead { max-width: 710px; color: rgba(255,255,255,.88); font-size: clamp(17px, 1.7vw, 22px); }
.light .lead { color: #4f4a42; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}
.button.secondary { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.14); color: #fff; box-shadow: none; }
.light .button.secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.light .hero-panel { border-color: var(--line); background: rgba(255,255,255,.76); }
.quick-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.quick-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.86); }
.light .quick-list li { color: #4f4a42; }
.dot { flex: 0 0 9px; width: 9px; height: 9px; margin-top: 8px; border-radius: 50%; background: var(--gold); }
.band { padding: 82px 30px; border-bottom: 1px solid var(--line); }
.band.alt { background: var(--soft); }
.band.dark { background: #141414; color: #f3eee6; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); gap: 42px; align-items: center; }
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 32px rgba(27, 21, 13, .07); }
.dark .card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #f3eee6; }
.feature-card { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.kicker { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.muted { color: var(--muted); }
.dark .muted { color: #cfc6ba; }
.photo-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.photo-card img { display: block; width: 100%; height: 410px; object-fit: cover; }
.photo-card.small img { height: 260px; }
.caption { padding: 14px 16px; color: var(--muted); font-size: 13px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stat { padding: 16px; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(255,255,255,.1); }
.light .stat { border-color: var(--line); background: #fff; }
.stat strong { display: block; font-size: 28px; line-height: 1; color: var(--gold); }
.menu-card { display: grid; gap: 14px; }
.menu-row { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.menu-row:last-child { padding-bottom: 0; border-bottom: 0; }
.logo { max-width: 168px; display: block; margin-bottom: 14px; padding: 9px; border-radius: 10px; background: rgba(255,255,255,.9); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 850; }
.dark .pill { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; }
.cta-band { padding: 46px; border-radius: 10px; background: linear-gradient(135deg, rgba(185,133,60,.18), rgba(255,255,255,.04)), #191817; color: #fff; box-shadow: var(--shadow); }
.source { margin-top: 22px; color: var(--muted); font-size: 13px; }
.dark .source { color: #bfb6aa; }
.value-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: stretch; }
.review-card { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 32px rgba(27, 21, 13, .07); }
.review-card strong { display: block; margin-bottom: 10px; color: var(--gold-deep); font-size: 24px; }
.dark .review-card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #f3eee6; }
.dark .review-card strong { color: var(--gold); }
footer { padding: 42px 30px; color: #eee; background: #121212; }

/* ============================================================
   ADDED — Social proof (real Google reviews) */
.reviews-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.ratingbar { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; }
.dark .ratingbar { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
.stars { color: #e8a020; letter-spacing: 2px; font-size: 18px; }
.ratingbar small { color: var(--muted); font-weight: 700; }
.quote-card { padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 10px 26px rgba(27,21,13,.06); display: flex; flex-direction: column; gap: 12px; }
.quote-card .stars { font-size: 15px; }
.quote-card p { margin: 0; font-size: 15px; }
.quote-card .who { font-weight: 800; font-size: 14px; }
.quote-card .who span { color: var(--muted); font-weight: 600; }
.sample-note { display: inline-block; margin-top: 8px; padding: 4px 9px; border-radius: 6px; background: #fff3dd; color: #8a5a12; font-size: 12px; font-weight: 800; border: 1px solid #edd4a9; }

/* ADDED — Booking / contact inquiry form */
.form-card { padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.dark .form-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 800; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--paper); color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* ADDED — Sticky mobile tap-to-call bar */
.callbar { display: none; }
@media (max-width: 880px) {
  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(20,20,20,.96); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .callbar a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; border-radius: 10px; text-decoration: none; font-weight: 900; font-size: 16px;
  }
  .callbar .primary { background: var(--gold); color: #fff; }
  .callbar .ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); }
  body { padding-bottom: 74px; }
}

/* ADDED — photo-free barber motif (Central Barbershop) */
.hero.barber-css {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9,11,15,.72), rgba(9,11,15,.86)),
    repeating-linear-gradient(135deg, #b32424 0 22px, #ffffff 22px 44px, #14448a 44px 66px, #ffffff 66px 88px);
}
.barber-poles { display: flex; gap: 14px; margin-bottom: 22px; }
.pole { width: 16px; height: 74px; border-radius: 999px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.3), var(--shadow);
  background: repeating-linear-gradient(45deg, #c02a2a 0 8px, #ffffff 8px 16px, #1f4fa0 16px 24px, #ffffff 24px 32px); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 800; }
.dark .hours-table td { border-color: rgba(255,255,255,.12); }
.pricebadge { display: inline-flex; margin-left: auto; padding: 4px 10px; border-radius: 999px; background: var(--gold); color: #fff; font-weight: 900; font-size: 14px; }

@media (max-width: 880px) {
  .nav { position: static; flex-direction: column; align-items: flex-start; }
  .navlinks { justify-content: flex-start; }
  .hero { min-height: auto; padding: 62px 22px; }
  .hero-grid, .split, .cols-2, .cols-3, .stat-row, .value-grid, .field-row { grid-template-columns: 1fr; }
  .band { padding: 54px 22px; }
  .cta-band { padding: 28px; }
  .photo-card img { height: 300px; }
}
