/* AlwaysLit · Shared styles for city landing pages
 * Used by /calgary/, /airdrie/, /cochrane/, /chestermere/, /okotoks/,
 * /strathmore/, /high-river/, /priddis/
 * NOT used by the home page (/index.html) — home has its own inline CSS.
 */

:root {
  --bg: #0A0E14;
  --bg-2: #0F141C;
  --bg-elev: #161D27;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #F4EFE6;
  --ink-soft: #BFB7A8;
  --ink-mute: #7A7264;
  --amber: #FFB547;
  --amber-soft: #FFD68A;
  --amber-glow: rgba(255, 181, 71, 0.35);
  --green: #6CD9A8;
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 9px;
  height: 9px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--amber-glow);
}
.nav-cta {
  padding: 10px 22px;
  background: var(--amber);
  color: #0A0E14;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--amber-glow);
}
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--amber); }

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('/images/permanent-christmas-led-outdoor-lights-by-home-one.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.6) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.6) 100%);
}
.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 22px 0 26px;
  max-width: 14ch;
}
.hero .lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background: var(--amber); color: #0A0E14; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--amber-glow); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-soft); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.sale-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(108, 217, 168, 0.08);
  border: 1px solid rgba(108, 217, 168, 0.3);
  border-radius: 999px;
  font-size: 13px;
  color: var(--green);
}
.sale-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(108, 217, 168, 0.6);
}

/* Sections */
section { padding: 80px 0; }
section + section { border-top: 1px solid var(--line); }
.section-header { max-width: 720px; margin-bottom: 48px; }
.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 400;
  margin: 16px 0 18px;
}
.lede { color: var(--ink-soft); font-size: clamp(15px, 1.8vw, 17px); }

/* Why grid */
.why-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}
.why-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--amber-soft);
}
.why-card p { color: var(--ink-soft); font-size: 15px; }

/* Gallery */
.gallery { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber-soft);
}

/* Neighborhoods */
.nbh-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.nbh-list span {
  padding: 8px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Drive-by demo emphasis */
.demo-emphasis { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--body);
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-item p { color: var(--ink-soft); font-size: 15px; }

/* CTA */
.cta { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); text-align: center; }
.cta h2 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 18px; }
.cta p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 1.8vw, 17px);
}

/* Preview tool CTA */
.preview-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.preview-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(255, 181, 71, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.preview-cta .container { position: relative; }
.preview-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.preview-cta-inner h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  margin: 18px 0 22px;
}
.preview-cta-inner .lede {
  max-width: 620px;
  margin: 0 auto;
}
.btn-preview {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(180deg, var(--amber), #e69e2a);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(255, 181, 71, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 38px;
}
.btn-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 181, 71, 0.45);
}
.preview-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  color: var(--ink-mute);
  font-size: 13px;
}
.preview-cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-cta-features .check { color: var(--amber); }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 36px;
  color: var(--ink-mute);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-col ul { display: block; }
  .footer-col li { margin-bottom: 8px; }
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}
.footer-col li { margin-bottom: 0; color: var(--ink-soft); }
.footer-col a { color: var(--ink-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
