/*
Theme Name:  CCGDS
Description: Design-system child theme for ccgds.ca — matches homepage blueprint style
Author:      Custom Commercial Garage Doors Ltd
Template:    astra
Version:     1.0.0
*/

/* ════════════════════════════════════════════════
   CCGDS DESIGN SYSTEM — CHILD THEME
   Matches the blueprint design of index.html
════════════════════════════════════════════════ */

/* ── Self-hosted Figtree font (already on server) ── */
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  size-adjust: 100.3%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: url("/wp-content/uploads/fonts/figtree-variable.woff2") format("woff2");
}

/* ── Design tokens ── */
:root {
  --ci:  #1c2230;
  --ci2: #232a3a;
  --ci3: #2c3445;
  --ccream: #f7f7f5;
  --csand:  #eeeeec;
  --cor:    #e8801a;
  --cor-br: #ff9a3d;
  --cor-dp: #cc6f10;
  --cor-tint: #fcf2e7;
  --cor-glow: rgba(232,128,26,.28);
  --ctx:  #2f3440;
  --cmu:  #6b7280;
  --cmu2: #9099a6;
  --cln:  rgba(28,34,48,.09);
  --cln2: rgba(28,34,48,.05);
  --csh-sm: 0 1px 2px rgba(28,34,48,.04), 0 2px 8px rgba(28,34,48,.04);
  --csh-md: 0 2px 8px rgba(28,34,48,.05), 0 8px 24px rgba(28,34,48,.06);
  --csh-lg: 0 4px 16px rgba(28,34,48,.07), 0 16px 48px rgba(28,34,48,.09);
  --csh-or: 0 4px 18px var(--cor-glow);
  --cf: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cr:    14px;
  --cr-lg: 20px;
  --cr-xl: 26px;
}

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

body {
  font-family: var(--cf) !important;
  background: var(--ccream) !important;
  color: var(--ctx) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -.01em;
  padding-bottom: 72px; /* mobile bar clearance */
}
body *:focus-visible { outline: 2px solid var(--cor); outline-offset: 2px; }
body ::selection { background: var(--cor); color: #fff; }

/* Remove bottom padding for desktop (no mobile bar) */
@media (min-width: 680px) { body { padding-bottom: 0 !important; } }

/* Admin bar safety */
body.admin-bar .ccgds-mob { bottom: 46px; }
@media (min-width: 783px) { body.admin-bar .ccgds-mob { bottom: 32px; } }

/* ════════════════════════════════════════════════
   SITE HEADER — custom CCGDS dark-navy header
   (replaces the broken Elementor/ElementsKit one)
════════════════════════════════════════════════ */

/* Skip link */
.ccgds-skip {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 10000;
  background: var(--cor);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-family: var(--cf);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.ccgds-skip:focus { left: 0; }

/* Suppress any leftover Elementor/Astra native header output */
.ekit-template-content-markup.ekit-template-content-header,
#masthead, header.ast-hfb-header, div.ast-hfb-header, .ast-primary-header-bar { display: none !important; }

/* Header shell */
#ccgds-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--ci);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--cf);
}
.cch-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  height: 64px;
}

/* Logo */
.cch-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.cch-logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}
.cch-brand-t {
  font-weight: 800;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.cch-brand-t span {
  display: block;
  font-size: .66rem;
  font-weight: 600;
  color: var(--cor-br);
  letter-spacing: .01em;
}

/* Desktop nav */
.cch-nav { display: none; }
.cch-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.cch-menu li { position: relative; }
.cch-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255,255,255,.76);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--cf);
  transition: color .15s, background .15s;
  white-space: nowrap;
  line-height: 1;
}
.cch-item:hover, .cch-item:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.07);
  outline: none;
}
.cch-item[aria-expanded="true"] {
  color: var(--cor-br);
  background: rgba(232,128,26,.12);
}
.cch-chevron {
  transition: transform .2s;
  flex-shrink: 0;
  opacity: .6;
}
.cch-drop-btn[aria-expanded="true"] .cch-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.cch-has-drop { position: relative; }
.cch-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--ci2);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--cr);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 6px;
  z-index: 500;
  /* hidden by default; shown on hover or JS toggle */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
/* Visible state — hover OR JS sets aria-expanded */
.cch-has-drop:hover > .cch-drop,
.cch-drop-btn[aria-expanded="true"] + .cch-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Override the hidden attribute on hover so CSS can take over */
.cch-has-drop:hover > .cch-drop[hidden] {
  display: block;
}
.cch-drop a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  font-size: .87rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-radius: 9px;
  transition: background .15s, color .15s;
  font-family: var(--cf);
}
.cch-drop a:hover, .cch-drop a:focus-visible {
  background: rgba(255,255,255,.07);
  color: #fff;
  outline: none;
}

/* Wide multi-column dropdown (Services) */
.cch-drop--wide {
  left: 0;
  transform: translateX(0) translateY(6px);
  min-width: 640px;
  padding: 16px;
}
.cch-has-drop:hover > .cch-drop--wide,
.cch-drop-btn[aria-expanded="true"] + .cch-drop--wide {
  transform: translateX(0) translateY(0);
}
.cch-drop-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}
.cch-drop-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0;
}
.cch-drop-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cor-br);
  padding: 6px 13px 4px;
  font-family: var(--cf);
}
/* Hover indicator on Services button */
.cch-has-drop:hover > .cch-drop-btn {
  color: var(--cor-br);
  background: rgba(232,128,26,.12);
}
.cch-has-drop:hover > .cch-drop-btn .cch-chevron {
  transform: rotate(180deg);
}

/* CTA + actions */
.cch-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.cch-cta {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--cor);
  color: #fff;
  border-radius: 100px;
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--cf);
  box-shadow: var(--csh-or);
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.cch-cta:hover { background: var(--cor-br); transform: translateY(-1px); color: #fff; }

/* Hamburger */
.cch-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  cursor: pointer;
  flex-shrink: 0;
}
.cch-bar {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
  transition: transform .22s, opacity .18s;
}
.cch-burger.is-open .cch-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cch-burger.is-open .cch-bar:nth-child(2) { opacity: 0; }
.cch-burger.is-open .cch-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.cch-mobile {
  background: var(--ci2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 10px 16px 20px;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
}
.cch-mob-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.cch-mob-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--cf);
  cursor: pointer;
  text-align: left;
}
.cch-mob-toggle[aria-expanded="true"] { color: var(--cor-br); }
.cch-mob-toggle[aria-expanded="true"] .cch-chevron { transform: rotate(180deg); }
.cch-mob-sub {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0 0 0 12px;
  display: grid;
  gap: 1px;
}
.cch-mob-sub a {
  display: block;
  padding: 10px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  font-family: var(--cf);
}
.cch-mob-sub a:hover { background: rgba(255,255,255,.06); color: #fff; }
.cch-mob-link {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-family: var(--cf);
}
.cch-mob-link:hover { color: #fff; }
.cch-mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 15px;
  background: var(--cor);
  color: #fff !important;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--cf);
  box-shadow: var(--csh-or);
}

/* Responsive: show desktop nav at 800px+ */
@media (min-width: 800px) {
  .cch-nav { display: flex; align-items: center; }
  .cch-burger { display: none; }
  .cch-cta { display: inline-flex; }
  .cch-wrap { padding: 0 28px; }
}

/* ════════════════════════════════════════════════
   PAGE / POST TITLE BANNER
   Only show dark banner when there is a real title.
   Hide it on Elementor full-width pages and empty headers.
════════════════════════════════════════════════ */

/* Empty / no-title headers — hide completely (about/contact pages) */
.entry-header.ast-no-title,
.entry-header.ast-header-without-markup,
.ast-page-title-wrap.ast-no-title {
  display: none !important;
}

/* Elementor full-width pages handle their own hero — hide Astra's title */
.elementor-template-full-width .entry-header,
.elementor-page-template-full-width .entry-header {
  display: none !important;
}

/* Full-width page title banner */
.entry-header:not(.ast-no-title):not(.ast-header-without-markup),
.ast-page-title-wrap:not(.ast-no-title) {
  background: linear-gradient(135deg, #1c2230 0%, #252d3e 100%) !important;
  padding: 48px 0 !important;
  margin: 0 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}
.entry-header:not(.ast-no-title):not(.ast-header-without-markup) .ast-container,
.ast-page-title-wrap:not(.ast-no-title) .ast-container {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
}
.ast-page-title-wrap .page-title,
.entry-header .entry-title,
.entry-header h1.entry-title {
  font-family: var(--cf) !important;
  font-weight: 800 !important;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem) !important;
  letter-spacing: -.03em !important;
  color: #fff !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}
.ast-breadcrumbs-wrapper,
.ast-breadcrumbs { color: rgba(255,255,255,.52) !important; font-size: .83rem !important; margin-bottom: 10px !important; display: block !important; }
.ast-breadcrumbs a { color: rgba(255,255,255,.64) !important; }
.ast-breadcrumbs a:hover { color: var(--cor-br) !important; }
.ast-breadcrumbs .breadcrumb-separator { color: rgba(255,255,255,.3) !important; }

/* ════════════════════════════════════════════════
   CONTENT AREA
════════════════════════════════════════════════ */
.site-content { background: var(--ccream) !important; }

.ast-container { max-width: 1180px !important; }

/* Inner content padding */
.site-content .ast-container {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Typography in WordPress content & Elementor text */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: var(--cf) !important;
  color: var(--ci) !important;
  letter-spacing: -.025em !important;
  line-height: 1.15 !important;
}
.entry-content h2 { font-weight: 800 !important; font-size: clamp(1.6rem, 4vw, 2.4rem) !important; }
.entry-content h3 { font-weight: 700 !important; font-size: 1.25rem !important; }
.entry-content p, .entry-content li {
  font-family: var(--cf) !important;
  color: var(--ctx) !important;
  line-height: 1.7 !important;
  font-size: 1rem !important;
}
.entry-content a { color: var(--cor-dp) !important; }
.entry-content a:hover { color: var(--cor) !important; }
.entry-content strong { color: var(--ci) !important; }

/* Elementor text overrides */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--cf) !important;
  letter-spacing: -.025em !important;
  line-height: 1.1 !important;
}
.elementor-widget-text-editor,
.elementor-text-editor,
.elementor-text-editor * {
  font-family: var(--cf) !important;
  line-height: 1.7 !important;
}
.elementor-widget-text-editor p { color: var(--ctx) !important; }

/* Elementor buttons */
.elementor-button {
  font-family: var(--cf) !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, background .2s !important;
}
.elementor-button:hover {
  transform: translateY(-2px) !important;
}
/* Orange Elementor buttons */
.elementor-button.elementor-button-primary,
.elementor-button[style*="--e-global-color-primary"] {
  background: var(--cor) !important;
  border-color: var(--cor) !important;
  box-shadow: var(--csh-or) !important;
}
.elementor-button.elementor-button-primary:hover,
.elementor-button[style*="--e-global-color-primary"]:hover {
  background: var(--cor-br) !important;
  border-color: var(--cor-br) !important;
}

/* Elementor icon boxes */
.elementor-icon-box-wrapper { gap: 12px !important; }
.elementor-icon-box-icon .elementor-icon {
  color: var(--cor) !important;
}
.elementor-icon-box-title span {
  font-family: var(--cf) !important;
  font-weight: 700 !important;
  color: var(--ci) !important;
}
.elementor-icon-box-description {
  font-family: var(--cf) !important;
  color: var(--cmu) !important;
  line-height: 1.65 !important;
}

/* Image boxes / cards */
.elementor-widget-image-box img { border-radius: var(--cr) !important; }

/* Tables */
.entry-content table {
  border-collapse: collapse;
  width: 100%;
  font-family: var(--cf) !important;
  border-radius: var(--cr) !important;
  overflow: hidden;
  border: 1px solid var(--cln) !important;
  box-shadow: var(--csh-sm) !important;
}
.entry-content table th {
  background: var(--ci) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 12px 16px !important;
  font-family: var(--cf) !important;
  font-size: .85rem !important;
  letter-spacing: .02em !important;
}
.entry-content table td {
  padding: 11px 16px !important;
  border-bottom: 1px solid var(--cln2) !important;
  font-family: var(--cf) !important;
  color: var(--ctx) !important;
}
.entry-content table tr:nth-child(even) td { background: rgba(28,34,48,.02) !important; }
.entry-content table tr:last-child td { border-bottom: none !important; }

/* Blockquote */
.entry-content blockquote {
  border-left: 4px solid var(--cor) !important;
  padding: 16px 20px !important;
  margin: 24px 0 !important;
  background: var(--cor-tint) !important;
  border-radius: 0 var(--cr) var(--cr) 0 !important;
}
.entry-content blockquote p { color: var(--ctx) !important; font-style: normal !important; }

/* WP Block buttons */
.wp-block-button .wp-block-button__link {
  font-family: var(--cf) !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  background: var(--cor) !important;
  color: #fff !important;
  padding: 14px 24px !important;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: var(--csh-or) !important;
}
.wp-block-button .wp-block-button__link:hover {
  background: var(--cor-br) !important;
  transform: translateY(-2px) !important;
}

/* AIOSEO table of contents (blend in) */
.aioseo-table-of-contents {
  background: var(--ccream) !important;
  border: 1px solid var(--cln) !important;
  border-radius: var(--cr) !important;
  padding: 18px 22px !important;
  box-shadow: var(--csh-sm) !important;
  font-family: var(--cf) !important;
}
.aioseo-table-of-contents a {
  color: var(--cor-dp) !important;
}
.aioseo-table-of-contents a:hover {
  color: var(--cor) !important;
}

/* Post meta (date, author, etc.) */
.ast-post-meta-wrap, .posted-on, .byline, .post-author {
  font-family: var(--cf) !important;
  color: var(--cmu2) !important;
  font-size: .83rem !important;
}

/* Sidebar */
.widget-title {
  font-family: var(--cf) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  color: var(--ci) !important;
  letter-spacing: -.02em !important;
}

/* ════════════════════════════════════════════════
   FOOTER — exact homepage footer design
════════════════════════════════════════════════ */
/* Hide the old Astra footer builder output */
.site-footer .ast-builder-grid-row-container,
.site-below-footer-wrap,
.ast-site-footer-wrap {
  display: none !important;
}
/* Also hide empty site-footer wrapper padding */
.site-footer { padding: 0 !important; background: transparent !important; }

/* New footer */
.ccgds-sf {
  position: relative;
  isolation: isolate;
  background: var(--ci);
  overflow: hidden;
  padding: 44px 0 32px;
  font-family: var(--cf);
}
.ccgds-sf::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(155deg, #252d3e, #1c2230);
}
.ccgds-sf-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.ccgds-sf-top {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}
.ccgds-sf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.ccgds-sf-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}
.ccgds-sf-brand-t {
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  line-height: 1.15;
}
.ccgds-sf-brand-t span {
  display: block;
  font-size: .71rem;
  font-weight: 600;
  color: var(--cor-br);
}
.ccgds-sf-desc {
  font-size: .91rem;
  line-height: 1.7;
  color: rgba(255,255,255,.52);
  max-width: 420px;
  margin: 0;
}
.ccgds-sf-col h4 {
  font-weight: 700;
  font-size: .77rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cor-br);
  margin: 0 0 13px;
}
.ccgds-sf-col a {
  display: block !important;
  padding: 5px 0 !important;
  font-size: .89rem !important;
  color: rgba(255,255,255,.66) !important;
  font-weight: 500 !important;
  transition: color .15s, padding-left .15s !important;
  text-decoration: none !important;
}
.ccgds-sf-col a:hover {
  color: #fff !important;
  padding-left: 4px !important;
}
.ccgds-sf-bot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.ccgds-sf-copy {
  font-size: .81rem;
  color: rgba(255,255,255,.38);
  margin: 0;
}
.ccgds-sf-copy a {
  color: rgba(255,255,255,.58) !important;
  font-weight: 600;
  text-decoration: none;
}

/* ════════════════════════════════════════════════
   MOBILE BAR (fixed bottom — same as homepage)
════════════════════════════════════════════════ */
.ccgds-mob {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 10px;
  padding: 11px 13px;
  background: rgba(28,34,48,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: var(--cf);
}
.ccgds-mob a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.ccgds-mob .cm-or { background: var(--cor); color: #fff; }
.ccgds-mob .cm-gh {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
}

/* ── Responsive ── */
@media (min-width: 680px) {
  .ccgds-mob { display: none !important; }
  .ccgds-sf-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .ccgds-sf-wrap { padding: 0 28px; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* High contrast focus rings on interactive elements */
.cch-item:focus-visible,
.cch-drop a:focus-visible,
.cch-mob-toggle:focus-visible,
.cch-mob-sub a:focus-visible,
.cch-mob-link:focus-visible,
.cch-mob-cta:focus-visible,
.cch-cta:focus-visible,
.cch-burger:focus-visible {
  outline: 2px solid var(--cor-br) !important;
  outline-offset: 2px !important;
}

/* Ensure sufficient colour contrast for muted text */
.cch-brand-t { color: rgba(255,255,255,.92) !important; }

/* Active page indicator in nav */
.cch-item.current-menu-item,
.cch-item[aria-current="page"] {
  color: var(--cor-br) !important;
  background: rgba(232,128,26,.1) !important;
}

/* Footer links accessible contrast */
.ccgds-sf-col a:focus-visible {
  outline: 2px solid var(--cor-br) !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}

/* Mobile bar focus */
.ccgds-mob a:focus-visible {
  outline: 2px solid var(--cor-br) !important;
  outline-offset: 2px !important;
}
