/* ===========================================================
   Kingston's Locksmiths — Oxford
   Base styles — no external fonts/CDNs (system font stack only)
   Palette: black / gold / beige
   =========================================================== */

:root {
  --black: #000000;
  --black-soft: #000000;
  --gold: #cda45a;
  --gold-dark: #a67f34;
  --gold-shine: linear-gradient(135deg, #fbe8b8 0%, #e8c375 22%, #b8863a 48%, #f2d68f 72%, #cda45a 100%);
  --gold-shine-hover: linear-gradient(135deg, #f2d68f 0%, #d9ad5f 22%, #a3792f 48%, #e8c375 72%, #b8863a 100%);
  --red: #a13a2a;
  --beige-50: #f6efe0;
  --beige-100: #ecdfc4;
  --beige-200: #d8c6a0;
  --brown-600: #6b5d47;
  --ink: #211c15;
  --radius: 10px;
  --max-width: 1120px;
  --shadow: 0 4px 16px rgba(20, 17, 13, 0.14);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--black); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

ul.plain { list-style: none; margin: 0; padding: 0; }

/* ---------- Top emergency bar ---------- */
.emergency-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
}

.emergency-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--black);
  color: #fff;
}

.header-logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(205,164,90,0.18);
  background: radial-gradient(ellipse at center, rgba(205,164,90,0.10) 0%, rgba(0,0,0,0) 70%);
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: var(--max-width);
  justify-content: center;
}

.logo-img {
  height: 150px;
  width: auto;
  max-width: 100%;
  display: block;
}

.header-nav-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
}

nav.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 2px;
  transition: color 0.25s ease;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-shine);
  transition: right 0.25s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--gold);
}

nav.main-nav a:hover::after,
nav.main-nav a[aria-current="page"]::after {
  right: 0;
}

.call-btn {
  background: var(--gold-shine);
  background-size: 200% auto;
  color: var(--black-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 8px rgba(166,127,52,0.35);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn:hover {
  background: var(--gold-shine-hover);
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 6px 16px rgba(166,127,52,0.5);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: #fff;
  padding: 64px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { color: #fff; }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--beige-50);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gold-shine);
  background-size: 200% auto;
  color: var(--black-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 10px rgba(166,127,52,0.35);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-shine-hover);
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 8px 20px rgba(166,127,52,0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 10px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.45);
}

.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--beige-200);
}

.hero-badges li { display: flex; align-items: center; gap: 8px; }

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(205,164,90,0.35);
  border-radius: var(--radius);
  padding: 26px;
}

.hero-panel h2 {
  background: var(--gold-shine);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
}

.hero-panel ul { margin: 0; padding-left: 1.1em; color: var(--beige-50); }
.hero-panel li { margin-bottom: 8px; }

/* ---------- Sections ---------- */
section {
  padding: 56px 0;
}

section.alt { background: var(--beige-50); }

.section-head {
  max-width: 60ch;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head p { color: var(--brown-600); }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--beige-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--brown-600); margin-bottom: 12px; }
.card a.card-link { font-weight: 600; text-decoration: none; color: var(--gold-dark); }
.card a.card-link::after { content: " →"; }

/* ---------- Callout / CTA band ---------- */
.cta-band {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 48px 0;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: var(--beige-200); max-width: 55ch; margin: 0 auto 22px; }

/* ---------- Lists / area coverage ---------- */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-list li {
  padding: 10px 14px;
  background: var(--beige-50);
  border-radius: 6px;
  border: 1px solid var(--beige-100);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  padding: 26px 0;
  border-top: 1px solid var(--beige-100);
  border-bottom: 1px solid var(--beige-100);
  color: var(--brown-600);
  font-size: 0.92rem;
  text-align: center;
}

/* ---------- Forms ---------- */
form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--beige-200);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

form textarea { min-height: 120px; resize: vertical; }

form button {
  justify-self: start;
}

.form-note {
  font-size: 0.85rem;
  color: var(--brown-600);
}

/* ---------- Contact / info blocks ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.95rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-block; }

  nav.main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  nav.main-nav.open { display: block; }

  nav.main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
  }

  nav.main-nav a { display: block; padding: 8px 0; }
}

/* ---------- Floating action buttons ---------- */
.floating-actions a {
  position: fixed;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 500;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.floating-actions a svg {
  width: 28px;
  height: 28px;
}

.fab-whatsapp {
  left: 20px;
  background: #25d366;
}

.fab-whatsapp:hover { background: #1ebe57; }

.fab-call {
  right: 20px;
  background: var(--gold-shine);
  background-size: 200% auto;
}

.fab-call:hover { background-position: right center; }

@media (max-width: 480px) {
  .floating-actions a { width: 52px; height: 52px; bottom: 16px; }
  .fab-whatsapp { left: 14px; }
  .fab-call { right: 14px; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black-soft);
  color: var(--beige-200);
  padding: 40px 0 24px;
  font-size: 0.9rem;
}

footer.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

footer.site-footer h4 { color: var(--gold); font-size: 1rem; }
footer.site-footer a { color: var(--beige-200); text-decoration: none; }
footer.site-footer a:hover { color: var(--gold); text-decoration: underline; }
footer.site-footer .fine-print {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(216,198,160,0.15);
  margin-top: 10px;
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(216,198,160,0.6);
}

.footer-logo { height: 64px; margin-bottom: 12px; }
.footer-brand p { margin: 6px 0 12px; font-size: 0.85rem; }

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(216,198,160,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover { border-color: var(--gold); background: rgba(205,164,90,0.12); }
.social-links .icon-inline { width: 16px; height: 16px; }

.footer-contact li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

/* ---------- Icons (generic) ---------- */
.icon, .icon-inline { display: inline-flex; }
.icon-inline svg { width: 1em; height: 1em; vertical-align: -0.15em; }
.icon svg { width: 100%; height: 100%; }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--black);
  padding: 34px 0;
}

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  text-align: center;
}

.feature-item .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--gold);
  border: 1.5px solid rgba(205,164,90,0.4);
  border-radius: 50%;
  padding: 9px;
}

.feature-item strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--beige-200);
}

/* ---------- Service card icons ---------- */
.card .service-icon {
  width: 46px;
  height: 46px;
  color: var(--gold-dark);
  background: var(--beige-50);
  border-radius: 50%;
  padding: 11px;
  margin-bottom: 14px;
}

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  border: 2px dashed var(--beige-200);
  border-radius: var(--radius);
  background: var(--beige-50);
  color: var(--brown-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 40px 24px;
  min-height: 220px;
}

.photo-placeholder .icon { width: 42px; height: 42px; color: var(--gold-dark); }
.photo-placeholder strong { color: var(--black); font-size: 0.95rem; }
.photo-placeholder span { font-size: 0.82rem; }

.photo-placeholder.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(205,164,90,0.35);
  color: var(--beige-200);
}
.photo-placeholder.dark strong { color: #fff; }

.job-media {
  border: 2px dashed var(--beige-200);
  border-radius: calc(var(--radius) - 4px);
  background: var(--beige-50);
  color: var(--brown-600);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 16px;
}

.job-media .icon { width: 34px; height: 34px; color: var(--gold-dark); }
.job-media strong { color: var(--black); font-size: 0.85rem; font-weight: 600; }

.job-media video,
.job-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.before-after figure {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.before-after img,
.before-after video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---------- Our Work: larger cards + play button ---------- */
.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.work-photo {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-grid .before-after figure { aspect-ratio: 4 / 3; }

.video-figure { cursor: pointer; position: relative; }

.work-video-full {
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  margin-bottom: 16px;
}

.work-video-full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.play-badge .icon { width: 22px; height: 22px; color: #fff; margin-left: 3px; }

.video-figure.is-playing .play-badge { opacity: 0; }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(205,164,90,0.35);
  box-shadow: var(--shadow);
  max-height: 480px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ---------- About section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--beige-50);
  border: 1px solid var(--beige-100);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-600);
}

.trust-badges .icon-inline { color: var(--gold-dark); }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff;
  border: 1px solid var(--beige-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.review-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.review-stars .icon-inline { width: 16px; height: 16px; }
.review-card p.review-text { font-style: italic; color: var(--ink); }
.review-card .review-author { font-weight: 700; color: var(--black); font-size: 0.9rem; }
.review-example-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  background: var(--beige-50);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.reviews-note {
  background: var(--beige-50);
  border: 1px solid var(--beige-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--brown-600);
  font-size: 0.92rem;
}

/* ---------- Dual CTA band ---------- */
.dual-cta { background: var(--black-soft); padding: 40px 0; }

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dual-cta-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(205,164,90,0.25);
  border-radius: var(--radius);
  padding: 20px;
  flex-wrap: wrap;
}

.dual-cta-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}

.dual-cta-box div { flex: 1; min-width: 160px; }
.dual-cta-box strong { display: block; color: #fff; }
.dual-cta-box span { display: block; color: var(--beige-200); font-size: 0.85rem; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--beige-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--beige-50);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon-inline { color: var(--gold-dark); transition: transform 0.2s ease; }
.faq-item[open] summary .icon-inline { transform: rotate(180deg); }
.faq-item p { padding: 16px 20px; margin: 0; color: var(--brown-600); }

/* ---------- Pin list (areas) ---------- */
.pin-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pin-list li { display: flex; align-items: center; gap: 8px; }
.pin-list .icon-inline { color: var(--gold-dark); }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .dual-cta-grid { grid-template-columns: 1fr; }
}
