/* ==========================================================================
   Profix Locksmiths - stylesheet
   Brand colours are sampled from the logo. Change them once here.
   ========================================================================== */
:root {
  --navy: #1B2A47;        /* "PRO" + "LOCKSMITHS" */
  --navy-900: #111C33;
  --navy-700: #26395F;
  --blue: #1E63BE;        /* "FIX" mid */
  --blue-bright: #2F82E6; /* "FIX" top of gradient */
  --blue-deep: #1A4C9C;   /* "FIX" bottom of gradient */
  --paper: #F4F6FB;       /* cool off-white for alternating sections */
  --line: #DCE3EF;
  --ink: #1B2A47;
  --muted: #5B6880;
  --white: #FFFFFF;
  --wa: #0F7A40;          /* WhatsApp green, darkened for contrast */
  --wa-hover: #0B5F32;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1120px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 14px 34px -14px rgba(27, 42, 71, .28);
  --cta-bar-h: 66px;
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--blue-deep); }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.015em; color: inherit; }
h1 { font-size: clamp(2rem, 1.35rem + 3vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem); }
h3, .h3 { font-size: 1.2rem; letter-spacing: -.005em; }
h2.h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 760px; }
.narrow-left { max-width: 70ch; margin-bottom: 2rem; }

/* Eyebrow: the "- LOCKSMITHS -" rule treatment from the logo */
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin: 0 0 .9rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before, .eyebrow::after { content: ""; flex: 0 0 28px; height: 2px; background: currentColor; }
.eyebrow-left { justify-content: flex-start; }
.eyebrow-left::after { display: none; }
.hero .eyebrow { color: #9FC4F5; }

.icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: -.28em; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .75rem 1.3rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn .icon { width: 1.2em; height: 1.2em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 56px; padding: .9rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #EAF1FC; color: var(--navy); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .96); backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: auto; height: 44px; }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: .55rem .85rem; border-radius: 8px;
  color: var(--navy); font-weight: 600; text-decoration: none;
}
.nav a:hover { background: var(--paper); color: var(--blue); }
.nav a[aria-current="page"] { color: var(--blue); box-shadow: inset 0 -3px 0 var(--blue); border-radius: 8px 8px 0 0; }
.header-call { flex: none; }
.nav-toggle {
  display: none; flex: none; width: 48px; height: 48px; margin-left: .25rem;
  border: 0; border-radius: 10px; background: transparent; cursor: pointer; position: relative;
}
.burger, .burger::before, .burger::after {
  position: absolute; left: 12px; width: 24px; height: 3px; border-radius: 3px; background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.burger { top: 22px; }
.burger::before, .burger::after { content: ""; left: 0; }
.burger::before { top: -8px; }
.burger::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .burger { background: transparent; }
.nav-toggle[aria-expanded="true"] .burger::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger::after { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (home) and compact page header - the slanted blue panel is the
   signature element, echoing the italic slant of the wordmark.
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; z-index: -1; top: -10%; bottom: -10%; right: -8%; width: 42%;
  background: linear-gradient(165deg, var(--blue-bright) 0%, var(--blue) 45%, var(--blue-deep) 100%);
  transform: skewX(-14deg);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: center; gap: 2rem; padding: clamp(3rem, 6vw, 5.5rem) 0 2.5rem; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lead { font-size: 1.08rem; line-height: 1.65; color: #E3EBF8; max-width: 56ch; }
.hero .strapline { font-size: 1.2rem; font-weight: 800; font-style: italic; letter-spacing: .01em; color: #fff; margin: 1.2rem 0 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-mark { display: flex; justify-content: center; align-items: center; }
.hero-mark img { width: min(100%, 360px); filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35)); }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; list-style: none; margin: 0; padding: 1.1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .18); font-size: .95rem; font-weight: 600; color: #E7EEFA;
}
.trust-strip .icon { color: #8DE1B0; }

.hero-compact .container { padding: clamp(2.25rem, 4vw, 3.5rem) 0 clamp(2rem, 3vw, 2.75rem); }
.hero-compact::before { width: 30%; right: -10%; opacity: .95; }
.hero-compact h1 { max-width: 18ch; margin-bottom: .5rem; }
.hero-compact .lead { font-size: 1.08rem; color: #D9E3F5; max-width: 62ch; margin-bottom: 0; }

.breadcrumbs { font-size: .85rem; margin-bottom: 1rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: .35rem; color: #9FC4F5; }
.breadcrumbs a { color: #C7D8F2; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: #fff; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-paper { background: var(--paper); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-lead { font-size: 1.08rem; color: var(--muted); margin: 0; }
.lead-dark { font-size: 1.1rem; color: var(--ink); }

.grid { display: grid; gap: 1.25rem; }
/* auto-fit rather than a fixed 4 columns: collapses empty tracks so 3 (or
   any other count of) service cards fill and centre the row instead of
   leaving a gap where a 4th card would go. */
.grid-services { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
/* auto-fit rather than a fixed 4 columns: the count of why-us cards is
   deliberately kept to confirmed facts only, so this adapts cleanly whether
   there are 2 cards or more, centred rather than stretched full-width. */
.grid-why { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; max-width: 640px; margin-inline: auto; }
.grid-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.grid-reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 1.75rem; }

/* Cards */
.card {
  display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3, .card .h3 { margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; flex: 1; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 12px; background: var(--paper); color: var(--blue); margin-bottom: .25rem;
}
.card-icon .icon { width: 26px; height: 26px; }
.card-more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; color: var(--blue); font-weight: 700; font-size: .92rem; }
.card-more .icon { transition: transform .18s ease; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.card-link:hover .card-more .icon { transform: translateX(3px); }

/* Why us */
.why-item { display: flex; flex-direction: column; gap: .4rem; }
.why-item h3 { margin: .35rem 0 0; }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 50%; background: var(--navy); color: #fff;
}
.why-icon .icon { width: 24px; height: 24px; }

/* How it works - a real sequence, so numbered */
.steps-wrap { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.steps-wrap h2 { text-align: center; margin-bottom: 1.75rem; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { position: relative; padding: 1.4rem 1.4rem 1.4rem 4.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 1.3rem; top: 1.3rem;
  width: 2.3rem; height: 2.3rem; display: grid; place-items: center;
  border-radius: 50%; background: linear-gradient(160deg, var(--blue-bright), var(--blue-deep));
  color: #fff; font-weight: 800; font-size: 1.1rem;
}
.steps h3 { margin: 0 0 .3rem; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Chips (areas) */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.chips.center { justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 600; font-size: .92rem; color: var(--ink); }
.chip-link { text-decoration: none; background: var(--navy); color: #fff; border-color: var(--navy); }
.chip-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.area-group h2 { display: flex; align-items: center; gap: .5rem; color: var(--navy); }
.area-group .icon { color: var(--blue); }

/* Reviews */
.review { margin: 0; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.review .stars { color: #F4B400; margin-bottom: .5rem; }
.review .stars .icon { fill: currentColor; width: 1.1em; height: 1.1em; }
.review footer { font-weight: 700; color: var(--navy); }

/* CTA band */
.cta-band { background: linear-gradient(115deg, var(--navy) 0%, var(--blue-deep) 55%, var(--blue) 100%); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.cta-band h2 { color: #fff; margin-bottom: .4rem; max-width: 22ch; }
.cta-band p { margin: 0; color: #D9E3F5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; flex: none; }

/* --------------------------------------------------------------------------
   Inner page layouts
   -------------------------------------------------------------------------- */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; align-items: start; }
.prose { max-width: 70ch; }
.prose p { line-height: 1.75; }
.prose h2 { margin-top: 1.75rem; }
.checklist { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; line-height: 1.45; }
.checklist .icon { color: var(--blue); margin-top: .15rem; }
.checklist-caps li { text-transform: uppercase; letter-spacing: .04em; font-weight: 600; font-size: .9rem; }
.tip { margin: 1.5rem 0 0; padding: 1rem 1.25rem; background: var(--paper); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.tip p { margin: 0; }
.tip-label { font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .3rem !important; }

.side { position: sticky; top: calc(var(--header-h) + 1rem); display: grid; gap: 1.5rem; }
.contact-card { padding: 1.6rem; background: var(--navy); color: #fff; border-radius: var(--radius); display: grid; gap: .6rem; }
.contact-card .muted { color: #B9C7E0; margin: 0; }
.contact-card-title { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #9FC4F5; margin: 0; }
.big-phone { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.2rem); font-weight: 800; letter-spacing: -.01em; color: #fff; text-decoration: none; }
.big-phone:hover { color: #9FC4F5; }
.contact-card .btn-block { margin-top: .25rem; }
.side-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.side-links a { color: var(--ink); text-decoration: none; }
.side-links a:hover { color: var(--blue); text-decoration: underline; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 2.5rem; align-items: start; }
.contact-card-main { padding: 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: .5rem 0 1rem; }
.contact-details { margin: 0; display: grid; gap: .8rem; border-top: 1px solid rgba(255, 255, 255, .15); padding-top: 1rem; }
.contact-details dt { font-weight: 700; color: #C7D8F2; font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.contact-details dd { margin: .1rem 0 0; }
.contact-details a { color: #fff; }

/* Form */
.form { display: grid; gap: 1.1rem; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.form-row { display: grid; gap: .4rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-2 > div { display: grid; gap: .4rem; }
.form label { font-weight: 600; font-size: .95rem; }
.form input, .form textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 130, 230, .18); }
.form textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }
.hp { position: absolute; left: -9999px; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 0; font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 12px; height: 12px;
  border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq summary:hover { color: var(--blue); }
.faq-a p { margin: 0 0 1.2rem; color: var(--muted); line-height: 1.7; max-width: 68ch; }
.faq-more { margin-top: 2rem; font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #C4CFE3; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr 1fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; }
.footer-brand img { width: 200px; margin-bottom: 1rem; }
.footer-brand p { margin: 0 0 .9rem; }
.footer-contact { display: grid; gap: .45rem; }
.footer-contact a, .site-footer nav a { color: #fff; text-decoration: none; }
.footer-contact a:hover, .site-footer nav a:hover { color: #9FC4F5; text-decoration: underline; }
.footer-contact .icon { color: #9FC4F5; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #9FC4F5; }
/* Section label. Dark by default so it passes contrast on light backgrounds;
   the footer overrides it to the pale blue. */
.footer-h { font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-deep); margin: 0 0 .9rem; }
.site-footer .footer-h { color: #9FC4F5; }
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-areas { line-height: 1.8; }
.footer-areas a { color: #9FC4F5; white-space: nowrap; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; padding: 1.25rem 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* Sticky mobile call bar */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -12px rgba(27, 42, 71, .3);
}
.cta-bar .btn { min-height: 50px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); }
  .hero-mark img { width: min(100%, 260px); }
  .two-col { grid-template-columns: minmax(0, 1fr) 280px; gap: 2rem; }
}

@media (max-width: 899px) {
  :root { --header-h: 64px; }
  body { padding-bottom: calc(var(--cta-bar-h) + env(safe-area-inset-bottom)); }
  .cta-bar { display: grid; }
  .brand img { height: 36px; }
  .header-inner { gap: .5rem; }
  .header-call { margin-left: auto; padding: .6rem .8rem; }
  .header-call-text { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px -16px rgba(27, 42, 71, .35);
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: .5rem 1.25rem 1rem; }
  .nav a { padding: .85rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav a[aria-current="page"] { box-shadow: none; }

  /* On narrow screens the filled panel would run behind the body copy and kill
     contrast, so it becomes a corner wedge sitting only behind the headline. */
  .hero::before { top: -70px; bottom: auto; height: 230px; right: -22%; width: 52%; }
  .hero-compact::before { top: -70px; height: 190px; right: -22%; width: 52%; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 1.5rem; }
  .hero-mark { position: absolute; right: -10px; top: 8px; width: 108px; opacity: .16; pointer-events: none; }
  .hero-mark img { width: 100%; filter: none; }
  .hero-actions .btn { flex: 1 1 100%; }
  .trust-strip { gap: .5rem 1.25rem; font-size: .9rem; }

  .contact-grid, .two-col { grid-template-columns: 1fr; }
  .side { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions .btn { flex: 1 1 auto; }
  .steps { grid-template-columns: 1fr; }
  .grid-areas { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-services, .grid-why { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form { padding: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
  .contact-card-main { padding: 1.5rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .card-link:hover, .btn:hover { transform: none; }
}

@media print {
  .site-header, .cta-bar, .cta-band, .nav-toggle, .site-footer nav, .hero::before { display: none !important; }
  body { padding-bottom: 0; color: #000; }
  .hero, .contact-card { background: #fff !important; color: #000 !important; }
  .hero h1, .hero .lead, .hero .strapline, .big-phone { color: #000 !important; }
  a { color: #000; }
}

/* Area landing page links -------------------------------------------------- */
.grid-arealinks { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 2.5rem; }
.areas-note { font-weight: 600; color: var(--muted); margin-bottom: 1.25rem; }
.chip-area { text-decoration: none; }
.chip-area:hover { border-color: var(--blue); color: var(--blue); }
@media (max-width: 1024px) { .grid-arealinks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .grid-arealinks { grid-template-columns: 1fr; } }
