/* ============================================================
   Pembrokeshire Drainage Repairs — pdr.css  v2
   Umbraco 8.18.5  |  Metcalf Media
   Place at: /css/pdr.css
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
    --green:         #46993a;
    --green-dark:    #326d29;
    --green-xdark:   #1e4418;
    --blue:          #2c82b8;
    --blue-dark:     #1d5c87;
    --blue-xdark:    #122f45;
    --dark:          #111820;
    --dark-mid:      #1c2830;
    --mid:           #3d4e5c;
    --muted:         #637585;
    --light:         #f3f6f8;
    --border:        #d8e2ea;
    --white:         #ffffff;

    --ff-heading:    'Cal Sans', sans-serif;
    --ff-body:       'Nunito Sans', sans-serif;

    --shadow:        0 4px 24px rgba(0,0,0,.12);
    --shadow-lg:     0 8px 48px rgba(0,0,0,.18);
    --transition:    all .2s ease;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family:    var(--ff-body);
    font-weight:    300;
    font-size:      1rem;
    line-height:    1.75;
    color:          var(--dark);
    background:     var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family:    var(--ff-heading);
    font-weight:    400;
    line-height:    1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
    color:          var(--dark);
    margin-bottom:  .75rem;
}

a  { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
p:last-child { margin-bottom: 0; }

/* ── UTILITY ────────────────────────────────────────────────── */
.section-pad   { padding: 88px 0; }
.section-alt   { background: var(--light); }
.section-dark  { background: var(--dark); }

.eyebrow {
    display: inline-block;
    font-family:    var(--ff-body);
    font-weight:    700;
    font-size:      .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color:          var(--green);
    margin-bottom:  .65rem;
}
.eyebrow--light { color: rgba(255,255,255,.55); }

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-body  { color: var(--mid); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-green {
    display:        inline-block;
    background:     var(--green);
    color:          var(--white);
    border:         2px solid var(--green);
    font-family:    var(--ff-heading);
    font-size:      .82rem;
    letter-spacing: .08em;
    padding:        .8rem 2rem;
    text-transform: uppercase;
    transition:     var(--transition);
    border-radius:  0;
    cursor:         pointer;
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70,153,58,.4);
}

.btn-blue {
    display:        inline-block;
    background:     var(--blue);
    color:          var(--white);
    border:         2px solid var(--blue);
    font-family:    var(--ff-heading);
    font-size:      .82rem;
    letter-spacing: .08em;
    padding:        .8rem 2rem;
    text-transform: uppercase;
    transition:     var(--transition);
    border-radius:  0;
}
.btn-blue:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    display:        inline-block;
    background:     transparent;
    color:          var(--white);
    border:         2px solid rgba(255,255,255,.5);
    font-family:    var(--ff-heading);
    font-size:      .82rem;
    letter-spacing: .08em;
    padding:        .8rem 2rem;
    text-transform: uppercase;
    transition:     var(--transition);
    border-radius:  0;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ── BOOTSTRAP RESET GUARDS ────────────────────────────────── */
/* Prevent Bootstrap bleeding into custom nav */
.site-header ul,
.site-header li { list-style: none; margin: 0; padding: 0; }

/* Mobile menu hidden by default — !important beats Bootstrap resets */
.mobile-menu          { display: none !important; }
.mobile-menu.open     { display: block !important; }

/* ── EMERGENCY BAR ─────────────────────────────────────────── */
.emergency-bar {
    background: var(--green-xdark);
    padding: .4rem 0;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: rgba(255,255,255,.8);
}
.emergency-bar a {
    color: var(--white);
    font-weight: 700;
}
.emergency-bar a:hover { color: #a8e09f; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
    background:   var(--dark);
    position:     sticky;
    top:          0;
    z-index:      1000;
    transition:   box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); }

.header-inner {
    display:      flex;
    align-items:  stretch;
    min-height:   70px;
}

.header-logo {
    display:      flex;
    align-items:  center;
    gap:          .8rem;
    padding:      0 1.5rem 0 0;
    text-decoration: none;
    flex-shrink:  0;
}
.header-logo img { height: 46px; width: auto; }
.logo-text {
    display:        flex;
    flex-direction: column;
    line-height:    1.1;
}
.logo-line1 {
    font-family:    var(--ff-heading);
    font-size:      1rem;
    color:          var(--green);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.logo-line2 {
    font-family:    var(--ff-heading);
    font-size:      .72rem;
    color:          var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.header-nav {
    display:     flex;
    align-items: stretch;
    flex:        1;
    margin:      0;
    padding:     0;
    list-style:  none;
}
.header-nav > li {
    display:     flex;
    align-items: stretch;
    position:    relative;
}
.header-nav > li > a {
    display:        flex;
    align-items:    center;
    padding:        0 1rem;
    font-family:    var(--ff-body);
    font-weight:    600;
    font-size:      .83rem;
    letter-spacing: .03em;
    color:          rgba(255,255,255,.75);
    text-transform: uppercase;
    white-space:    nowrap;
    border-bottom:  3px solid transparent;
    transition:     var(--transition);
}
.header-nav > li > a:hover,
.header-nav > li > a.active {
    color:          var(--white);
    border-color:   var(--green);
}

.nav-dropdown {
    position:   absolute;
    top:        100%;
    left:       0;
    background: var(--dark-mid);
    min-width:  260px;
    border-top: 3px solid var(--green);
    opacity:    0;
    visibility: hidden;
    transform:  translateY(8px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index:    100;
    list-style: none;
    margin:     0;
    padding:    .5rem 0;
}
.header-nav > li:hover .nav-dropdown {
    opacity:    1;
    visibility: visible;
    transform:  translateY(0);
}
.nav-dropdown a {
    display:     block;
    padding:     .55rem 1.25rem;
    font-size:   .84rem;
    font-weight: 600;
    color:       rgba(255,255,255,.65);
    border-left: 3px solid transparent;
    transition:  var(--transition);
}
.nav-dropdown a:hover {
    color:        var(--white);
    border-color: var(--green);
    background:   rgba(255,255,255,.05);
    padding-left: 1.5rem;
}

/* Quote CTA — flush to header, full height, no padding top/bottom */
.header-quote {
    display:     flex;
    align-items: stretch;
    margin-left: auto;
    flex-shrink: 0;
}
.header-quote a {
    display:        flex;
    align-items:    center;
    padding:        0 2.25rem;
    background:     var(--green);
    color:          var(--white);
    font-family:    var(--ff-heading);
    font-size:      .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space:    nowrap;
    transition:     background .2s;
    border-radius:  0;
}
.header-quote a:hover {
    background: var(--green-dark);
    color:      var(--white);
}
/* Phone in header */
.header-phone {
    display:     flex;
    align-items: stretch;
    flex-shrink: 0;
}
.header-phone a {
    display:        flex;
    align-items:    center;
    gap:            .5rem;
    padding:        0 1.25rem;
    background:     var(--blue-xdark);
    color:          var(--white);
    font-family:    var(--ff-heading);
    font-size:      .85rem;
    letter-spacing: .04em;
    border-radius:  0;
    white-space:    nowrap;
}
.header-phone a:hover { background: var(--blue-dark); color: var(--white); }

.header-toggle {
    display:         none;
    flex-direction:  column;
    justify-content: center;
    gap:             5px;
    padding:         0 1rem;
    background:      none;
    border:          none;
    cursor:          pointer;
    margin-left:     auto;
}
.header-toggle span {
    display:    block;
    width:      26px;
    height:     2px;
    background: var(--white);
    transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    position:    relative;
    min-height:  640px;
    display:     flex;
    align-items: center;
    overflow:    hidden;
    background:  var(--dark);
}
.hero__img {
    position:   absolute;
    inset:      0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
    opacity:    .3;
}
.hero__img::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(105deg, var(--dark) 40%, transparent 80%);
}
.hero__inner {
    position: relative;
    z-index:  1;
    padding:  100px 0 80px;
    width:    100%;
}
.hero__eyebrow {
    display:        inline-block;
    background:     var(--green);
    color:          var(--white);
    font-family:    var(--ff-body);
    font-weight:    700;
    font-size:      .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding:        .3rem .85rem;
    margin-bottom:  1.25rem;
}
.hero__title {
    font-size:     clamp(2.4rem, 5.5vw, 4.2rem);
    color:         var(--white);
    line-height:   1.05;
    margin-bottom: 1.25rem;
}
.hero__title em { font-style: normal; color: var(--blue); }
.hero__title strong { font-style: normal; color: var(--green); font-weight: 400; }
.hero__sub {
    color:         rgba(255,255,255,.75);
    font-size:     1.05rem;
    max-width:     520px;
    margin-bottom: 2rem;
    font-weight:   300;
    line-height:   1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__trust-strip {
    display:     flex;
    flex-wrap:   wrap;
    gap:         0;
    margin-top:  3rem;
    border-top:  1px solid rgba(255,255,255,.12);
    padding-top: 1.5rem;
}
.hero__trust-item {
    display:     flex;
    align-items: center;
    gap:         .5rem;
    padding-right: 1.5rem;
    margin-right:  1.5rem;
    border-right:  1px solid rgba(255,255,255,.15);
    font-size:     .78rem;
    font-weight:   700;
    color:         rgba(255,255,255,.6);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hero__trust-item:last-child { border-right: none; }
.hero__trust-item i { color: var(--green); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar { background: var(--green); }
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-block {
    padding:      1.75rem 1rem;
    text-align:   center;
    border-right: 1px solid rgba(255,255,255,.2);
}
.stat-block:last-child { border-right: none; }
.stat-block__num {
    font-family: var(--ff-heading);
    font-size:   2.4rem;
    color:       var(--white);
    line-height: 1;
    display:     block;
}
.stat-block__label {
    font-size:   .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color:       rgba(255,255,255,.65);
    display:     block;
    margin-top:  .3rem;
}

/* ── SPLIT INTRO ────────────────────────────────────────────── */
.split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.split-intro__img {
    position:   relative;
    min-height: 520px;
    overflow:   hidden;
}
.split-intro__img img {
    position:   absolute;
    inset:      0;
    width:      100%;
    height:     100%;
    object-fit: cover;
}
.split-intro__content {
    background: var(--white);
    padding:    88px 72px;
    display:    flex;
    flex-direction: column;
    justify-content: center;
}
.check-list {
    list-style: none;
    padding:    0;
    margin:     1.5rem 0;
}
.check-list li {
    display:     flex;
    align-items: flex-start;
    gap:         .75rem;
    padding:     .55rem 0;
    border-bottom: 1px solid var(--border);
    font-size:   .92rem;
    color:       var(--mid);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
    content:     '';
    display:     block;
    width:       18px;
    height:      18px;
    flex-shrink: 0;
    margin-top:  3px;
    background:  var(--green);
    clip-path:   polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ── SERVICE IMAGE TILES ────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.svc-tile {
    position:        relative;
    min-height:      300px;
    overflow:        hidden;
    display:         flex;
    flex-direction:  column;
    justify-content: flex-end;
    text-decoration: none;
    border:          1px solid rgba(255,255,255,.05);
}
.svc-tile__bg {
    position:            absolute;
    inset:               0;
    background-size:     cover;
    background-position: center;
    transition:          transform .55s ease;
}
.svc-tile:hover .svc-tile__bg { transform: scale(1.08); }
.svc-tile__overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 65%, transparent 100%);
    transition: var(--transition);
}
.svc-tile:hover .svc-tile__overlay {
    background: linear-gradient(0deg, rgba(26,68,24,.95) 0%, rgba(26,68,24,.5) 55%, transparent 100%);
}
.svc-tile__content {
    position: relative;
    z-index:  1;
    padding:  1.5rem;
}
.svc-tile__title {
    font-family:    var(--ff-heading);
    font-size:      .95rem;
    color:          var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin:         0 0 .5rem;
    line-height:    1.2;
}
.svc-tile__arrow {
    display:     inline-flex;
    align-items: center;
    gap:         .4rem;
    font-size:   .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color:       var(--green);
    opacity:     0;
    transform:   translateY(6px);
    transition:  opacity .25s, transform .25s;
}
.svc-tile:hover .svc-tile__arrow { opacity: 1; transform: translateY(0); }

/* Full-width service list rows */
.svc-list {
    border-top: 1px solid var(--border);
}
.svc-list-row {
    display:     grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}
.svc-list-item {
    display:         flex;
    align-items:     center;
    gap:             1.25rem;
    padding:         1.4rem 2rem;
    border-right:    1px solid var(--border);
    text-decoration: none;
    transition:      background .2s, border-color .2s;
    color:           var(--dark);
}
.svc-list-item:last-child { border-right: none; }
.svc-list-item:hover {
    background:   var(--green);
    border-color: var(--green);
    color:        var(--white);
}
.svc-list-item:hover .svc-list-num { color: rgba(255,255,255,.35); }
.svc-list-item:hover .svc-list-name { color: var(--white); }
.svc-list-num {
    font-family:  var(--ff-heading);
    font-size:    1.8rem;
    color:        var(--border);
    line-height:  1;
    flex-shrink:  0;
    transition:   var(--transition);
}
.svc-list-name {
    font-family:    var(--ff-heading);
    font-size:      .88rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin:         0;
    line-height:    1.3;
    transition:     var(--transition);
}

/* ── SPLIT DARK PANEL + IMAGE ───────────────────────────────── */
.imgpanel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.imgpanel__photo {
    position:   relative;
    overflow:   hidden;
}
.imgpanel__photo img {
    position:   absolute;
    inset:      0;
    width:      100%;
    height:     100%;
    object-fit: cover;
}
.imgpanel__dark {
    background: var(--blue-xdark);
    padding:    80px 64px;
    display:    flex;
    flex-direction: column;
    justify-content: center;
}

/* ── WHY BLOCKS ─────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}
.why-block {
    padding:       2.5rem 2.25rem;
    border-right:  1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:    background .2s;
}
.why-block:nth-child(3n)    { border-right: none; }
.why-block:nth-last-child(-n+3) { border-bottom: none; }
.why-block:hover            { background: var(--light); }
.why-block__num {
    font-family:  var(--ff-heading);
    font-size:    3.5rem;
    color:        var(--green);
    opacity:      .18;
    line-height:  1;
    margin-bottom: .5rem;
    display:      block;
}
.why-block__title {
    font-family:    var(--ff-heading);
    font-size:      1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom:  .6rem;
}
.why-block__body {
    font-size:   .88rem;
    color:       var(--muted);
    line-height: 1.7;
    margin:      0;
}

/* ── COVERAGE BAND ──────────────────────────────────────────── */
.coverage-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}
.coverage-band__map {
    position: relative;
    overflow: hidden;
}
.coverage-band__map iframe {
    position: absolute;
    inset:    0;
    width:    100%;
    height:   100%;
    border:   0;
    display:  block;
    filter:   grayscale(25%);
}
.coverage-band__content {
    background: var(--dark);
    padding:    72px 64px;
    display:    flex;
    flex-direction: column;
    justify-content: center;
}
.coverage-tags {
    display:    flex;
    flex-wrap:  wrap;
    gap:        .5rem;
    margin-top: 1.5rem;
}
.coverage-tag {
    background:  rgba(255,255,255,.07);
    border:      1px solid rgba(255,255,255,.15);
    color:       rgba(255,255,255,.7);
    font-size:   .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding:     .35rem .85rem;
    transition:  var(--transition);
}
.coverage-tag:hover {
    background:  var(--green);
    border-color: var(--green);
    color:       var(--white);
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}
.review-block {
    padding:      2.5rem 2rem;
    border-right: 1px solid var(--border);
}
.review-block:last-child { border-right: none; }
.review-block__stars {
    color:         #f4b400;
    font-size:     1rem;
    letter-spacing: .05em;
    margin-bottom: 1rem;
}
.review-block__quote {
    font-size:   .9rem;
    color:       var(--mid);
    font-style:  italic;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    padding-left:  1rem;
    border-left:   3px solid var(--green);
}
.review-block__author {
    font-size:   .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color:       var(--dark);
    margin:      0;
}
.review-block__loc {
    font-size:  .75rem;
    color:      var(--muted);
    display:    block;
    margin-top: .15rem;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
    background: var(--green);
    padding:    80px 0;
}
.cta-band--blue { background: var(--blue-dark); }
.cta-band__title {
    font-family:   var(--ff-heading);
    font-size:     clamp(1.7rem, 3vw, 2.6rem);
    color:         var(--white);
    margin-bottom: .5rem;
}
.cta-band__sub {
    color:         rgba(255,255,255,.8);
    margin-bottom: 2rem;
    font-size:     1rem;
}
.cta-band__phone {
    font-family: var(--ff-heading);
    font-size:   1.6rem;
    color:       var(--white);
    display:     inline-flex;
    align-items: center;
    gap:         .5rem;
}
.cta-band__phone:hover { color: rgba(255,255,255,.8); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color:      rgba(255,255,255,.55);
    padding:    72px 0 0;
    font-size:  .88rem;
}
.footer-logo {
    display:    flex;
    align-items: center;
    gap:        .75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo-text {
    display:        flex;
    flex-direction: column;
    font-family:    var(--ff-heading);
    text-transform: uppercase;
    line-height:    1.15;
}
.footer-logo-text span:first-child { color: var(--green); font-size: .95rem; }
.footer-logo-text span:last-child  { color: var(--blue);  font-size: .72rem; letter-spacing: .05em; }

.footer-contact-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.footer-contact-list li {
    display:     flex;
    align-items: center;
    gap:         .6rem;
    margin-bottom: .4rem;
    color:       rgba(255,255,255,.55);
}
.footer-contact-list li i { color: var(--green); }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--white); }

.footer-heading {
    font-family:    var(--ff-heading);
    font-size:      .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color:          var(--white);
    margin-bottom:  1rem;
    padding-bottom: .5rem;
    border-bottom:  1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-emergency {
    margin-top: 1.5rem;
    padding:    1.25rem;
    background: rgba(255,255,255,.04);
    border-left: 3px solid var(--green);
}
.footer-emergency-label {
    font-size:   .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color:       var(--green);
    margin-bottom: .25rem;
    display:     block;
}
.footer-emergency-num {
    font-family: var(--ff-heading);
    font-size:   1.4rem;
    color:       var(--white);
    display:     block;
}
.footer-emergency-num:hover { color: var(--green); }

.footer-bottom {
    border-top:   1px solid rgba(255,255,255,.07);
    margin-top:   3rem;
    padding:      1.25rem 0;
    display:      flex;
    justify-content: space-between;
    align-items:  center;
    flex-wrap:    wrap;
    gap:          .5rem;
    font-size:    .78rem;
    color:        rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--white); }

/* ── INNER PAGE HERO ────────────────────────────────────────── */
.inner-hero {
    background:    var(--dark);
    padding:       64px 0 48px;
    border-bottom: 4px solid var(--green);
    position:      relative;
    overflow:      hidden;
}
.inner-hero__title {
    font-size:     clamp(1.8rem, 4vw, 3rem);
    color:         var(--white);
    margin-bottom: .5rem;
    position:      relative;
}
.inner-hero__sub {
    color:    rgba(255,255,255,.65);
    max-width: 600px;
    position: relative;
}
.breadcrumb-bar {
    background:    var(--light);
    border-bottom: 1px solid var(--border);
    padding:       .65rem 0;
    font-size:     .8rem;
}
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: var(--blue); }
.breadcrumb-item.active { color: var(--muted); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .split-intro__content { padding: 64px 48px; }
    .imgpanel__dark,
    .coverage-band__content { padding: 56px 48px; }
}

@media (max-width: 991.98px) {
    .section-pad { padding: 64px 0; }
    .header-nav,
    .header-quote,
    .header-phone       { display: none !important; }
    .header-toggle      { display: flex !important; }

    .mobile-menu {
        display:    none;
        background: var(--dark-mid);
        border-top: 3px solid var(--green);
        list-style: none;
        margin:     0;
        padding:    .75rem 0;
    }
    .mobile-menu.open  { display: block; }
    .mobile-menu a     { display: block; padding: .65rem 1.5rem; color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 600; }
    .mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,.05); }
    .mobile-menu .mob-quote {
        display:    block;
        margin:     .75rem 1.5rem 0;
        background: var(--green);
        color:      var(--white);
        text-align: center;
        padding:    .85rem;
        font-family: var(--ff-heading);
        font-size:  .82rem;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .split-intro, .imgpanel, .coverage-band { grid-template-columns: 1fr; }
    .split-intro__img  { min-height: 360px; position: relative; }
    .split-intro__img img { position: static; width: 100%; height: 360px; object-fit: cover; }
    .imgpanel__photo   { min-height: 340px; position: relative; }
    .imgpanel__photo img { position: static; width: 100%; height: 340px; object-fit: cover; }
    .split-intro__content, .imgpanel__dark, .coverage-band__content { padding: 48px 32px; }
    .coverage-band__map { min-height: 320px; position: relative; }
    .coverage-band__map iframe { position: static; height: 320px; }

    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .svc-list-row   { grid-template-columns: repeat(2, 1fr); }
    .why-grid       { grid-template-columns: repeat(2, 1fr); }
    .why-block:nth-child(3n) { border-right: 1px solid var(--border); }
    .why-block:nth-child(2n) { border-right: none; }
    .reviews-grid   { grid-template-columns: 1fr; }
    .review-block   { border-right: none; border-bottom: 1px solid var(--border); }
    .review-block:last-child { border-bottom: none; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-block { border-bottom: 1px solid rgba(255,255,255,.2); }
}

@media (max-width: 575.98px) {
    .hero__title { font-size: 2rem; }
    .services-grid  { grid-template-columns: 1fr; }
    .svc-list-row   { grid-template-columns: 1fr; }
    .svc-list-item  { border-right: none; }
    .why-grid       { grid-template-columns: 1fr; }
    .why-block:nth-child(n) { border-right: none; }
    .footer-bottom  { flex-direction: column; text-align: center; }
}
