/* Auburn Lock & Car Keys - Shared Stylesheet */
:root {
  --orange: #F26B1F;
  --orange-bright: #FF7A22;
  --orange-deep: #C95214;
  --ink: #0E0E10;
  --ink-soft: #1A1A1E;
  --ink-line: #2A2A30;
  --paper: #F4F1EC;
  --paper-warm: #EDE8DF;
  --concrete: #C9C5BD;
  --steel: #5A5A60;
  --steel-light: #8A8A92;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1F1F23;
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}

p { color: #2A2A30; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* TOP BAR */
.topbar { background: var(--ink); color: var(--paper); font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--ink-line); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-tag { display: inline-flex; align-items: center; gap: 8px; }
.topbar-tag .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 0 rgba(242,107,31,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(242,107,31,0.7);} 70% { box-shadow: 0 0 0 10px rgba(242,107,31,0);} 100% { box-shadow: 0 0 0 0 rgba(242,107,31,0);} }
.topbar a.phone { color: var(--orange-bright); font-weight: 700; font-size: 15px; }

/* NAV */
nav.main { background: var(--white); border-bottom: 1px solid #E5E1D8; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
nav.main .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; gap: 24px; }
.brand img { height: 90px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 15px; align-items: center; }
.nav-links > a, .nav-links .dropdown > a { position: relative; padding: 6px 0; color: #1F1F23; transition: color .2s; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: var(--orange); }
.nav-links > a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--orange); transition: width .25s ease; }
.nav-links > a:hover::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-top: 3px solid var(--orange); padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 10; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 22px; font-size: 14px; color: #1F1F23; font-weight: 600; transition: background .15s, color .15s; }
.dropdown-menu a:hover { background: var(--paper); color: var(--orange); }
.dropdown-caret { font-size: 10px; transform: translateY(1px); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--white); padding: 14px 24px; font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 16px; border: 2px solid var(--orange); transition: all .2s; }
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--orange); }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.mobile-menu { display: none; background: var(--ink); padding: 16px 24px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--paper); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--ink-line); }
.mobile-menu a.sub { font-size: 13px; padding-left: 16px; color: var(--concrete); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: 0; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--orange); color: var(--white); padding: 18px 32px; font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 18px; border: 2px solid var(--orange); transition: transform .15s, background .2s; cursor: pointer; }
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--paper); padding: 18px 32px; font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 18px; border: 2px solid var(--paper); transition: all .2s; }
.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-ghost.dark { color: var(--ink); border-color: var(--ink); }
.btn-ghost.dark:hover { background: var(--ink); color: var(--paper); }

/* SUB-PAGE HERO */
.subhero { background: var(--ink); color: var(--paper); padding: 80px 0 100px; position: relative; overflow: hidden; }
.subhero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(115deg, transparent 38%, rgba(242,107,31,0.95) 38%, rgba(242,107,31,0.95) 42%, transparent 42%); opacity: 0.15; z-index: 0; }
.subhero .container { position: relative; z-index: 1; }
.breadcrumbs { font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--concrete); margin-bottom: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--concrete); transition: color .2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { color: var(--steel); }
.breadcrumbs .current { color: var(--orange); font-weight: 600; }
.subhero-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-bright); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; font-size: 14px; margin-bottom: 20px; }
.subhero-eyebrow .bar { width: 36px; height: 2px; background: var(--orange); }
.subhero h1 { font-size: clamp(38px, 5.5vw, 68px); color: var(--white); margin-bottom: 22px; line-height: 1.05; text-transform: uppercase; max-width: 900px; }
.subhero h1 .accent { color: var(--orange); }
.subhero-sub { font-size: 19px; color: #D8D4CC; max-width: 720px; margin-bottom: 32px; line-height: 1.6; }
.subhero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTION */
section { padding: 90px 0; position: relative; }
.section-head { margin-bottom: 56px; max-width: 820px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 14px; margin-bottom: 18px; }
.section-eyebrow .bar { width: 40px; height: 2px; background: var(--orange); }
.section-title { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.05; color: var(--ink); margin-bottom: 18px; text-transform: uppercase; }
.section-title .accent { color: var(--orange); }
.section-sub { font-size: 17px; color: var(--steel); max-width: 680px; line-height: 1.65; }

/* PROSE */
.prose p { font-size: 17px; color: #2A2A30; margin-bottom: 16px; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose h3 { font-size: 26px; margin: 36px 0 14px; color: var(--ink); }
.prose h3:first-child { margin-top: 0; }
.prose ul { margin: 12px 0 20px 22px; }
.prose ul li { margin-bottom: 8px; font-size: 17px; color: #2A2A30; line-height: 1.7; }

/* TWO-COL CONTENT */
.two-col { background: var(--white); }
.two-col-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.two-col-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 4px solid var(--ink); position: sticky; top: 110px; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }
.two-col-image::after { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 3px solid var(--orange); z-index: -1; }

/* FEATURE STRIPE / WHEN-YOU-NEED */
.stripe { background: var(--paper); }
.stripe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.stripe-card { background: var(--white); padding: 32px 28px; border-top: 4px solid var(--orange); transition: transform .25s, box-shadow .25s; }
.stripe-card:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--ink); }
.stripe-card .icon { width: 48px; height: 48px; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.stripe-card .icon svg { width: 24px; height: 24px; fill: var(--white); }
.stripe-card h3 { font-size: 21px; color: var(--ink); margin-bottom: 10px; text-transform: uppercase; }
.stripe-card p { color: #2A2A30; font-size: 15px; line-height: 1.6; }

/* PROCESS / STEPS */
.process { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.process .section-title { color: var(--white); }
.process .section-sub { color: var(--concrete); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { position: relative; padding-top: 24px; }
.process-step .step-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 72px; color: var(--orange); line-height: 1; opacity: .9; margin-bottom: 12px; }
.process-step h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; text-transform: uppercase; }
.process-step p { color: #D8D4CC; font-size: 15px; line-height: 1.6; }

/* RELATED SERVICES */
.related { background: var(--paper-warm); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.related-card { background: var(--white); padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s, box-shadow .2s; border-left: 3px solid var(--orange); }
.related-card:hover { transform: translateX(4px); box-shadow: 6px 6px 0 var(--ink); }
.related-card h4 { font-size: 17px; color: var(--ink); text-transform: uppercase; }
.related-card p { font-size: 14px; color: var(--steel); line-height: 1.5; }
.related-card .arrow { font-family: 'Oswald', sans-serif; color: var(--orange); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; margin-top: 6px; }

/* EMERGENCY CTA */
.emergency { padding: 80px 0; background: var(--orange); color: var(--white); position: relative; overflow: hidden; }
.emergency::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,0.04) 30px, rgba(0,0,0,0.04) 60px); }
.emergency .container { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
.emergency-eyebrow { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 14px; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
.emergency-eyebrow .pulse { width: 10px; height: 10px; background: var(--white); border-radius: 50%; animation: pulse-white 1.6s infinite; }
@keyframes pulse-white { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(1.4);} }
.emergency h2 { font-size: clamp(30px, 4vw, 48px); color: var(--white); line-height: 1.05; text-transform: uppercase; }
.emergency-phone { background: var(--ink); color: var(--white); padding: 26px 36px; display: inline-flex; align-items: center; gap: 16px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(24px, 3vw, 36px); letter-spacing: 0.02em; transition: transform .15s; border: 3px solid var(--ink); }
.emergency-phone:hover { transform: translateY(-3px); background: var(--white); color: var(--ink); }
.emergency-phone svg { width: 28px; height: 28px; fill: var(--orange); }

/* FAQ */
.faq { background: var(--white); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E1D8; }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 24px 0; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; text-transform: uppercase; letter-spacing: 0.01em; }
.faq-q .plus { flex-shrink: 0; width: 32px; height: 32px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 24px; color: #2A2A30; font-size: 17px; line-height: 1.7; max-width: 820px; }
.faq-item.open .faq-a { max-height: 500px; }

/* FOOTER CTA */
.footer-cta { background: var(--ink); color: var(--paper); padding: 90px 0; text-align: center; }
.footer-cta h2 { font-size: clamp(36px, 5vw, 64px); color: var(--white); margin-bottom: 22px; text-transform: uppercase; }
.footer-cta h2 .accent { color: var(--orange); }
.footer-cta p { color: #D8D4CC; font-size: 18px; max-width: 620px; margin: 0 auto 36px; line-height: 1.6; }
.footer-cta-buttons { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* FOOTER */
footer { background: #08080A; color: #C9C5BD; padding: 64px 0 28px; border-top: 4px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 90px; margin-bottom: 20px; }
.footer-brand p { color: #C9C5BD; font-size: 15px; line-height: 1.7; max-width: 300px; }
footer h5 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); margin-bottom: 22px; letter-spacing: 0.03em; text-transform: uppercase; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { color: #C9C5BD; font-size: 15px; transition: color .2s; }
footer ul a:hover { color: var(--orange); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #C9C5BD; margin-bottom: 14px; }
.footer-contact-row svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer-contact-row a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--ink-line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 14px; color: var(--steel-light); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .brand img { height: 70px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col-image { position: static; max-height: 480px; aspect-ratio: 4/3; }
  .emergency .container { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 70px 0; }
  .subhero { padding: 60px 0 80px; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .topbar-left { flex-direction: column; align-items: flex-start; gap: 6px; }
  .topbar .container { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 60px; }
  .nav-cta { padding: 11px 18px; font-size: 14px; }
  .btn-primary, .btn-ghost { padding: 14px 22px; font-size: 16px; }
}
