@font-face{font-family:'Archivo Black';src:url(assets/fonts/ArchivoBlack-Regular.ttf) format('truetype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Playfair Display';src:url(assets/fonts/PlayfairDisplay-VF.ttf) format('truetype');font-weight:400 900;font-style:normal;font-display:swap;}
/* Central Key & Safe Co. brand-locked, single theme (black over yellow on paper).
   Tokens per Central-Brand-Guidelines v1.0 (2026-08-13). */

:root {
  --yellow: #FFD100;
  --black: #000000;
  --ink: #101010;
  --paper: #FBFAF3;
  --white: #FFFFFF;
  --muted: #56524a;
  --hairline: #e6e2d4;
  --display: 'Archivo Black', Arial, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --body: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --measure: 68ch;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--body);
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
main a:not(.btn):not(.svc-card) { text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }
main a:not(.btn):not(.svc-card):hover { background: var(--yellow); text-decoration: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(34px, 5.4vw, 62px); }
h2 { font-size: clamp(24px, 3.2vw, 36px); }
h3 { font-size: 19px; }
p, ul { max-width: var(--measure); }

.eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 3px;
  background: var(--yellow);
  margin-right: 12px;
  vertical-align: middle;
}

/* the padlock-slat divider, the brand's signature stripe */
.slats {
  height: 8px;
  background: repeating-linear-gradient(90deg,
    var(--black) 0 26px, var(--yellow) 26px 42px);
}

/* ---------------------------------------------------------------- header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px var(--pad);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon { width: 44px; height: 44px; flex: none; }
.brand-name {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .02em;
}
.brand-sub {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .32em;
}
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 8px 12px;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a.active { border-bottom-color: var(--yellow); }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border: 3px solid var(--black);
}
.btn-phone, .btn-yellow { background: var(--yellow); color: var(--black); }
.btn-phone:hover, .btn-yellow:hover { background: var(--black); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-dark:hover { background: var(--yellow); color: var(--black); }
.btn-ghost { background: transparent; color: var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--yellow); }
a.btn:focus-visible, a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ---------------------------------------------------------------- sections */
section { padding: clamp(44px, 7vw, 84px) var(--pad); }

.hero {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, .8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  border-bottom: 8px solid var(--black);
}
.hero .eyebrow { color: var(--black); }
.hero .eyebrow::before { background: var(--black); }
.hero p.lede { font-size: clamp(17px, 2vw, 21px); max-width: 56ch; }
.hero-badge { justify-self: center; width: clamp(170px, 22vw, 300px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; }
  .hero-badge { order: -1; width: 150px; }
}

/* ---------------------------------------------------------------- photography */
.photo img, figure.photo img { display: block; width: 100%; }

/* hero photo: full-bleed band under the yellow hero */
.hero-photo { margin: 0; }
.hero-photo img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 430px);
  object-fit: cover;
  object-position: center 60%;
}

/* framed photo: the brand's yellow rule under a black keyline */
.framed { margin: 0; border: 3px solid var(--black); background: var(--white); }
.framed img { display: block; width: 100%; }
.framed figcaption,
figure.photo figcaption {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  padding: 10px 14px;
  border-top: 3px solid var(--yellow);
}
.band-dark .framed { background: var(--ink); }
.band-dark .framed figcaption { color: #cfcabc; }

/* duotone-ish treatment for archival shots so they sit in the palette */
.archive img { filter: grayscale(1) contrast(1.06); }

/* archive row on the about page */
.archive-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 26px 0 0;
}
.archive-row img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }

/* photo used as a service-page banner */
.svc-banner img {
  width: 100%;
  height: clamp(180px, 26vw, 300px);
  object-fit: cover;
  border: 3px solid var(--black);
}

/* trust bar: black band with yellow figures */
.trust-bar {
  background: var(--black);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 72px);
  padding: 26px var(--pad);
}
.trust-bar div { min-width: 130px; }
.trust-num {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--yellow);
  display: block;
  font-variant-numeric: tabular-nums;
}
.trust-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }

/* service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 6px solid var(--yellow);
  padding: 22px 20px 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 6px 0 var(--black); }
.svc-card h3 { margin: 0; }
.svc-card p { margin: 0; font-size: 15px; color: var(--muted); }
.svc-more { font-weight: 700; font-size: 14px; margin-top: auto; padding-top: 6px; }
@media (prefers-reduced-motion: reduce) { .svc-card { transition: none; } .svc-card:hover { transform: none; } }

/* alternating bands */
.band-white { background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.band-dark { background: var(--black); color: var(--paper); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark .eyebrow { color: var(--yellow); }
.band-dark .eyebrow::before { background: var(--yellow); }
.band-dark a { color: var(--yellow); }

/* reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
blockquote.review {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-left: 6px solid var(--yellow);
  padding: 20px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}
blockquote.review footer {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--muted);
}
.stars { color: var(--black); background: var(--yellow); padding: 2px 10px; font-weight: 700; display: inline-block; }
.band-dark .stars { color: var(--black); }

/* two-column story blocks */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

/* checklists on service pages */
ul.checks { list-style: none; padding: 0; }
ul.checks li { padding: 9px 0 9px 34px; position: relative; border-bottom: 1px solid var(--hairline); }
ul.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--black) 0 4px, var(--yellow) 4px 7px);
}

/* FAQ */
details.faq {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-left: 6px solid var(--yellow);
  margin: 0 0 10px;
  max-width: 78ch;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 18px;
  list-style: none;
}
details.faq summary::before { content: "+"; font-family: var(--display); margin-right: 12px; }
details.faq[open] summary::before { content: "\2212"; }  /* minus sign, escaped so the CSS stays ASCII */
details.faq p { padding: 0 18px 16px 44px; margin: 0; color: var(--muted); }

/* history timeline */
.timeline { list-style: none; padding: 0; max-width: 78ch; }
.timeline li { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.timeline .year { font-family: var(--display); font-size: 20px; color: var(--black); font-variant-numeric: tabular-nums; }

/* CTA band */
.cta-band { background: var(--yellow); color: var(--black); border-top: 8px solid var(--black); }
.cta-band p { max-width: none; }
.cta-band .btn { margin: 6px 10px 0 0; }

/* map + contact */
.map-embed iframe { width: 100%; height: 380px; border: 3px solid var(--black); }
.map-card { background: var(--white); border: 3px solid var(--black); padding: 24px; max-width: 480px; }
.map-card .map-title { font-family: var(--display); font-size: 20px; margin: 0 0 8px; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 26px; }
.contact-card { background: var(--white); border: 1px solid var(--hairline); border-top: 6px solid var(--yellow); padding: 20px; }
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { margin: 0; }

/* area chips */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; max-width: none; }
.area-list li { background: var(--white); border: 2px solid var(--black); padding: 7px 14px; font-weight: 700; font-size: 14px; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--black); color: var(--paper); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 0 var(--pad) 40px;
}
.footer-word { font-family: var(--display); font-size: 22px; color: var(--yellow); margin: 0; }
.footer-word span { display: block; font-family: var(--serif); font-weight: 700; font-size: 12px; letter-spacing: .3em; color: var(--paper); }
.footer-motto { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--yellow); }
.site-footer h4 { font-family: var(--display); text-transform: uppercase; font-size: 14px; letter-spacing: .08em; color: var(--yellow); margin: 0 0 10px; }
.site-footer a { color: var(--paper); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 3px 0; font-size: 15px; }
.footer-legal { text-align: center; font-size: 13px; padding: 16px; margin: 0; background: var(--black); color: #b9b5aa; }

.footer-legal a { color: inherit; text-decoration: underline; }
.footer-legal a:hover { color: var(--yellow, #FFD100); }
