/* ============================================================
   VIRGINIA LOCKSMITH LLC — SHARED STYLESHEET
   Design system: dark navy / charcoal / gold, key-cut motif
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root{
  /* Color */
  --navy-950:#070b14;
  --navy-900:#0c1322;
  --navy-850:#101a2d;
  --navy-800:#141f38;
  --navy-700:#1e2c4a;
  --navy-600:#2a3c60;
  --white:#f4f5f8;
  --gray-300:#c3c9d6;
  --gray-400:#9aa3b8;
  --gray-500:#6c7690;
  --gold-300:#ecd489;
  --gold-400:#e2bd52;
  --gold-500:#c9a227;
  --gold-600:#a5811a;
  --gold-glow:rgba(201,162,39,0.35);

  /* Type */
  --font-display:'Space Grotesk',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,monospace;

  /* Layout */
  --max-w:1180px;
  --radius-lg:18px;
  --radius-md:12px;
  --radius-sm:8px;
  --header-h:76px;
  --sticky-call-h:60px;

  /* Motion */
  --ease:cubic-bezier(.22,.68,0,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important;}
}
body{
  font-family:var(--font-body);
  background:var(--navy-950);
  color:var(--gray-300);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--sticky-call-h);
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit;}
input,textarea,select{font:inherit;}
:focus-visible{outline:2px solid var(--gold-400);outline-offset:3px;border-radius:4px;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--white);
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.01em;
}
h1{font-size:clamp(2.1rem,4.6vw,3.6rem);}
h2{font-size:clamp(1.6rem,3.2vw,2.4rem);}
h3{font-size:clamp(1.15rem,2vw,1.5rem);}
p{max-width:62ch;}
.container{max-width:var(--max-w);margin-inline:auto;padding-inline:24px;}
.section{padding:88px 0;}
.section-tight{padding:56px 0;}
.section-alt{background:var(--navy-900);}
.section-header{max-width:680px;margin-bottom:44px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-400);margin-bottom:14px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--gold-500);display:inline-block;}
.lede{font-size:1.08rem;color:var(--gray-300);margin-top:14px;}

/* ---------- Key-cut motif (signature element) ----------
   A row of rectangular "teeth" of varying depth, echoing the
   bitting profile of a cut key. Used as section dividers and
   background texture — never as random decoration. */
.key-cut{
  --teeth:14;
  height:22px;
  width:100%;
  background-image:
    linear-gradient(var(--navy-700) 0 0),
    linear-gradient(var(--navy-700) 0 0);
  background-repeat:no-repeat;
  position:relative;
  overflow:hidden;
}
.key-cut svg{width:100%;height:100%;display:block;}
.key-cut .tooth{fill:var(--gold-500);opacity:.9;}
.key-cut.dim .tooth{fill:var(--navy-600);opacity:.7;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-display);font-weight:600;font-size:.98rem;
  padding:15px 28px;border-radius:999px;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),background-color .18s var(--ease),color .18s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold-400),var(--gold-600));
  color:var(--navy-950);
  box-shadow:0 8px 24px -8px var(--gold-glow);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px -8px var(--gold-glow);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid var(--navy-600);
}
.btn-outline:hover{border-color:var(--gold-400);color:var(--gold-300);transform:translateY(-2px);}
.btn-block{width:100%;}
.btn-lg{padding:19px 34px;font-size:1.08rem;}
.btn svg{width:18px;height:18px;flex-shrink:0;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  height:var(--header-h);
  display:flex;align-items:center;
  background:rgba(7,11,20,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--navy-800);
}
.header-inner{
  max-width:var(--max-w);margin-inline:auto;padding-inline:24px;
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:700;color:var(--white);font-size:1.05rem;letter-spacing:-.01em;}
.brand-mark{width:34px;height:34px;flex-shrink:0;}
.brand-name{display:flex;flex-direction:column;line-height:1.1;}
.brand-name small{font-family:var(--font-mono);font-weight:500;font-size:.62rem;letter-spacing:.12em;color:var(--gold-400);text-transform:uppercase;margin-top:2px;}

.main-nav{display:none;}
.main-nav ul{display:flex;align-items:center;gap:28px;}
.main-nav a{
  font-size:.92rem;font-weight:500;color:var(--gray-300);
  position:relative;padding:6px 0;transition:color .15s;
}
.main-nav a::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--gold-500);
  transition:width .2s var(--ease);
}
.main-nav a:hover,.main-nav a[aria-current="page"]{color:var(--white);}
.main-nav a:hover::after,.main-nav a[aria-current="page"]::after{width:100%;}

.header-cta{display:flex;align-items:center;gap:14px;}
.header-call{
  display:none;
  align-items:center;gap:9px;
  font-family:var(--font-mono);font-weight:600;font-size:.95rem;color:var(--white);
  border:1.5px solid var(--navy-600);border-radius:999px;padding:10px 18px;
  transition:border-color .18s,color .18s;
}
.header-call:hover{border-color:var(--gold-400);color:var(--gold-300);}
.header-call svg{width:16px;height:16px;color:var(--gold-400);}

.menu-toggle{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:var(--radius-sm);
  border:1px solid var(--navy-700);
}
.menu-toggle svg{width:20px;height:20px;}
.menu-toggle .icon-close{display:none;}
.menu-toggle[aria-expanded="true"] .icon-open{display:none;}
.menu-toggle[aria-expanded="true"] .icon-close{display:block;}

/* Mobile nav drawer */
.mobile-nav{
  display:none;
  position:fixed;inset:var(--header-h) 0 0 0;z-index:99;
  background:var(--navy-950);
  overflow-y:auto;
  padding:28px 24px 40px;
}
.mobile-nav.is-open{display:block;}
.mobile-nav ul{display:flex;flex-direction:column;}
.mobile-nav a{
  display:flex;align-items:center;justify-content:space-between;
  font-family:var(--font-display);font-size:1.25rem;font-weight:600;color:var(--white);
  padding:16px 4px;border-bottom:1px solid var(--navy-800);
}
.mobile-nav a[aria-current="page"]{color:var(--gold-400);}
.mobile-nav .btn{margin-top:26px;}

body.nav-open{overflow:hidden;}

@media (min-width:960px){
  .main-nav{display:block;}
  .header-call{display:inline-flex;}
  .menu-toggle{display:none;}
  .mobile-nav{display:none !important;}
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call{
  position:fixed;bottom:0;left:0;right:0;z-index:110;
  height:var(--sticky-call-h);
  background:linear-gradient(135deg,var(--gold-400),var(--gold-600));
  display:flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-display);font-weight:700;color:var(--navy-950);font-size:1rem;
  box-shadow:0 -6px 20px rgba(0,0,0,.35);
}
.sticky-call svg{width:19px;height:19px;}
@media (min-width:960px){
  .sticky-call{display:none;}
  body{padding-bottom:0;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:96px 0 88px;
  overflow:hidden;
  background:
    radial-gradient(60% 60% at 84% 8%,rgba(201,162,39,.14),transparent 60%),
    linear-gradient(180deg,var(--navy-950),var(--navy-900));
  border-bottom:1px solid var(--navy-800);
}
.hero-grid{display:grid;gap:48px;align-items:center;}
@media (min-width:960px){.hero-grid{grid-template-columns:1.1fr .9fr;}}
.hero h1{margin-bottom:18px;}
.hero .lede{max-width:52ch;margin-bottom:34px;font-size:1.12rem;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:30px;}
.hero-trust{display:flex;flex-wrap:wrap;gap:22px;font-family:var(--font-mono);font-size:.82rem;color:var(--gray-400);}
.hero-trust li{display:flex;align-items:center;gap:8px;}
.hero-trust svg{width:15px;height:15px;color:var(--gold-500);flex-shrink:0;}

.hero-panel{
  background:var(--navy-850);
  border:1px solid var(--navy-700);
  border-radius:var(--radius-lg);
  padding:30px;
  position:relative;
}
.hero-panel .key-cut{margin-bottom:22px;}
.hero-panel h3{margin-bottom:6px;}
.hero-panel p{font-size:.94rem;color:var(--gray-400);margin-bottom:22px;}
.hero-service-list{display:grid;gap:10px;}
.hero-service-list li{
  display:flex;align-items:center;gap:12px;
  font-size:.94rem;color:var(--gray-300);
  padding:11px 14px;background:var(--navy-800);border-radius:var(--radius-sm);
  border:1px solid var(--navy-700);
}
.hero-service-list svg{width:16px;height:16px;color:var(--gold-400);flex-shrink:0;}

/* ---------- Service cards ---------- */
.card-grid{display:grid;gap:22px;grid-template-columns:1fr;}
@media (min-width:640px){.card-grid{grid-template-columns:repeat(2,1fr);}}
@media (min-width:960px){.card-grid{grid-template-columns:repeat(4,1fr);}}
.card-grid.cols-3{grid-template-columns:1fr;}
@media (min-width:640px){.card-grid.cols-3{grid-template-columns:repeat(2,1fr);}}
@media (min-width:960px){.card-grid.cols-3{grid-template-columns:repeat(3,1fr);}}

.svc-card{
  background:var(--navy-850);
  border:1px solid var(--navy-700);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  transition:transform .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease);
}
.svc-card:hover{transform:translateY(-4px);border-color:var(--gold-500);background:var(--navy-800);}
.svc-card .icon{
  width:46px;height:46px;border-radius:12px;
  background:var(--navy-800);border:1px solid var(--navy-700);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.svc-card .icon svg{width:22px;height:22px;color:var(--gold-400);}
.svc-card h3{margin-bottom:8px;font-size:1.12rem;}
.svc-card p{font-size:.92rem;color:var(--gray-400);margin-bottom:14px;}
.svc-card .card-link{
  font-family:var(--font-mono);font-size:.8rem;font-weight:600;letter-spacing:.03em;
  color:var(--gold-400);display:inline-flex;align-items:center;gap:6px;
}
.svc-card .card-link svg{width:13px;height:13px;transition:transform .18s var(--ease);}
.svc-card:hover .card-link svg{transform:translateX(3px);}

/* ---------- Feature / list rows ---------- */
.feature-list{display:grid;gap:18px;}
@media (min-width:720px){.feature-list{grid-template-columns:repeat(2,1fr);}}
.feature-row{
  display:flex;gap:16px;align-items:flex-start;
  padding:20px;border-radius:var(--radius-md);
  background:var(--navy-900);border:1px solid var(--navy-800);
}
.feature-row .tooth-mark{
  width:26px;height:26px;flex-shrink:0;margin-top:2px;
}
.feature-row h4{font-size:1.02rem;margin-bottom:5px;color:var(--white);}
.feature-row p{font-size:.9rem;color:var(--gray-400);}

/* Simple bullet list using tooth marker */
.tooth-list{display:grid;gap:12px;}
.tooth-list li{display:flex;gap:12px;align-items:flex-start;font-size:.97rem;color:var(--gray-300);}
.tooth-list svg{width:16px;height:16px;color:var(--gold-500);flex-shrink:0;margin-top:4px;}

/* ---------- Two column content ---------- */
.split{display:grid;gap:40px;align-items:start;}
@media (min-width:900px){.split{grid-template-columns:1fr 1fr;}}
.split.reverse{direction:rtl;}
.split.reverse > *{direction:ltr;}
.media-block{
  border-radius:var(--radius-lg);
  border:1px solid var(--navy-700);
  background:linear-gradient(160deg,var(--navy-850),var(--navy-900));
  aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.media-block svg{width:34%;height:34%;color:var(--navy-600);}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(135deg,var(--navy-900),var(--navy-850));
  border-top:1px solid var(--navy-800);
  border-bottom:1px solid var(--navy-800);
  padding:64px 0;
  text-align:center;
}
.cta-band h2{margin-bottom:12px;}
.cta-band p{margin-inline:auto;margin-bottom:28px;color:var(--gray-400);}
.cta-band .btn-row{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}

/* ---------- Areas grid ---------- */
.areas-grid{display:grid;gap:12px;grid-template-columns:repeat(2,1fr);}
@media (min-width:640px){.areas-grid{grid-template-columns:repeat(3,1fr);}}
@media (min-width:960px){.areas-grid{grid-template-columns:repeat(4,1fr);}}
.area-chip{
  display:flex;align-items:center;gap:10px;
  padding:14px 16px;border-radius:var(--radius-sm);
  background:var(--navy-850);border:1px solid var(--navy-700);
  font-size:.92rem;color:var(--gray-300);
}
.area-chip svg{width:15px;height:15px;color:var(--gold-500);flex-shrink:0;}

/* ---------- Form ---------- */
.form-wrap{
  background:var(--navy-850);border:1px solid var(--navy-700);
  border-radius:var(--radius-lg);padding:32px;
}
.form-grid{display:grid;gap:18px;}
@media (min-width:640px){.form-grid.two-col{grid-template-columns:1fr 1fr;}}
.field{display:flex;flex-direction:column;gap:8px;}
.field label{font-size:.86rem;font-weight:600;color:var(--gray-300);}
.field .required{color:var(--gold-400);}
.field input,.field select,.field textarea{
  background:var(--navy-900);border:1px solid var(--navy-700);
  border-radius:var(--radius-sm);padding:13px 14px;color:var(--white);
  transition:border-color .15s;width:100%;
}
.field textarea{resize:vertical;min-height:120px;}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--gold-400);}
.field input::placeholder,.field textarea::placeholder{color:var(--gray-500);}
.form-note{font-size:.82rem;color:var(--gray-500);margin-top:14px;}
.form-status{font-size:.9rem;margin-top:14px;padding:12px 14px;border-radius:var(--radius-sm);display:none;}
.form-status.show{display:block;}
.form-status.ok{background:rgba(201,162,39,.12);border:1px solid var(--gold-600);color:var(--gold-300);}
.form-status.pending{background:rgba(201,162,39,.12);border:1px solid var(--gold-600);color:var(--gold-300);}
.form-status.err{background:rgba(180,60,60,.12);border:1px solid #7a3030;color:#e79b9b;}

/* ---------- Contact info cards ---------- */
.contact-card{
  background:var(--navy-850);border:1px solid var(--navy-700);
  border-radius:var(--radius-lg);padding:28px;margin-bottom:18px;
}
.contact-card h3{margin-bottom:6px;}
.contact-phone-link{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);font-size:1.3rem;font-weight:600;color:var(--gold-400);
  margin:10px 0 4px;
}
.contact-phone-link svg{width:20px;height:20px;}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{padding:18px 0 0;}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:8px;font-family:var(--font-mono);font-size:.78rem;color:var(--gray-500);}
.breadcrumbs a{color:var(--gray-400);}
.breadcrumbs a:hover{color:var(--gold-400);}
.breadcrumbs li:not(:last-child)::after{content:"/";margin-left:8px;color:var(--navy-600);}

/* ---------- Page hero (interior pages) ---------- */
.page-hero{
  padding:56px 0 60px;
  background:linear-gradient(180deg,var(--navy-950),var(--navy-900));
  border-bottom:1px solid var(--navy-800);
}
.page-hero .eyebrow{margin-bottom:12px;}
.page-hero p{margin-top:14px;font-size:1.05rem;}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-950);border-top:1px solid var(--navy-800);padding:64px 0 28px;}
.footer-grid{display:grid;gap:36px;margin-bottom:44px;}
@media (min-width:760px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr;}}
.footer-brand p{font-size:.9rem;color:var(--gray-500);margin-top:14px;}
.footer-col h4{font-family:var(--font-mono);font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gray-400);margin-bottom:16px;}
.footer-col ul{display:grid;gap:10px;}
.footer-col a{font-size:.9rem;color:var(--gray-400);transition:color .15s;}
.footer-col a:hover{color:var(--gold-400);}
.footer-bottom{
  border-top:1px solid var(--navy-800);padding-top:24px;
  display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;
  font-size:.8rem;color:var(--gray-500);
}
.footer-bottom a{color:var(--gray-500);}
.footer-bottom a:hover{color:var(--gold-400);}

/* ---------- Utility ---------- */
.text-center{text-align:center;}
.mx-auto{margin-inline:auto;}
.mt-lg{margin-top:40px;}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}
