/* ============================================================
   Houdini Locksmiths — Modern Design System
   ============================================================ */

:root {
  --dark:        #16202e;
  --dark2:       #1f2d3d;
  --dark3:       #2a3a4e;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-pale:  #fffbeb;
  --red:         #dc2626;
  --green:       #16a34a;
  --white:       #ffffff;
  --light:       #f8fafc;
  --gray:        #f1f5f9;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 18px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 36px rgba(0,0,0,0.18);

  --radius:      8px;
  --radius-lg:   16px;
  --max-w:       1100px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .75rem; font-weight: 800; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--amber-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; border: 0; display: block; }
ul, ol { padding-left: 1.4em; margin: 0 0 1rem; }
li { margin-bottom: .35rem; }

/* ── Utility ───────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block; color: var(--amber-dark);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem;
}
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { font-size: 2.1rem; color: var(--text); letter-spacing: -.03em; }
.section-heading p  { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: .5rem auto 0; }
.section-dark .section-heading h2 { color: white; }
.section-dark .section-heading p  { color: rgba(255,255,255,.65); }
.section-dark .eyebrow { color: var(--amber); }

/* ── Top Bar ───────────────────────────────────────── */
.topbar {
  background: var(--dark); color: rgba(255,255,255,.65);
  font-size: .8rem; padding: .4rem 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.topbar a { color: var(--amber); font-weight: 600; text-decoration: none; }

/* ── Site Header ───────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-logo {
  font-size: 1.45rem; font-weight: 900; color: white;
  letter-spacing: -.03em; text-decoration: none; white-space: nowrap;
}
.site-logo span { color: var(--amber); }

.header-right { display: flex; align-items: center; gap: 1.25rem; }

.available-badge {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.avail-dot {
  width: 9px; height: 9px; background: var(--green);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.35); }
}

.btn-call {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--amber); color: var(--dark);
  font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em;
  padding: .55rem 1.3rem; border-radius: 50px;
  white-space: nowrap; text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-call:hover {
  background: var(--amber-dark); color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245,158,11,.5);
  text-decoration: none;
}

.nav-toggle {
  display: none; background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: white; font-size: 1.35rem; line-height:1;
  padding: .35rem .65rem; border-radius: var(--radius); cursor: pointer;
}

/* ── Site Nav ──────────────────────────────────────── */
.site-nav { background: var(--dark2); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  display: flex; align-items: center;
  padding: .7rem .6rem; font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.7); text-decoration: none;
  text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 3px solid transparent; white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.nav-inner a:hover, .nav-inner a.active {
  color: var(--amber); border-bottom-color: var(--amber); text-decoration: none;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--dark) 0%, #0d1b2e 55%, var(--dark2) 100%);
  padding: 5rem 1.5rem 4.5rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,.08) 0%, transparent 70%);
}
.hero-inner {
  position: relative; max-width: 740px; margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.35);
  color: var(--amber); font-size: .78rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: .07em;
}
.hero h1 {
  font-size: 3.4rem; font-weight: 900; color: white;
  letter-spacing: -.04em; margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 .hl { color: var(--amber); }
.hero-lead {
  font-size: 1.15rem; color: rgba(255,255,255,.72);
  max-width: 540px; margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--amber); color: var(--dark); font-weight: 900;
  font-size: 1.15rem; padding: .9rem 2.25rem; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,.45);
  transition: all .2s;
}
.btn-primary:hover {
  background: var(--amber-dark); color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,158,11,.55); text-decoration: none;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); color: white; font-weight: 600;
  font-size: 1rem; padding: .9rem 2rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25); text-decoration: none;
  transition: all .2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2); transform: translateY(-2px);
  text-decoration: none; color: white;
}
.hero-trust {
  display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.6); font-size: .85rem;
}
.trust-item .chk { color: var(--amber); font-weight: 900; }

/* ── Urgency Bar ───────────────────────────────────── */
.urgency-bar {
  background: var(--red); color: white; text-align: center;
  padding: .8rem 1.5rem; font-size: .97rem; font-weight: 700; letter-spacing: .01em;
}
.urgency-bar a { color: white; text-decoration: underline; }
.urgency-bar a:hover { opacity: .85; }

/* ── Trust Strip ───────────────────────────────────── */
.trust-strip { background: var(--dark2); border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-strip .container {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.trust-pill {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem; padding: 1.25rem .75rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-pill:last-child { border-right: none; }
.trust-pill .tp-icon { font-size: 1.5rem; }
.trust-pill .tp-label {
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: .05em;
}
.trust-pill .tp-sub { font-size: .72rem; color: rgba(255,255,255,.45); }

/* ── Sections ──────────────────────────────────────── */
.section     { padding: 4.5rem 0; }
.section-alt  { background: var(--gray); }
.section-dark { background: var(--dark); }

/* ── Service Cards ─────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--text); display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--amber); text-decoration: none; color: var(--text);
}
.svc-icon { font-size: 2.75rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; color: var(--text); }
.service-card p  { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── About ─────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-body h2 { font-size: 2rem; letter-spacing: -.03em; margin-bottom: 1rem; }
.about-body p  { color: var(--muted); line-height: 1.75; }
.credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem;
}
.cred {
  background: var(--gray); border-radius: var(--radius); padding: .85rem 1rem;
}
.cred-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.cred-value { font-size: .95rem; font-weight: 700; color: var(--text); }

/* ── Pricing ───────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; max-width: 720px; margin: 0 auto;
}
.price-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.75rem; border: 2px solid var(--border);
}
.price-card.featured {
  border-color: var(--amber); background: var(--amber-pale);
}
.price-svc  { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.price-amt  { font-size: 1.85rem; font-weight: 900; color: var(--amber-dark); letter-spacing: -.04em; }
.price-note { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.pricing-note {
  text-align: center; font-size: .84rem; color: var(--muted); margin-top: 1.5rem;
  background: var(--gray); padding: 1rem 1.5rem; border-radius: var(--radius);
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ── Service Area ──────────────────────────────────── */
.area-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: .6rem; margin-top: 1.75rem;
}
.area-pill {
  display: block; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: .45rem .75rem;
  font-size: .82rem; color: rgba(255,255,255,.72);
  text-decoration: none; transition: all .2s;
}
.area-pill:hover {
  background: var(--amber); color: var(--dark);
  border-color: var(--amber); text-decoration: none;
}
.area-pill.cta {
  background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.4); color: var(--amber);
}

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  padding: 4.5rem 1.5rem; text-align: center;
}
.cta-banner h2 { font-size: 2.6rem; font-weight: 900; color: var(--dark); letter-spacing: -.04em; }
.cta-banner p  { font-size: 1.1rem; color: rgba(22,32,46,.72); margin-bottom: 2rem; }
.btn-dark {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--dark); color: white; font-weight: 900;
  font-size: 1.25rem; padding: .9rem 2.5rem; border-radius: 50px;
  text-decoration: none; box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: all .2s;
}
.btn-dark:hover {
  background: #000; color: white; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4); text-decoration: none;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.7); padding: 3rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-size: 1.1rem; font-weight: 900; color: white; letter-spacing: -.02em;
}
.footer-brand-name span { color: var(--amber); }
.footer-brand p   { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: .6rem; }
.footer-phone     { font-size: 1.35rem; font-weight: 900; color: var(--amber); display: block; margin-top: .5rem; }
.footer-col h4    {
  color: white; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-col ul    { list-style: none; padding: 0; margin: 0; }
.footer-col li    { margin-bottom: .5rem; }
.footer-col a     { color: rgba(255,255,255,.58); font-size: .87rem; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--amber); text-decoration: none; }
.footer-col .dimmed { color: rgba(255,255,255,.35) !important; font-size: .85rem; }
.footer-bottom {
  padding: 1.25rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.3);
}

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 3rem 1.5rem; text-align: center;
}
.breadcrumb {
  display: flex; gap: .5rem; justify-content: center;
  font-size: .78rem; margin-bottom: .85rem; flex-wrap: wrap;
}
.breadcrumb a    { color: var(--amber); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb .cur { color: rgba(255,255,255,.65); }
.page-hero h1 {
  font-size: 2.3rem; font-weight: 900; color: white;
  letter-spacing: -.04em; margin-bottom: .5rem;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── Prose / content pages ─────────────────────────── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.65rem; font-weight: 800; margin-top: 2rem; margin-bottom: .75rem; letter-spacing: -.02em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: .5rem; }
.prose p, .prose li { color: var(--muted); line-height: 1.8; }
.prose strong { color: var(--text); }
.prose ul { margin-bottom: 1rem; }

/* ── Contact page ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card {
  background: var(--gray); border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  font-size: 1.4rem; width: 40px; height: 40px;
  background: var(--amber-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--text); }
.contact-value a { color: var(--text); text-decoration: none; }
.contact-value a:hover { color: var(--amber-dark); }

/* ── Pricing table page ────────────────────────────── */
.pricing-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.pricing-table th {
  background: var(--dark); color: white; padding: .85rem 1.25rem;
  text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
}
.pricing-table td { padding: .85rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .95rem; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--gray); }
.price-col { font-weight: 800; color: var(--amber-dark); font-size: 1.05rem; }

/* ── Inline CTA block ──────────────────────────────── */
.inline-cta {
  background: var(--dark); border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; margin: 2.5rem auto; max-width: 600px;
}
.inline-cta h3 { color: white; font-size: 1.4rem; margin-bottom: .5rem; }
.inline-cta p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 1.25rem; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img     { order: -1; max-width: 480px; margin: 0 auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .area-grid     { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  .topbar        { display: none; }

  .site-logo     { font-size: 1.1rem; }
  .btn-call      { font-size: .88rem; padding: .5rem .9rem; }

  .available-badge { display: none; }
  .nav-toggle    { display: block; }

  .site-nav      { display: none; }
  .site-nav.open { display: block; position: fixed; top: 70px; left: 0; right: 0; z-index: 190; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .nav-inner     { flex-direction: column; padding: .5rem 1.5rem 2rem; }
  .nav-inner a   { border-bottom: 1px solid rgba(255,255,255,.06); border-right: none; padding: .55rem 0; letter-spacing: 0; }
  .nav-inner a.last { border-bottom: none; }

  .hero          { padding: 3rem 1.25rem 2.5rem; }
  .hero h1       { font-size: 2.3rem; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust    { gap: 1rem; }

  .trust-strip .container { grid-template-columns: repeat(2,1fr); }
  .trust-pill:nth-child(2) { border-right: none; }
  .trust-pill:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }

  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; }
  .area-grid     { grid-template-columns: repeat(3,1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section       { padding: 2.75rem 0; }
  .cta-banner h2 { font-size: 1.9rem; }
  .page-hero h1  { font-size: 1.9rem; }
  .section-heading h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .hero h1       { font-size: 1.9rem; }
  .site-logo     { font-size: .95rem; }
  .btn-call      { font-size: .8rem; padding: .45rem .75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid     { grid-template-columns: repeat(2,1fr); }
  .credentials   { grid-template-columns: 1fr 1fr; }
}
