/**
 * © High Security Locksmiths
 * main.css - "Heritage Security" design system, v2
 *
 * Brick red + brass on a warm cream canvas. Stencil display type,
 * crisp hairline borders, restrained shadows, disciplined editorial
 * spacing. Depth comes from borders and surface shifts, not glow.
 */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&family=Saira+Stencil+One&display=swap");

:root {
  /* Palette */
  --red-950: #2c0a05;
  --red-900: #3f1009;
  --red-800: #5c190d;
  --red-700: #7c2413;
  --red-600: #9c3018;
  --red-500: #b23b1e;

  --brass-700: #8f6b1f;
  --brass-600: #a97f2e;
  --brass-500: #bf9440;
  --brass-300: #dcc48c;
  --brass-100: #f1e6cd;

  --cream: #faf7f0;
  --cream-2: #f3edde;
  --white: #ffffff;
  --line: #e3dac6;
  --line-soft: #ece5d4;
  --line-strong: #cfc3a8;

  --ink: #261c16;
  --text: #56493f;
  --muted: #877a70;

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --stencil: "Saira Stencil One", "Allerta Stencil", sans-serif;

  /* Shape & depth */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(63, 16, 9, 0.06);
  --shadow: 0 1px 2px rgba(63, 16, 9, 0.05), 0 10px 26px rgba(63, 16, 9, 0.09);

  --topbar-height: 40px;
  --navbar-height: 72px;
  --header-height: calc(var(--topbar-height) + var(--navbar-height));
}

/* ===== RESET / BASE ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brass-300);
  color: var(--red-900);
}

:focus-visible {
  outline: 2px solid var(--red-600);
  outline-offset: 2px;
}

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

h1,
h2 {
  font-family: var(--stencil);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--red-700);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

h3,
h4 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 4.4vw, 52px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 20px; }

p {
  margin: 0 0 1em;
}

a {
  color: var(--red-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--red-900);
}

b,
strong {
  color: var(--ink);
  font-weight: 600;
}

.container {
  width: min(1140px, 100% - 48px);
  margin-inline: auto;
}

.container--narrow {
  width: min(820px, 100% - 48px);
  margin-inline: auto;
}

main {
  padding-top: var(--header-height);
}

section {
  padding: 92px 0;
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .container,
  .container--narrow {
    width: calc(100% - 40px);
  }
}

/* ===== SHARED PIECES ===== */

/* Kicker label above headings: rule + spaced small caps */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-600);
  flex-shrink: 0;
}

.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-600);
  flex-shrink: 0;
}

.lede {
  font-size: 18.5px;
  color: var(--text);
  max-width: 62ch;
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

/* Buttons — squared-off, uppercase utility style */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--red-700);
  border-color: var(--red-800);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--red-800);
  color: var(--white);
}

.btn-brass {
  background: var(--brass-500);
  border-color: var(--brass-600);
  color: var(--red-900);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), var(--shadow-sm);
}

.btn-brass:hover {
  background: var(--brass-300);
  color: var(--red-900);
}

.btn-outline {
  background: transparent;
  border-color: var(--red-600);
  color: var(--red-700);
}

.btn-outline:hover {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--cream);
}

.btn--sm {
  padding: 12px 18px;
  font-size: 13px;
}

/* Cards */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

/* Checklist */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  text-align: left;
}

.checklist li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--line-soft);
}

.checklist li:first-child {
  border-top: 1px solid var(--line-soft);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background: var(--brass-100);
  border: 1px solid var(--brass-300);
  color: var(--brass-700);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust strip */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-500);
}

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}

/* Utility top bar */
.topbar {
  background: var(--red-900);
  color: rgba(250, 247, 240, 0.85);
  font-size: 13px;
  font-weight: 500;
  height: var(--topbar-height);
}

.topbar__inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fae72;
  box-shadow: 0 0 0 3px rgba(79, 174, 114, 0.25);
  flex-shrink: 0;
}

.topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.topbar a {
  color: var(--brass-300);
  font-weight: 600;
  white-space: nowrap;
}

.topbar a:hover {
  color: var(--white);
}

.topbar__email {
  letter-spacing: 0.01em;
}

/* Main nav bar */
.navbar {
  background: rgba(250, 247, 240, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: auto;
}

.brand__name {
  font-family: var(--stencil);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--red-700);
  white-space: nowrap;
}

.brand__tag {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brass-600);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

/* Underline indicator for hover / active */
.site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a.is-active::after {
  transform: scaleX(1);
}

/* Call link shown only inside the mobile menu */
.nav-call {
  display: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red-700);
}

/* Dropdown */

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.dropdown a:hover {
  background: var(--cream-2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta .btn {
  white-space: nowrap;
}

.call-short {
  display: none;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 1439px) {
  .brand__tag {
    display: none;
  }
}

/* Compact desktop header: keep the full nav visible on smaller laptops
   and narrow browser windows (e.g. with a sidebar open) */
@media (max-width: 1249px) and (min-width: 1000px) {
  .site-header__inner {
    gap: 14px;
  }

  .brand img {
    width: 38px;
  }

  .brand__name {
    font-size: 14.5px;
  }

  .site-nav a {
    font-size: 14px;
    padding: 8px 9px;
  }

  .site-nav > ul > li > a::after {
    left: 9px;
    right: 9px;
  }

  .header-cta .btn .call-full {
    display: none;
  }

  .header-cta .btn .call-short {
    display: inline;
  }
}

@media (max-width: 999px) {
  /* A translucent blurred navbar creates a containing block that would
     misplace the absolutely-positioned menu below — use a solid bar. */
  .navbar {
    background: var(--cream);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 24px;
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav a {
    font-size: 18px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--line-soft);
  }

  .site-nav > ul > li > a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--cream-2);
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
  }

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

  .nav-call {
    display: block;
    margin-top: 20px;
  }

  .nav-call a {
    background: var(--red-700);
    color: var(--cream);
    text-align: center;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
  }

  .nav-call a:hover {
    background: var(--red-800);
    color: var(--white);
  }
}

@media (max-width: 760px) {
  .topbar__email,
  .topbar__area {
    display: none;
  }
}

@media (max-width: 700px) {
  .header-cta .btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 13px;
  }

  .topbar {
    font-size: 12px;
  }
}

/* ===== HERO (homepage) ===== */

.hero {
  padding: 76px 0 84px;
}

@media (max-width: 640px) {
  .hero {
    padding: 44px 0 60px;
  }

  .page-hero {
    padding: 48px 0 40px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.hero__media {
  position: relative;
}

.hero__media img {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid var(--brass-300);
  border-radius: var(--radius);
  z-index: -1;
}

.hero__badge {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3f9d63;
  box-shadow: 0 0 0 4px rgba(63, 157, 99, 0.18);
}

.hero__badge b {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.hero__badge small {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__media::before {
    inset: 12px 12px -12px -12px;
  }

  .hero__badge {
    left: 14px;
  }
}

/* ===== STAT BAND ===== */

.stat-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}

.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 34px 24px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat__value {
  display: block;
  font-family: var(--stencil);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  color: var(--red-700);
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 760px) {
  .stat-band__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat:nth-child(3) {
    border-left: none;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

/* ===== SECTION VARIANTS ===== */

.section--white {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section--tint {
  background: var(--cream-2);
}

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--red-600);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--brass-100);
  border: 1px solid var(--brass-300);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon img {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 19px;
  margin: 8px 0 0;
}

.service-card p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.service-card__link {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-600);
}

/* Make the whole card clickable through the link */
.service-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card__link::after {
  content: " →";
  transition: margin 0.18s ease;
}

.service-card:hover .service-card__link::after {
  margin-left: 4px;
}

/* Feature columns */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 32px 28px 8px 0;
  border-bottom: 1px solid var(--line);
}

.feature h3 {
  font-size: 19px;
}

.feature__num {
  font-family: var(--stencil);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--red-600);
  display: block;
  margin-bottom: 12px;
}

.feature__num::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 10px;
  background: var(--brass-500);
}

.feature p {
  font-size: 15.5px;
  margin: 0 0 24px;
}

/* ===== RED CTA BAND ===== */

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 85% -20%, var(--red-600) 0%, var(--red-800) 45%, var(--red-900) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow);
}

/* Subtle concrete texture + brass keyline frame */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/concrete-wall.png");
  opacity: 0.14;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(220, 196, 140, 0.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 8px;
}

.cta-band .eyebrow {
  color: var(--brass-300);
}

.cta-band .eyebrow::before {
  background: var(--brass-500);
}

.cta-band p {
  color: rgba(250, 247, 240, 0.78);
  margin: 0;
  max-width: 52ch;
}

.cta-band__phone {
  text-align: center;
}

.cta-band__phone .phone-large {
  color: var(--white);
}

.cta-band__phone a.phone-large:hover {
  color: var(--brass-300);
}

@media (max-width: 720px) {
  .cta-band {
    padding: 44px 30px;
  }
}

/* Big stencil phone number */

.phone-large {
  font-family: var(--stencil);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--ink);
  display: inline-block;
  line-height: 1.25;
}

a.phone-large:hover {
  color: var(--red-600);
}

/* ===== TESTIMONIALS ===== */

.quotes-grid {
  columns: 3 300px;
  column-gap: 20px;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 30px;
  margin: 0 0 20px;
  break-inside: avoid;
}

.quote-card::before {
  content: "“";
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.5;
  color: var(--red-600);
  display: block;
  margin-bottom: 18px;
}

.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 15.5px;
  color: var(--text);
}

.quote-card figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.quote-card figcaption b {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}

.quote-card figcaption span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Service area list */

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.15s ease;
}

.area-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-600);
}

.area-list li:hover {
  border-color: var(--line-strong);
}

/* Letter pills */

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pill-links a::before {
  content: "↧";
  color: var(--red-600);
}

.pill-links a:hover {
  border-color: var(--red-600);
  background: var(--brass-100);
}

/* ===== PAGE HERO (sub-pages) ===== */

.page-hero {
  padding: 80px 0 64px;
  text-align: center;
  background:
    linear-gradient(rgba(250, 247, 240, 0.96), rgba(250, 247, 240, 0.96)),
    url("../img/concrete-wall.png");
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-600);
  flex-shrink: 0;
}

.page-hero .lede {
  margin-inline: auto;
}

/* Service detail layout */

.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 860px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

.aside-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.aside-card .card {
  text-align: center;
  padding: 40px 32px;
  border-top: 3px solid var(--red-700);
}

.aside-card .eyebrow {
  justify-content: center;
}

/* ===== GALLERY ===== */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.gallery-tab {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
}

.gallery-tab:hover {
  border-color: var(--red-600);
  color: var(--red-700);
}

.gallery-tab.is-active {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.gallery-grid[hidden] {
  display: none;
}

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.gallery-grid figcaption b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

/* ===== ABOUT ===== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-grid img {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

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

  .about-grid img {
    max-width: 380px;
    margin-inline: auto;
  }
}

/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.contact-card {
  text-align: center;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid var(--red-700);
}

.contact-card .btn {
  margin-top: auto;
}

.contact-card p {
  margin-bottom: 22px;
}

.contact-card .label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

/* Map */

.map-frame {
  border: 1px solid var(--line-strong);
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

/* ===== FOOTER ===== */

.site-footer {
  position: relative;
  background: var(--red-950);
  color: rgba(250, 247, 240, 0.68);
  padding: 76px 0 36px;
  font-size: 15px;
  border-top: 3px solid var(--brass-500);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/concrete-wall.png");
  opacity: 0.1;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
}

@media (max-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass-300);
  font-size: 12.5px;
  margin-bottom: 20px;
}

.site-footer .brand__name {
  color: var(--white);
  font-size: 18px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.site-footer a {
  color: rgba(250, 247, 240, 0.68);
}

.site-footer a:hover {
  color: var(--brass-300);
}

.site-footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(250, 247, 240, 0.45);
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 247, 240, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__credit:hover {
  color: rgba(250, 247, 240, 0.85);
}

/* ===== UTILITIES ===== */

.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 48px; }
