/* =========================================================================
   CLAPHAM HOMES — Design System v2
   Direction: rebuilt around the real brand mark — deep navy (#15253E) + cream
   (#F9F6EF), colours sampled directly from the logo, with a warm gold accent
   (a classic, considered navy/gold pairing rather than a generic third hue).
   "Neighbourhood plaque" signature element kept, re-skinned in-brand.
   Manrope (geometric, matches the logo's wordmark) for display + body.
   ========================================================================= */

/* Manrope is loaded via <link rel="preconnect"/stylesheet> in templates/layout.js's
   pageShell(), not @import — @import serialises the font request behind the CSS
   download, adding a full extra round-trip before the browser even discovers it. */

:root{
  /* --- Colour tokens — sampled from LogoCH.jpg --- */
  --ink:        #16223A;
  --ink-soft:   #4E5A72;
  --navy: #15253E;
  --navy-mid:  #223A5E;
  --navy-line: #33507D;
  --navy-tint:       #E8EBF1;
  --navy-tint-line:  #CBD3E0;
  --linen:      #F9F6EF;
  --white:      #FFFFFF;
  --gold:      #AD8A46;
  --gold-bright: #C9A25E;
  --gold-line: #DDCBA0;
  --red-flag:   #A8432E;

  /* --- Type --- */
  --font-display: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* --- Scale --- */
  --step--1: clamp(0.83rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.2vw, 3.6rem);
  --step-5:  clamp(3rem, 2.2rem + 3.6vw, 5rem);

  /* --- Layout --- */
  --container: 1180px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --header-h: 76px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* --- Reset --- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
body{ margin:0; background:var(--linen); color:var(--ink); font-family:var(--font-body); font-size:var(--step-0); line-height:1.55; -webkit-font-smoothing:antialiased; }
img{ max-width:100%; display:block; }
a{ color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
input,textarea,select{ font:inherit; }

h1,h2,h3,.font-display{ font-family:var(--font-display); font-weight:800; letter-spacing:-0.02em; color:var(--navy); }
h1{ font-size:var(--step-5); line-height:1.02; }
h2{ font-size:var(--step-3); line-height:1.08; }
h3{ font-size:var(--step-2); line-height:1.15; font-weight:700; }
.eyebrow{ font-family:var(--font-body); font-weight:700; letter-spacing:0.14em; text-transform:uppercase; font-size:var(--step--1); color:var(--gold); }

:focus-visible{ outline:3px solid var(--gold-bright); outline-offset:2px; }

.container{ max-width:var(--container); margin-inline:auto; padding-inline:24px; }
@media (max-width:640px){ .container{ padding-inline:18px; } }

.visually-hidden{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* =========================================================================
   HEADER + MOBILE DROPDOWN NAV
   ========================================================================= */
.site-header{
  position:sticky; top:0; z-index:60;
  background:var(--linen); border-bottom:1px solid var(--navy-tint-line);
  height:var(--header-h);
}
.site-header__bar{
  height:var(--header-h); display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.logo{ display:flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:800; font-size:1.3rem; letter-spacing:-0.01em; color:var(--navy); text-decoration:none; white-space:nowrap; flex:none; }
.logo-mark{ width:28px; height:28px; flex:none; color:var(--navy); }
.logo small{ font-family:var(--font-body); font-weight:700; font-size:0.6rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); align-self:flex-end; margin-bottom:2px; }
/* .logo is flex:none + nowrap so it can't wrap on desktop — which means on narrow
   phones it can't shrink either, and pushes the menu button past the viewport edge
   (caught at 390px: 397px scrollWidth). Scale the lockup down instead of letting
   it overflow. */
@media (max-width:430px){
  .logo{ font-size:1.08rem; gap:7px; }
  .logo-mark{ width:23px; height:23px; }
  .logo small{ font-size:0.53rem; letter-spacing:0.12em; }
}
@media (max-width:360px){
  .logo small{ display:none; }
}
.footer-logo .logo-mark{ color:var(--white); }
.footer-logo{ display:flex; align-items:center; gap:9px; }

.nav-desktop{ display:none; }
@media (min-width:960px){
  .nav-desktop{ display:flex; align-items:center; gap:22px; flex-wrap:nowrap; }
  .nav-desktop > li{ position:relative; }
  .nav-desktop a.nav-link{ text-decoration:none; font-weight:600; font-size:0.92rem; color:var(--ink); padding:8px 2px; border-bottom:2px solid transparent; transition:border-color .15s var(--ease), color .15s var(--ease); white-space:nowrap; }
  .nav-desktop a.nav-link:hover{ color:var(--navy); border-color:var(--gold); }
  .has-sub:hover .subnav, .has-sub:focus-within .subnav{ opacity:1; visibility:visible; transform:translateY(0); }
  .subnav{
    position:absolute; top:100%; left:50%; transform:translate(-50%,4px);
    background:var(--white); border:1px solid var(--navy-tint-line); box-shadow:0 12px 28px rgba(21,37,62,0.12);
    padding:10px; min-width:230px; opacity:0; visibility:hidden; transition:opacity .15s var(--ease), transform .15s var(--ease);
    display:grid; gap:2px; max-height:60vh; overflow:auto;
  }
  .subnav a{ display:block; padding:9px 12px; border-radius:var(--radius-sm); text-decoration:none; font-size:0.9rem; font-weight:500; color:var(--ink-soft); }
  .subnav a:hover{ background:var(--navy-tint); color:var(--navy); }
}
.header-cta.btn-row{ display:none; } /* compound selector beats .btn-row's own display:flex regardless of source order */
@media (min-width:960px){
  /* flex-wrap:nowrap + tighter gap/padding override .btn-row's general wrap:wrap —
     without this, the two buttons wrap onto separate lines inside header-cta's
     inline-flex box, doubling its height and making it float above/below the
     76px header bar (caught via Playwright screenshot QA at 1440px). */
  .header-cta.btn-row{ display:inline-flex; flex-wrap:nowrap; gap:10px; }
  .header-cta .btn{ padding:11px 16px; font-size:0.86rem; white-space:nowrap; }
}

.nav-toggle{
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px;
  border:1px solid var(--navy-tint-line); border-radius:var(--radius-sm); background:var(--white);
}
@media (min-width:960px){ .nav-toggle{ display:none; } }
.nav-toggle svg{ width:20px; height:20px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-open{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

/* True dropdown panel: full width, slides down under sticky header */
.nav-mobile{
  position:absolute; left:0; right:0; top:100%;
  background:var(--white); border-bottom:1px solid var(--navy-tint-line);
  box-shadow:0 16px 30px rgba(21,37,62,0.14);
  max-height:0; overflow:hidden; transition:max-height .32s var(--ease);
}
.nav-mobile.is-open{ max-height:85vh; overflow-y:auto; }
@media (min-width:960px){ .nav-mobile{ display:none; } }
.nav-mobile__inner{ padding:8px 18px 22px; display:grid; }
.nav-mobile__group{ padding:14px 0; border-bottom:1px solid var(--navy-tint); }
.nav-mobile__group:last-of-type{ border-bottom:none; }
.nav-mobile__label{ font-weight:700; font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; display:block; }
.nav-mobile a{ display:flex; align-items:center; justify-content:space-between; text-decoration:none; padding:12px 4px; font-weight:600; font-size:1.02rem; color:var(--ink); min-height:44px; }
.nav-mobile__areas-list{ display:grid; grid-template-columns:1fr 1fr; gap:0 12px; }
.nav-mobile__areas-list a{ font-size:0.92rem; font-weight:500; padding:9px 4px; }
.nav-mobile__cta{ margin-top:14px; display:grid; gap:10px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 22px; font-weight:700; font-size:0.95rem; text-decoration:none;
  border-radius:var(--radius-sm); border:1.5px solid transparent; transition:transform .15s var(--ease), background-color .15s var(--ease), border-color .15s var(--ease);
  min-height:48px;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--navy); color:var(--white); }
.btn-primary:hover{ background:var(--navy-mid); }
.btn-gold{ background:var(--gold); color:var(--white); }
.btn-gold:hover{ background:var(--gold-bright); }
.btn-outline{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover{ background:var(--navy); color:var(--white); }
.btn-outline-light{ background:transparent; color:var(--white); border-color:rgba(255,255,255,0.6); }
.btn-outline-light:hover{ background:rgba(255,255,255,0.14); border-color:var(--white); }
.btn-row{ display:flex; flex-wrap:wrap; gap:12px; }

/* =========================================================================
   HERO — full-bleed photo, bottom scrim, floating plaque
   ========================================================================= */
.hero{ position:relative; min-height:min(86vh,780px); display:flex; align-items:flex-end; overflow:hidden; background:var(--navy); }
.hero__media{ position:absolute; inset:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; }
.hero__scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(21,37,62,0.05) 0%, rgba(18,30,50,0.15) 40%, rgba(10,17,29,0.86) 100%); }
.hero__content{ position:relative; z-index:2; width:100%; padding-bottom:96px; }
.hero .eyebrow{ color:var(--gold-bright); }
.hero h1{ color:var(--white); margin-top:10px; max-width:15ch; }
.hero__sub{ color:rgba(255,255,255,0.88); font-size:var(--step-1); max-width:46ch; margin-top:16px; }
.hero__actions{ margin-top:28px; }

.trust-plaque{
  position:relative; z-index:3; margin-top:-56px; margin-bottom:44px;
  background:var(--linen); border:1px solid var(--gold-line); box-shadow:0 18px 40px rgba(15,25,42,0.18);
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.trust-plaque__item{ padding:18px 16px; text-align:center; border-right:1px solid var(--navy-tint-line); }
.trust-plaque__item:last-child{ border-right:none; }
.trust-plaque__stat{ font-family:var(--font-display); font-weight:600; font-size:var(--step-1); color:var(--navy); display:flex; align-items:center; justify-content:center; gap:6px; }
.trust-plaque__label{ font-size:0.76rem; color:var(--ink-soft); margin-top:2px; letter-spacing:0.02em; }
.trust-plaque .stars{ color:var(--gold); letter-spacing:1px; }
.trust-plaque__item--link{ text-decoration:none; color:inherit; display:block; transition:background-color .15s var(--ease); }
.trust-plaque__item--link:hover{ background:var(--navy-tint); }
.trust-plaque__item--link:hover .trust-plaque__label{ color:var(--navy); }
.trust-plaque__item--link .trust-plaque__label span{ color:var(--gold); font-weight:700; }
@media (max-width:760px){
  .trust-plaque{ grid-template-columns:1fr 1fr; }
  .trust-plaque__item{ border-bottom:1px solid var(--navy-tint-line); }
  .trust-plaque__item:nth-child(2){ border-right:none; }
  .trust-plaque__item:nth-child(3),.trust-plaque__item:nth-child(4){ border-bottom:none; }
}

/* =========================================================================
   SECTIONS / GENERIC BLOCKS
   ========================================================================= */
.section{ padding:88px 0; }
.section--navy-tint{ background:var(--navy-tint); }
.section--navy{ background:var(--navy); color:var(--white); }
.section--navy h2, .section--navy h3{ color:var(--white); }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head p{ margin-top:14px; color:var(--ink-soft); font-size:var(--step-1); }
.section--navy .section-head p{ color:rgba(255,255,255,0.82); }
@media (max-width:640px){ .section{ padding:56px 0; } }

.grid{ display:grid; gap:24px; }
/* Grid and flex children default to min-width:auto, so a single long word can force
   a track wider than the viewport and produce horizontal scroll. Caught at 320px on
   the location and service pages. */
.grid > *, .area-hero__top > *{ min-width:0; }
h1, h2, h3, h4{ overflow-wrap:break-word; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-split{ grid-template-columns:minmax(0,1.3fr) minmax(0,1fr); gap:48px; align-items:start; }
.grid-half{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:48px; align-items:center; }
@media (max-width:900px){ .grid-3{ grid-template-columns:1fr 1fr; } .grid-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:860px){ .grid-split, .grid-half{ grid-template-columns:1fr; gap:32px; } }
@media (max-width:560px){ .grid-3, .grid-4{ grid-template-columns:1fr; } }

.card{ background:var(--white); border:1px solid var(--navy-tint-line); padding:28px; border-radius:var(--radius-md); }
.card h3{ font-size:var(--step-1); }
.card p{ color:var(--ink-soft); margin-top:10px; }
.icon-badge{ width:44px; height:44px; border-radius:var(--radius-sm); background:var(--navy-tint); display:flex; align-items:center; justify-content:center; color:var(--navy); margin-bottom:16px; }

/* --- Neighbourhood plaque cards (signature element) --- */
.plaque-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .plaque-grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .plaque-grid{ grid-template-columns:repeat(2,1fr); gap:12px;} }
.plaque{
  display:block; text-decoration:none; background:var(--white); border:1px solid var(--gold-line);
  position:relative; overflow:hidden; transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}
.plaque:hover{ transform:translateY(-4px); box-shadow:0 14px 26px rgba(21,37,62,0.16); }
.plaque__media{ aspect-ratio:4/3; position:relative; background:var(--navy); }
.plaque__media img{ width:100%; height:100%; object-fit:cover; }
.plaque__postcode{ position:absolute; top:10px; left:10px; background:var(--gold); color:var(--white); font-size:0.68rem; font-weight:700; letter-spacing:0.06em; padding:4px 8px; }
.plaque__body{ padding:14px 16px 16px; }
.plaque__name{ font-family:var(--font-display); font-weight:600; font-size:1.05rem; color:var(--navy); }
.plaque__landmark{ font-size:0.78rem; color:var(--ink-soft); margin-top:3px; }

/* =========================================================================
   PHOTOGRAPHY
   Images always fill their container and are cropped by object-fit, so the
   container's aspect-ratio (not the source file's) controls layout — no
   layout shift on load regardless of what dimensions a photo arrives at.
   ========================================================================= */
.photo-img{
  display:block; width:100%; height:100%; object-fit:cover;
  background:var(--navy-mid); /* colour-matched while the image loads */
}
.media-frame{
  position:relative; aspect-ratio:4/3; overflow:hidden;
  border:1px solid rgba(255,255,255,0.25);
}
.section--navy-tint .media-frame,
.section:not(.section--navy) .media-frame{ border-color:var(--navy-tint-line); }

/* CC BY-SA attribution for the area photographs — required by the licence,
   kept small and out of the way so it reads as a credit, not as content. */
.photo-credit{
  position:absolute; right:0; bottom:0;
  background:rgba(10,17,29,0.72); color:rgba(255,255,255,0.82);
  font-size:0.6rem; letter-spacing:0.02em; padding:3px 7px;
}
.photo-credit a{ color:rgba(255,255,255,0.92); text-decoration:underline; }

.tick-list{ display:grid; gap:12px; }
.tick-list li{ position:relative; padding-left:26px; }
.tick-list li::before{
  content:"✓"; position:absolute; left:0; top:0;
  color:var(--gold); font-weight:800;
}

/* =========================================================================
   TESTIMONIALS / REVIEWS
   ========================================================================= */
.review-card{ background:var(--white); border:1px solid var(--navy-tint-line); padding:26px; border-radius:var(--radius-md); }
.review-card .stars{ color:var(--gold); letter-spacing:2px; font-size:1rem; }
.review-card p{ margin-top:14px; color:var(--ink); font-style:italic; }
.review-card footer{ margin-top:16px; font-size:0.85rem; font-weight:700; color:var(--navy); font-style:normal; }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq{ display:grid; gap:10px; max-width:820px; }
.faq-item{ background:var(--white); border:1px solid var(--navy-tint-line); border-radius:var(--radius-md); overflow:hidden; }
.faq-item__q{ width:100%; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:16px; padding:18px 20px; font-weight:700; font-size:1rem; color:var(--navy); }
.faq-item__q .plus{ flex:none; width:22px; height:22px; position:relative; }
.faq-item__q .plus::before, .faq-item__q .plus::after{ content:''; position:absolute; background:var(--gold); border-radius:2px; }
.faq-item__q .plus::before{ width:14px; height:2px; top:10px; left:4px; }
.faq-item__q .plus::after{ width:2px; height:14px; left:10px; top:4px; transition:transform .2s var(--ease); }
.faq-item[data-open="true"] .plus::after{ transform:rotate(90deg); }
.faq-item__a{ max-height:0; overflow:hidden; transition:max-height .28s var(--ease); }
.faq-item__a-inner{ padding:0 20px 20px; color:var(--ink-soft); }

/* =========================================================================
   PROCESS STEPS (service pages) — numbering justified: literal sequence
   ========================================================================= */
.steps{ counter-reset:step; display:grid; gap:20px; grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:44px; }
.step::before{ counter-increment:step; content:counter(step); font-family:var(--font-display); font-size:1.6rem; font-weight:600; color:var(--gold); position:absolute; top:0; left:0; }
.step h4{ font-family:var(--font-body); font-weight:700; font-size:1rem; color:var(--navy); }
.step p{ margin-top:6px; color:var(--ink-soft); font-size:0.92rem; }

/* =========================================================================
   BEFORE / AFTER
   ========================================================================= */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--gold); }
.compare figure{ position:relative; margin:0; aspect-ratio:4/3; overflow:hidden; }
.compare figcaption{ position:absolute; bottom:10px; left:10px; background:rgba(34,32,28,0.72); color:var(--white); font-size:0.7rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:4px 9px; }

/* =========================================================================
   AREA / LOCATION PAGE SPECIFIC
   ========================================================================= */
.area-hero{ background:var(--navy); color:var(--white); padding:56px 0 0; }
.area-hero__crumb{ font-size:0.82rem; color:rgba(255,255,255,0.72); }
.area-hero__crumb a{ text-decoration:none; color:rgba(255,255,255,0.85); }
.area-hero__top{ display:grid; grid-template-columns:1.2fr 1fr; gap:40px; align-items:end; padding-bottom:40px; }
@media (max-width:860px){ .area-hero__top{ grid-template-columns:1fr; } }
.area-hero h1{ color:var(--white); margin-top:12px; }
.area-hero__landmark{ position:relative; aspect-ratio:4/3; overflow:hidden; border:1px solid rgba(255,255,255,0.25); margin:0; }
.area-hero__landmark figcaption{
  position:absolute; left:0; bottom:0; background:var(--gold); color:var(--white);
  font-size:0.72rem; font-weight:700; letter-spacing:0.04em; padding:5px 10px;
}
/* figcaption sits bottom-left, credit bottom-right — they never collide */
.area-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.area-meta span{ font-size:0.78rem; font-weight:700; letter-spacing:0.04em; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.3); padding:6px 10px; }

.nearby{ display:flex; flex-wrap:wrap; gap:10px; }
.nearby a{ text-decoration:none; font-weight:600; font-size:0.88rem; color:var(--navy); background:var(--navy-tint); border:1px solid var(--navy-tint-line); padding:9px 14px; border-radius:100px; }
.nearby a:hover{ background:var(--gold); color:var(--white); border-color:var(--gold); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background:var(--navy); color:rgba(255,255,255,0.85); padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.14); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.site-footer h4{ color:var(--gold-bright); font-family:var(--font-body); font-size:0.78rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px; }
.site-footer a{ text-decoration:none; color:rgba(255,255,255,0.82); }
.site-footer a:hover{ color:var(--white); }
.site-footer li{ margin-bottom:10px; font-size:0.92rem; }
.footer-areas{ display:grid; grid-template-columns:1fr 1fr; gap:0 14px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; padding:22px 0; font-size:0.8rem; color:rgba(255,255,255,0.6); }
.footer-logo{ font-family:var(--font-display); font-size:1.3rem; color:var(--white); }
.footer-badges{ display:flex; gap:16px; margin-top:16px; flex-wrap:wrap; }
.footer-badges span{ font-size:0.78rem; color:rgba(255,255,255,0.75); display:flex; align-items:center; gap:6px; }

/* Sticky mobile call bar */
.mobile-call-bar{ position:fixed; bottom:0; left:0; right:0; z-index:50; display:grid; grid-template-columns:1fr 1fr; background:var(--white); border-top:1px solid var(--navy-tint-line); box-shadow:0 -8px 20px rgba(0,0,0,0.08); }
.mobile-call-bar a{ text-decoration:none; text-align:center; padding:14px 8px; font-weight:700; font-size:0.9rem; }
.mobile-call-bar a:first-child{ background:var(--navy); color:var(--white); }
.mobile-call-bar a:last-child{ background:var(--gold); color:var(--white); }
@media (min-width:960px){ .mobile-call-bar{ display:none; } }
body{ padding-bottom:0; }
@media (max-width:959px){ body.has-call-bar{ padding-bottom:60px; } }
