/*
 * DakUp Dakdekkersbedrijf — main.css
 * Mobile-first, system fonts, no frameworks.
 * Colors: Navy #07111F | Blue #21468B | Red #DC143C | White #FFFFFF | Light gray #F5F7FA
 */

/* =========================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================= */

:root {
    --navy:      #07111F;
    --blue:      #21468B;
    --red:       #DC143C;
    --red-dark:  #B01030;
    --white:     #FFFFFF;
    --gray:      #F5F7FA;
    --gray-mid:  #E2E6ED;
    --gray-text: #6B7280;
    --text:      #1A1F2E;
    --text-light:#4B5563;

    --font:       system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);

    --container:  1200px;
    --gap:        1.5rem;

    --header-h:   68px;
    --topbar-h:   36px;
}

/* =========================================================
   1. RESET & BASE
   ========================================================= */

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

html {
    font-size:       16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:  var(--font);
    font-size:    1rem;
    line-height:  1.65;
    color:        var(--text);
    background:   var(--white);
    overflow-x:   hidden;
}

/* Offset for sticky header */
body {
    padding-top: calc(var(--topbar-h) + var(--header-h));
}

img,
picture,
video,
canvas,
svg {
    display:   block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color:           var(--blue);
    text-decoration: none;
    transition:      color .2s ease;
}

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

ul,
ol {
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:    500;
    line-height:    1.2;
    color:          var(--navy);
    margin-bottom:  .75rem;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

strong { font-weight: 500; }

/* =========================================================
   2. ACCESSIBILITY
   ========================================================= */

.skip-link {
    position:        absolute;
    top:             -100%;
    left:            1rem;
    background:      var(--red);
    color:           var(--white);
    padding:         .5rem 1rem;
    border-radius:   var(--radius-md);
    font-weight:     500;
    z-index:         9999;
    transition:      top .2s;
}

.skip-link:focus {
    top: 1rem;
}

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

/* =========================================================
   3. LAYOUT UTILITIES
   ========================================================= */

.container {
    width:     100%;
    max-width: var(--container);
    margin:    0 auto;
    padding:   0 1.25rem;
}

.section {
    padding: 4rem 0;
}

.section--light {
    background: var(--gray);
}

.section-header {
    text-align:    center;
    margin-bottom: 2.5rem;
    max-width:     680px;
    margin-left:   auto;
    margin-right:  auto;
}

.section-title {
    color:         var(--navy);
    margin-bottom: .5rem;
}

.section-sub {
    color:       var(--text-light);
    font-size:   1.05rem;
    margin:      0;
    line-height: 1.6;
}

/* =========================================================
   4. BUTTONS
   ========================================================= */

.btn {
    display:          inline-flex;
    align-items:      center;
    gap:              .5rem;
    padding:          .75rem 1.5rem;
    font-size:        .95rem;
    font-weight:      500;
    border-radius:    var(--radius-md);
    border:           2px solid transparent;
    cursor:           pointer;
    transition:       background .2s, border-color .2s, color .2s, transform .1s;
    text-decoration:  none;
    white-space:      nowrap;
    line-height:      1;
}

.btn:active {
    transform: scale(.97);
}

.btn--sm {
    padding:   .5rem 1rem;
    font-size: .875rem;
}

.btn--lg {
    padding:   .9rem 1.75rem;
    font-size: 1rem;
}

.btn--full {
    width:           100%;
    justify-content: center;
}

/* Red (primary) */
.btn--red {
    background: var(--red);
    color:      var(--white);
}
.btn--red:hover {
    background: var(--red-dark);
    color:      var(--white);
}

/* White with red text (urgency strip) */
.btn--white-red {
    background:   var(--white);
    color:        var(--red);
    border-color: var(--white);
}
.btn--white-red:hover {
    background: #ffe8ec;
    color:      var(--red-dark);
}

/* Outline white (hero secondary) */
.btn--outline-white {
    background:   transparent;
    color:        var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
    background:   rgba(255,255,255,.12);
    border-color: var(--white);
    color:        var(--white);
}

/* Outline navy */
.btn--outline-navy {
    background:   transparent;
    color:        var(--navy);
    border-color: var(--navy);
}
.btn--outline-navy:hover {
    background: var(--navy);
    color:      var(--white);
}

/* WhatsApp green */
.btn--whatsapp {
    background: #25D366;
    color:      var(--white);
}
.btn--whatsapp:hover {
    background: #1EBD58;
    color:      var(--white);
}

/* Icons inside buttons */
.btn svg {
    flex-shrink: 0;
}

/* =========================================================
   5. TOP BAR
   ========================================================= */

.topbar {
    position:   fixed;
    top:        0;
    left:       0;
    right:      0;
    z-index:    1000;
    background: var(--navy);
    height:     var(--topbar-h);
    display:    flex;
    align-items:center;
}

.topbar__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             1rem;
}

.topbar__item {
    display:     flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .8rem;
    color:       rgba(255,255,255,.6);
}

.topbar__right {
    display:     flex;
    align-items: center;
    gap:         1.25rem;
}

.topbar__link {
    display:     flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .8rem;
    color:       rgba(255,255,255,.7);
    transition:  color .2s;
}

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

.topbar__badge {
    background:    var(--red);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .15rem .55rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Hide topbar on very small screens */
@media (max-width: 480px) {
    .topbar {
        display: none;
    }
    :root {
        --topbar-h: 0px;
    }
}

/* =========================================================
   6. SITE HEADER / NAV
   ========================================================= */

.site-header {
    position:   fixed;
    top:        var(--topbar-h);
    left:       0;
    right:      0;
    z-index:    999;
    background: var(--white);
    height:     var(--header-h);
    border-bottom: 1px solid var(--gray-mid);
    transition: box-shadow .2s;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    height:          100%;
    gap:             1rem;
}

/* Logo */
.site-header__logo {
    display:         flex;
    align-items:     center;
    text-decoration: none;
    flex-shrink:     0;
}

.site-header__logo img {
    height: 42px;
    width:  auto;
}

.site-header__logo-text {
    font-size:   1.3rem;
    color:       var(--navy);
    font-weight: 700;
    line-height: 1.1;
}

.site-header__logo-text strong {
    color:       var(--red);
    font-weight: 700;
}

.site-header__logo-sub {
    display:     block;
    font-size:   .7rem;
    font-weight: 400;
    color:       var(--gray-text);
    letter-spacing: .02em;
}

/* Primary nav — hidden on mobile */
.site-nav {
    display: none;
    flex:    1;
}

.site-nav__list {
    display:     flex;
    align-items: center;
    gap:         .25rem;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display:      block;
    padding:      .5rem .75rem;
    font-size:    .9rem;
    font-weight:  500;
    color:        var(--navy);
    border-radius:var(--radius-md);
    transition:   background .2s, color .2s;
}

.site-nav__link:hover,
.site-nav__link:focus {
    background: var(--gray);
    color:      var(--red);
}

.current-menu-item > .site-nav__link {
    color: var(--red);
}

/* Desktop CTA — hidden on mobile */
.site-header__cta {
    display:    none;
    flex-shrink:0;
}

/* Hamburger */
.hamburger {
    display:          flex;
    flex-direction:   column;
    justify-content:  center;
    gap:              5px;
    width:            44px;
    height:           44px;
    padding:          10px;
    background:       none;
    border:           none;
    cursor:           pointer;
    border-radius:    var(--radius-md);
    transition:       background .2s;
    flex-shrink:      0;
}

.hamburger:hover {
    background: var(--gray);
}

.hamburger__bar {
    display:          block;
    width:            100%;
    height:           2px;
    background:       var(--navy);
    border-radius:    2px;
    transition:       transform .25s, opacity .25s;
    transform-origin: center;
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.site-nav.is-open {
    display:    block;
    position:   fixed;
    top:        calc(var(--topbar-h) + var(--header-h));
    left:       0;
    right:      0;
    background: var(--white);
    border-bottom: 2px solid var(--gray-mid);
    padding:    1rem 1.25rem;
    z-index:    998;
    box-shadow: var(--shadow-md);
}

.site-nav.is-open .site-nav__list {
    flex-direction: column;
    align-items:    stretch;
    gap:            .25rem;
}

.site-nav.is-open .site-nav__link {
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
}

/* Desktop layout */
@media (min-width: 1024px) {
    .site-nav {
        display: flex;
    }

    .site-nav.is-open {
        position:   static;
        border:     none;
        padding:    0;
        box-shadow: none;
    }

    .site-header__cta {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

/* =========================================================
   7. STICKY MOBILE BAR
   ========================================================= */

.mobile-bar {
    display:         flex;
    position:        fixed;
    bottom:          0;
    left:            0;
    right:           0;
    z-index:         997;
    background:      var(--navy);
    border-top:      2px solid rgba(255,255,255,.1);
    height:          64px;
    transition:      transform .3s ease;
}

.mobile-bar.is-hidden {
    transform: translateY(100%);
}

.mobile-bar__btn {
    flex:            1;
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             .5rem;
    font-size:       .95rem;
    font-weight:     500;
    color:           var(--white);
    text-decoration: none;
    transition:      background .2s;
}

.mobile-bar__btn--call {
    background: var(--red);
}

.mobile-bar__btn--call:hover {
    background: var(--red-dark);
    color:      var(--white);
}

.mobile-bar__btn--whatsapp {
    background: #25D366;
}

.mobile-bar__btn--whatsapp:hover {
    background: #1EBD58;
    color:      var(--white);
}

/* Add safe area padding for iOS home indicator */
.mobile-bar {
    padding-bottom: env(safe-area-inset-bottom);
    height:         calc(64px + env(safe-area-inset-bottom));
}

/* Hide mobile bar on desktop, add bottom margin on mobile */
@media (max-width: 1023px) {
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 1024px) {
    .mobile-bar {
        display: none;
    }
}

/* =========================================================
   8. HERO SECTION
   ========================================================= */

.hero {
    position:   relative;
    min-height: min(90vh, 680px);
    display:    flex;
    align-items:center;
    overflow:   hidden;
    color:      var(--white);
}

.hero__bg {
    position: absolute;
    inset:    0;
    z-index:  0;
}

.hero__bg::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        105deg,
        rgba(7,17,31,.88) 0%,
        rgba(7,17,31,.7) 55%,
        rgba(7,17,31,.4) 100%
    );
}

.hero__bg-img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    object-position: center;
}

.hero__inner {
    position:   relative;
    z-index:    1;
    padding-top:    3rem;
    padding-bottom: 3rem;
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    display:        flex;
    align-items:    center;
    gap:            .5rem;
    font-size:      .8rem;
    font-weight:    500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color:          var(--red);
    margin-bottom:  1rem;
}

.hero__eyebrow-dot {
    width:         8px;
    height:        8px;
    background:    var(--red);
    border-radius: 50%;
    flex-shrink:   0;
    animation:     pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

.hero__title {
    font-size:     clamp(1.8rem, 5vw, 3rem);
    font-weight:   500;
    line-height:   1.15;
    color:         var(--white);
    margin-bottom: 1rem;
}

.hero__title-accent {
    display:    block;
    color:      var(--red);
    font-size:  .72em;
    margin-top: .25rem;
}

.hero__sub {
    font-size:     1.05rem;
    color:         rgba(255,255,255,.75);
    margin-bottom: 1.75rem;
    line-height:   1.7;
    max-width:     560px;
}

.hero__sub strong {
    color:       rgba(255,255,255,.95);
    font-weight: 500;
}

.hero__actions {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
    margin-bottom: 1.75rem;
}

.hero__trust {
    display:    flex;
    flex-wrap:  wrap;
    gap:        1rem 1.75rem;
    padding-top:1.25rem;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero__trust-item {
    display:     flex;
    align-items: center;
    gap:         .4rem;
    font-size:   .875rem;
    color:       rgba(255,255,255,.7);
}

.hero__trust-icon {
    color:       #4ade80;
    flex-shrink: 0;
}

/* =========================================================
   9. TRUST BAR
   ========================================================= */

.trust-bar {
    background:    var(--navy);
    color:         var(--white);
    padding:       2rem 0;
}

.trust-bar__grid {
    display:         flex;
    align-items:     center;
    justify-content: center;
    flex-wrap:       wrap;
    gap:             1.5rem;
}

.trust-bar__item {
    display:     flex;
    flex-direction: column;
    align-items: center;
    text-align:  center;
    min-width:   120px;
}

.trust-bar__number {
    font-size:   2rem;
    font-weight: 700;
    color:       var(--white);
    line-height: 1;
}

.trust-bar__plus {
    font-size:   1.4rem;
    font-weight: 400;
    color:       var(--red);
}

.trust-bar__label {
    font-size:  .8rem;
    color:      rgba(255,255,255,.6);
    margin-top: .35rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.trust-bar__divider {
    width:      1px;
    height:     40px;
    background: rgba(255,255,255,.15);
}

@media (max-width: 600px) {
    .trust-bar__divider {
        display: none;
    }
    .trust-bar__grid {
        gap: 1.25rem 2rem;
    }
}

/* =========================================================
   10. SERVICE CARDS
   ========================================================= */

.services__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
}

@media (min-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position:      relative;
    background:    var(--white);
    border:        1.5px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    display:       flex;
    flex-direction:column;
    transition:    border-color .2s, box-shadow .2s, transform .2s;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow:   var(--shadow-md);
    transform:    translateY(-2px);
}

.service-card--featured {
    border-color: var(--blue);
    border-width: 2px;
}

.service-card__badge {
    position:      absolute;
    top:           -12px;
    left:          1rem;
    background:    var(--blue);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .2rem .65rem;
    border-radius: var(--radius-sm);
    text-transform:uppercase;
    letter-spacing:.04em;
}

.service-card__icon {
    color:         var(--blue);
    margin-bottom: 1rem;
    width:         52px;
    height:        52px;
    background:    #EEF3FF;
    border-radius: var(--radius-md);
    display:       flex;
    align-items:   center;
    justify-content: center;
    flex-shrink:   0;
}

.service-card__title {
    font-size:     1.1rem;
    margin-bottom: .5rem;
    color:         var(--navy);
}

.service-card__desc {
    font-size:     .9rem;
    color:         var(--text-light);
    line-height:   1.6;
    flex:          1;
    margin-bottom: 1rem;
}

.service-card__link {
    display:     inline-flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .875rem;
    font-weight: 500;
    color:       var(--blue);
    margin-top:  auto;
    transition:  gap .2s, color .2s;
}

.service-card__link:hover {
    gap:   .6rem;
    color: var(--red);
}

/* =========================================================
   11. URGENCY STRIP
   ========================================================= */

.urgency-strip {
    background: var(--red);
    color:      var(--white);
    padding:    1.5rem 0;
}

.urgency-strip__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             1rem;
}

.urgency-strip__text {
    display:     flex;
    align-items: center;
    gap:         1rem;
    flex-wrap:   wrap;
}

.urgency-strip__badge {
    background:    rgba(0,0,0,.25);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   700;
    padding:       .2rem .6rem;
    border-radius: var(--radius-sm);
    letter-spacing:.08em;
    flex-shrink:   0;
}

.urgency-strip__msg {
    font-size:   1.1rem;
    font-weight: 500;
    color:       var(--white);
    margin:      0;
}

@media (max-width: 600px) {
    .urgency-strip__inner {
        flex-direction: column;
        text-align:     center;
    }
}

/* =========================================================
   12. WORK GALLERY
   ========================================================= */

.gallery__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1rem;
}

@media (min-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery__item {
    position:      relative;
    overflow:      hidden;
    border-radius: var(--radius-lg);
    margin:        0;
    background:    var(--gray);
}

.gallery__img {
    width:      100%;
    height:     260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.04);
}

.gallery__caption {
    position:   absolute;
    bottom:     0;
    left:       0;
    right:      0;
    background: linear-gradient(transparent, rgba(7,17,31,.8));
    color:      var(--white);
    font-size:  .875rem;
    font-weight:500;
    padding:    1.5rem .875rem .75rem;
}

/* =========================================================
   13. WHY US
   ========================================================= */

.why-us__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
}

@media (min-width: 600px) {
    .why-us__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .why-us__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    transition:    box-shadow .2s, transform .2s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform:  translateY(-2px);
}

.why-card__icon {
    color:         var(--red);
    margin-bottom: 1rem;
    width:         48px;
    height:        48px;
    background:    #FEEAEE;
    border-radius: var(--radius-md);
    display:       flex;
    align-items:   center;
    justify-content: center;
}

.why-card__title {
    font-size:     1rem;
    margin-bottom: .5rem;
    color:         var(--navy);
}

.why-card__desc {
    font-size:   .9rem;
    color:       var(--text-light);
    line-height: 1.6;
    margin:      0;
}

/* =========================================================
   14. REVIEWS
   ========================================================= */

.reviews__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
    margin-bottom:         2rem;
}

@media (min-width: 700px) {
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    display:       flex;
    flex-direction:column;
    gap:           .75rem;
}

.stars {
    display: flex;
    gap:     2px;
}

.stars__star {
    font-size: 1.2rem;
    color:     var(--gray-mid);
}

.stars__star--filled {
    color: #F59E0B;
}

.review-card__quote {
    font-size:   .95rem;
    color:       var(--text);
    line-height: 1.65;
    flex:        1;
    font-style:  normal;
}

.review-card__footer {
    display:     flex;
    flex-direction:column;
    gap:         .15rem;
    margin-top:  auto;
}

.review-card__name {
    font-size:   .875rem;
    font-weight: 500;
    color:       var(--navy);
}

.review-card__location {
    font-size: .8rem;
    color:     var(--gray-text);
}

.reviews__cta {
    text-align: center;
}

.reviews__google-label {
    color:       var(--gray-text);
    font-size:   .875rem;
    margin-bottom:.75rem;
}

/* =========================================================
   15. FAQ ACCORDION
   ========================================================= */

.faq__container {
    max-width: 800px;
}

.faq__list {
    border-top: 1px solid var(--gray-mid);
}

.faq__item {
    border-bottom: 1px solid var(--gray-mid);
}

.faq__question {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    width:           100%;
    gap:             1rem;
    padding:         1.1rem 0;
    background:      none;
    border:          none;
    cursor:          pointer;
    text-align:      left;
    font-size:       1rem;
    font-weight:     500;
    color:           var(--navy);
    transition:      color .2s;
}

.faq__question:hover {
    color: var(--red);
}

.faq__question[aria-expanded="true"] {
    color: var(--red);
}

.faq__icon {
    flex-shrink: 0;
    transition:  transform .25s ease;
    color:       currentColor;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding-bottom: 1.1rem;
    font-size:      .95rem;
    color:          var(--text-light);
    line-height:    1.7;
}

.faq__answer[hidden] {
    display: none;
}

.faq__answer a {
    color:       var(--blue);
    font-weight: 500;
}

/* =========================================================
   16. SERVICE AREAS
   ========================================================= */

.areas__grid {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   .75rem;
    margin-bottom:         1.5rem;
}

@media (min-width: 600px) {
    .areas__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.area-link {
    display:         flex;
    align-items:     center;
    gap:             .4rem;
    padding:         .75rem 1rem;
    background:      var(--white);
    border:          1px solid var(--gray-mid);
    border-radius:   var(--radius-md);
    font-size:       .9rem;
    font-weight:     500;
    color:           var(--navy);
    transition:      border-color .2s, color .2s, background .2s;
}

.area-link svg {
    color:       var(--red);
    flex-shrink: 0;
}

.area-link:hover {
    border-color: var(--red);
    color:        var(--red);
    background:   #FFF5F7;
}

.areas__note {
    font-size:  .9rem;
    color:      var(--gray-text);
    text-align: center;
}

.areas__note a {
    font-weight: 500;
    color:       var(--blue);
}

/* =========================================================
   17. FINAL CTA
   ========================================================= */

.final-cta {
    background: var(--navy);
    color:      var(--white);
}

.final-cta__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   2.5rem;
}

@media (min-width: 900px) {
    .final-cta__grid {
        grid-template-columns: 1fr 1fr;
        align-items:           center;
    }
}

.final-cta__title {
    font-size:     clamp(1.3rem, 3vw, 1.8rem);
    color:         var(--white);
    margin-bottom: .75rem;
}

.final-cta__sub {
    color:         rgba(255,255,255,.7);
    margin-bottom: 1.5rem;
    font-size:     1rem;
    line-height:   1.65;
}

.final-cta__buttons {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
    margin-bottom: 1.25rem;
}

.final-cta__meta {
    font-size:   .875rem;
    color:       rgba(255,255,255,.5);
}

.final-cta__meta p {
    display:     flex;
    align-items: center;
    gap:         .4rem;
    margin:      0;
}

.final-cta__meta a {
    color: rgba(255,255,255,.7);
}

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

/* Contact form */
.contact-form-wrap {
    background:    var(--white);
    border-radius: var(--radius-lg);
    padding:       2rem;
}

.contact-form-wrap__title {
    color:         var(--navy);
    font-size:     1.2rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display:       block;
    font-size:     .875rem;
    font-weight:   500;
    color:         var(--navy);
    margin-bottom: .35rem;
}

.form-label span {
    color: var(--red);
}

.form-input {
    width:         100%;
    padding:       .65rem .875rem;
    font-size:     1rem;
    color:         var(--text);
    background:    var(--white);
    border:        1.5px solid var(--gray-mid);
    border-radius: var(--radius-md);
    outline:       none;
    transition:    border-color .2s, box-shadow .2s;
    appearance:    none;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow:   0 0 0 3px rgba(33,70,139,.15);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-textarea {
    resize:      vertical;
    min-height:  100px;
}

.form-privacy {
    font-size:   .8rem;
    color:       var(--gray-text);
    margin-top:  .75rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.form-privacy a {
    color: var(--blue);
}

/* =========================================================
   18. INNER CTA STRIP (page / single templates)
   ========================================================= */

.inner-cta {
    background: var(--gray);
    padding:    2.5rem 0;
    border-top: 1px solid var(--gray-mid);
}

.inner-cta__inner {
    display:         flex;
    align-items:     center;
    flex-wrap:       wrap;
    gap:             1rem;
    justify-content: space-between;
}

.inner-cta__text {
    font-size:   1rem;
    font-weight: 500;
    color:       var(--navy);
    margin:      0;
}

.inner-cta__buttons {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
}

/* =========================================================
   19. PAGE TEMPLATE
   ========================================================= */

.page-wrap {
    min-height: 50vh;
}

.page-header {
    padding-bottom: 1.5rem;
    margin-bottom:  2rem;
    border-bottom:  1px solid var(--gray-mid);
}

.page-header__title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color:     var(--navy);
    margin:    0;
}

.entry-content h2 { margin-top: 1.75rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    list-style:   disc;
    margin-bottom:1rem;
}
.entry-content li {
    margin-bottom: .35rem;
}
.entry-content blockquote {
    border-left: 4px solid var(--blue);
    padding:     .75rem 1.25rem;
    margin:      1.5rem 0;
    background:  var(--gray);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style:  italic;
    color:       var(--text-light);
}
.entry-content table {
    width:           100%;
    border-collapse: collapse;
    margin-bottom:   1.5rem;
    font-size:       .9rem;
}
.entry-content th,
.entry-content td {
    padding:     .6rem .875rem;
    text-align:  left;
    border:      1px solid var(--gray-mid);
}
.entry-content th {
    background:  var(--navy);
    color:       var(--white);
    font-weight: 500;
}
.entry-content tr:nth-child(even) td {
    background: var(--gray);
}

/* =========================================================
   20. SINGLE POST TEMPLATE
   ========================================================= */

.single-article {
    max-width: 760px;
    margin:    0 auto;
}

.single-header {
    margin-bottom: 2rem;
}

.breadcrumb__list {
    display:   flex;
    flex-wrap: wrap;
    gap:       .35rem;
    align-items:center;
    font-size: .8rem;
    color:     var(--gray-text);
    margin-bottom: 1rem;
}

.breadcrumb__link {
    color: var(--blue);
}

.breadcrumb__link:hover {
    color: var(--red);
}

.single-header__title {
    font-size:     clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: .75rem;
}

.single-header__meta {
    display:     flex;
    align-items: center;
    gap:         1rem;
    font-size:   .875rem;
    color:       var(--gray-text);
    margin-bottom: 1.25rem;
}

.single-header__cat {
    background:    var(--blue);
    color:         var(--white);
    padding:       .15rem .55rem;
    border-radius: var(--radius-sm);
    font-size:     .75rem;
    font-weight:   500;
}

.single-header__thumb {
    border-radius: var(--radius-lg);
    overflow:      hidden;
    margin-top:    1rem;
}

.single-header__thumb img {
    width:      100%;
    height:     auto;
    display:    block;
}

.single-content {
    margin-bottom: 2rem;
}

.single-footer {
    padding-top: 1.5rem;
    border-top:  1px solid var(--gray-mid);
}

.single-footer__tags {
    display:   flex;
    flex-wrap: wrap;
    gap:       .5rem;
    margin-bottom: 1.25rem;
}

.tag-link {
    background:    var(--gray);
    color:         var(--navy);
    font-size:     .8rem;
    padding:       .25rem .65rem;
    border-radius: var(--radius-sm);
    transition:    background .2s, color .2s;
}

.tag-link:hover {
    background: var(--navy);
    color:      var(--white);
}

.post-nav {
    display:         flex;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             .75rem;
    font-size:       .875rem;
}

.post-nav__link {
    font-weight: 500;
    color:       var(--blue);
}

.post-nav__link:hover {
    color: var(--red);
}

/* =========================================================
   21. ARCHIVE / BLOG
   ========================================================= */

.archive-header {
    margin-bottom: 2rem;
    padding-bottom:1.5rem;
    border-bottom: 1px solid var(--gray-mid);
}

.archive-header__title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color:     var(--navy);
}

.archive-header__desc {
    font-size: 1rem;
    color:     var(--text-light);
    margin:    0;
}

.post-grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.5rem;
    margin-bottom:         2rem;
}

@media (min-width: 640px) {
    .post-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    overflow:      hidden;
    display:       flex;
    flex-direction:column;
    transition:    box-shadow .2s, transform .2s;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform:  translateY(-2px);
}

.post-card__thumb-link {
    display: block;
}

.post-card__thumb {
    width:      100%;
    height:     200px;
    object-fit: cover;
    display:    block;
}

.post-card__body {
    padding:        1.25rem;
    display:        flex;
    flex-direction: column;
    flex:           1;
}

.post-card__cat {
    display:       inline-block;
    background:    var(--blue);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .15rem .5rem;
    border-radius: var(--radius-sm);
    margin-bottom: .5rem;
}

.post-card__title {
    font-size:     1rem;
    margin-bottom: .5rem;
    flex:          1;
}

.post-card__title-link {
    color:       var(--navy);
    font-weight: 500;
}

.post-card__title-link:hover {
    color: var(--red);
}

.post-card__excerpt {
    font-size:   .875rem;
    color:       var(--text-light);
    margin-bottom: .875rem;
    line-height: 1.55;
}

.post-card__footer {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    font-size:       .8rem;
    margin-top:      auto;
}

.post-card__date {
    color: var(--gray-text);
}

.post-card__read-more {
    font-weight: 500;
    color:       var(--blue);
}

.post-card__read-more:hover {
    color: var(--red);
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination .page-numbers {
    display:       inline-flex;
    align-items:   center;
    justify-content:center;
    width:         40px;
    height:        40px;
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-md);
    font-size:     .875rem;
    color:         var(--navy);
    margin:        0 .2rem;
    transition:    background .2s, color .2s, border-color .2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background:   var(--navy);
    color:        var(--white);
    border-color: var(--navy);
}

/* =========================================================
   22. 404 PAGE
   ========================================================= */

.error-404__inner {
    text-align:  center;
    padding:     4rem 1.25rem;
    max-width:   600px;
}

.error-404__code {
    font-size:   6rem;
    font-weight: 700;
    color:       var(--gray-mid);
    line-height: 1;
    margin-bottom: .5rem;
}

.error-404__title {
    font-size:     2rem;
    margin-bottom: 1rem;
}

.error-404__desc {
    color:         var(--text-light);
    margin-bottom: 1.75rem;
}

.error-404__actions {
    display:         flex;
    justify-content: center;
    flex-wrap:       wrap;
    gap:             .75rem;
    margin-bottom:   2rem;
}

.error-404__links-title {
    font-weight:   500;
    color:         var(--navy);
    margin-bottom: .75rem;
}

.error-404__link-list {
    display:   flex;
    flex-wrap: wrap;
    gap:       .5rem;
    justify-content: center;
}

.error-404__link-list li a {
    color:         var(--blue);
    font-size:     .9rem;
    font-weight:   500;
}

.error-404__link-list li a:hover {
    color: var(--red);
}

/* =========================================================
   23. NO RESULTS
   ========================================================= */

.no-results {
    text-align:  center;
    padding:     3rem 0;
}

.no-results p {
    color:         var(--gray-text);
    margin-bottom: 1.25rem;
}

/* =========================================================
   24. ICON UTILITY
   ========================================================= */

.icon {
    flex-shrink:    0;
    vertical-align: middle;
}

/* =========================================================
   25. SITE FOOTER
   ========================================================= */

.site-footer {
    background: var(--navy);
    color:      rgba(255,255,255,.75);
}

.footer-top {
    padding: 3.5rem 0 2.5rem;
}

.footer-top__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   2rem;
}

@media (min-width: 600px) {
    .footer-top__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-top__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo a {
    text-decoration: none;
    display:         flex;
    flex-direction:  column;
    gap:             .1rem;
    margin-bottom:   .875rem;
}

.footer-logo__name {
    font-size:   1.4rem;
    font-weight: 700;
    color:       var(--white);
}

.footer-logo__sub {
    font-size:   .8rem;
    color:       rgba(255,255,255,.5);
    font-weight: 400;
}

.footer-col__desc {
    font-size:   .875rem;
    color:       rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom:1.25rem;
}

.footer-contact {
    display:       flex;
    flex-direction:column;
    gap:           .65rem;
}

.footer-contact__item {
    display:     flex;
    align-items: center;
    gap:         .5rem;
    font-size:   .875rem;
}

.footer-contact__item .icon {
    color:       var(--red);
    flex-shrink: 0;
}

.footer-contact__link {
    color:      rgba(255,255,255,.7);
    transition: color .2s;
}

.footer-contact__link:hover {
    color: var(--white);
}

.footer-col__title {
    font-size:     .85rem;
    font-weight:   500;
    color:         var(--white);
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom: 1rem;
}

.footer-links {
    display:       flex;
    flex-direction:column;
    gap:           .5rem;
}

.footer-links__link {
    font-size:   .875rem;
    color:       rgba(255,255,255,.6);
    transition:  color .2s;
    line-height: 1.4;
}

.footer-links__link:hover {
    color: var(--white);
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours__title {
    font-size:   .75rem;
    font-weight: 500;
    color:       rgba(255,255,255,.5);
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom: .5rem;
}

.footer-hours__row {
    font-size:   .8rem;
    color:       rgba(255,255,255,.55);
    margin-bottom:.25rem;
}

.footer-hours__row strong {
    color:       rgba(255,255,255,.8);
    font-weight: 500;
}

.footer-hours__row--accent strong {
    color: #4ade80;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding:    1.25rem 0;
}

.footer-bottom__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             .5rem;
}

.footer-bottom__copy,
.footer-bottom__credit {
    font-size: .8rem;
    color:     rgba(255,255,255,.4);
    margin:    0;
}

.footer-bottom__link {
    color: rgba(255,255,255,.5);
}

.footer-bottom__link:hover {
    color: var(--white);
}

/* =========================================================
   26. UTILITIES
   ========================================================= */

.page-grid {
    max-width: 860px;
    margin:    0 auto;
}

.edit-link {
    margin-top: 1rem;
    font-size:  .8rem;
}

.edit-link a {
    color: var(--gray-text);
}

/* =========================================================
   27. PRINT
   ========================================================= */

@media print {
    .topbar,
    .site-header,
    .mobile-bar,
    .urgency-strip,
    .final-cta,
    .inner-cta,
    .site-footer {
        display: none;
    }

    body {
        padding-top: 0;
        color:       #000;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size:.75rem;
    }
}
/*
 * DakUp Dakdekkersbedrijf — main.css
 * Mobile-first, system fonts, no frameworks.
 * Colors: Navy #07111F | Blue #21468B | Red #DC143C | White #FFFFFF | Light gray #F5F7FA
 */

/* =========================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================= */

:root {
    --navy:      #07111F;
    --blue:      #21468B;
    --red:       #DC143C;
    --red-dark:  #B01030;
    --white:     #FFFFFF;
    --gray:      #F5F7FA;
    --gray-mid:  #E2E6ED;
    --gray-text: #6B7280;
    --text:      #1A1F2E;
    --text-light:#4B5563;

    --font:       system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);

    --container:  1200px;
    --gap:        1.5rem;

    --header-h:   68px;
    --topbar-h:   36px;
}

/* =========================================================
   1. RESET & BASE
   ========================================================= */

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

html {
    font-size:       16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:  var(--font);
    font-size:    1rem;
    line-height:  1.65;
    color:        var(--text);
    background:   var(--white);
    overflow-x:   hidden;
}

/* Offset for sticky header */
body {
    padding-top: calc(var(--topbar-h) + var(--header-h));
}

img,
picture,
video,
canvas,
svg {
    display:   block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color:           var(--blue);
    text-decoration: none;
    transition:      color .2s ease;
}

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

ul,
ol {
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:    500;
    line-height:    1.2;
    color:          var(--navy);
    margin-bottom:  .75rem;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

strong { font-weight: 500; }

/* =========================================================
   2. ACCESSIBILITY
   ========================================================= */

.skip-link {
    position:        absolute;
    top:             -100%;
    left:            1rem;
    background:      var(--red);
    color:           var(--white);
    padding:         .5rem 1rem;
    border-radius:   var(--radius-md);
    font-weight:     500;
    z-index:         9999;
    transition:      top .2s;
}

.skip-link:focus {
    top: 1rem;
}

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

/* =========================================================
   3. LAYOUT UTILITIES
   ========================================================= */

.container {
    width:     100%;
    max-width: var(--container);
    margin:    0 auto;
    padding:   0 1.25rem;
}

.section {
    padding: 4rem 0;
}

.section--light {
    background: var(--gray);
}

.section-header {
    text-align:    center;
    margin-bottom: 2.5rem;
    max-width:     680px;
    margin-left:   auto;
    margin-right:  auto;
}

.section-title {
    color:         var(--navy);
    margin-bottom: .5rem;
}

.section-sub {
    color:       var(--text-light);
    font-size:   1.05rem;
    margin:      0;
    line-height: 1.6;
}

/* =========================================================
   4. BUTTONS
   ========================================================= */

.btn {
    display:          inline-flex;
    align-items:      center;
    gap:              .5rem;
    padding:          .75rem 1.5rem;
    font-size:        .95rem;
    font-weight:      500;
    border-radius:    var(--radius-md);
    border:           2px solid transparent;
    cursor:           pointer;
    transition:       background .2s, border-color .2s, color .2s, transform .1s;
    text-decoration:  none;
    white-space:      nowrap;
    line-height:      1;
}

.btn:active {
    transform: scale(.97);
}

.btn--sm {
    padding:   .5rem 1rem;
    font-size: .875rem;
}

.btn--lg {
    padding:   .9rem 1.75rem;
    font-size: 1rem;
}

.btn--full {
    width:           100%;
    justify-content: center;
}

/* Red (primary) */
.btn--red {
    background: var(--red);
    color:      var(--white);
}
.btn--red:hover {
    background: var(--red-dark);
    color:      var(--white);
}

/* White with red text (urgency strip) */
.btn--white-red {
    background:   var(--white);
    color:        var(--red);
    border-color: var(--white);
}
.btn--white-red:hover {
    background: #ffe8ec;
    color:      var(--red-dark);
}

/* Outline white (hero secondary) */
.btn--outline-white {
    background:   transparent;
    color:        var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
    background:   rgba(255,255,255,.12);
    border-color: var(--white);
    color:        var(--white);
}

/* Outline navy */
.btn--outline-navy {
    background:   transparent;
    color:        var(--navy);
    border-color: var(--navy);
}
.btn--outline-navy:hover {
    background: var(--navy);
    color:      var(--white);
}

/* WhatsApp green */
.btn--whatsapp {
    background: #25D366;
    color:      var(--white);
}
.btn--whatsapp:hover {
    background: #1EBD58;
    color:      var(--white);
}

/* Icons inside buttons */
.btn svg {
    flex-shrink: 0;
}

/* =========================================================
   5. TOP BAR
   ========================================================= */

.topbar {
    position:   fixed;
    top:        0;
    left:       0;
    right:      0;
    z-index:    1000;
    background: var(--navy);
    height:     var(--topbar-h);
    display:    flex;
    align-items:center;
}

.topbar__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             1rem;
}

.topbar__item {
    display:     flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .8rem;
    color:       rgba(255,255,255,.6);
}

.topbar__right {
    display:     flex;
    align-items: center;
    gap:         1.25rem;
}

.topbar__link {
    display:     flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .8rem;
    color:       rgba(255,255,255,.7);
    transition:  color .2s;
}

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

.topbar__badge {
    background:    var(--red);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .15rem .55rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Hide topbar on very small screens */
@media (max-width: 480px) {
    .topbar {
        display: none;
    }
    :root {
        --topbar-h: 0px;
    }
}

/* =========================================================
   6. SITE HEADER / NAV
   ========================================================= */

.site-header {
    position:   fixed;
    top:        var(--topbar-h);
    left:       0;
    right:      0;
    z-index:    999;
    background: var(--white);
    height:     var(--header-h);
    border-bottom: 1px solid var(--gray-mid);
    transition: box-shadow .2s;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    height:          100%;
    gap:             1rem;
}

/* Logo */
.site-header__logo {
    display:         flex;
    align-items:     center;
    text-decoration: none;
    flex-shrink:     0;
}

.site-header__logo img {
    height: 42px;
    width:  auto;
}

.site-header__logo-text {
    font-size:   1.3rem;
    color:       var(--navy);
    font-weight: 700;
    line-height: 1.1;
}

.site-header__logo-text strong {
    color:       var(--red);
    font-weight: 700;
}

.site-header__logo-sub {
    display:     block;
    font-size:   .7rem;
    font-weight: 400;
    color:       var(--gray-text);
    letter-spacing: .02em;
}

/* Primary nav — hidden on mobile */
.site-nav {
    display: none;
    flex:    1;
}

.site-nav__list {
    display:     flex;
    align-items: center;
    gap:         .25rem;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display:      block;
    padding:      .5rem .75rem;
    font-size:    .9rem;
    font-weight:  500;
    color:        var(--navy);
    border-radius:var(--radius-md);
    transition:   background .2s, color .2s;
}

.site-nav__link:hover,
.site-nav__link:focus {
    background: var(--gray);
    color:      var(--red);
}

.current-menu-item > .site-nav__link {
    color: var(--red);
}

/* Desktop CTA — hidden on mobile */
.site-header__cta {
    display:    none;
    flex-shrink:0;
}

/* Hamburger */
.hamburger {
    display:          flex;
    flex-direction:   column;
    justify-content:  center;
    gap:              5px;
    width:            44px;
    height:           44px;
    padding:          10px;
    background:       none;
    border:           none;
    cursor:           pointer;
    border-radius:    var(--radius-md);
    transition:       background .2s;
    flex-shrink:      0;
}

.hamburger:hover {
    background: var(--gray);
}

.hamburger__bar {
    display:          block;
    width:            100%;
    height:           2px;
    background:       var(--navy);
    border-radius:    2px;
    transition:       transform .25s, opacity .25s;
    transform-origin: center;
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.site-nav.is-open {
    display:    block;
    position:   fixed;
    top:        calc(var(--topbar-h) + var(--header-h));
    left:       0;
    right:      0;
    background: var(--white);
    border-bottom: 2px solid var(--gray-mid);
    padding:    1rem 1.25rem;
    z-index:    998;
    box-shadow: var(--shadow-md);
}

.site-nav.is-open .site-nav__list {
    flex-direction: column;
    align-items:    stretch;
    gap:            .25rem;
}

.site-nav.is-open .site-nav__link {
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
}

/* Desktop layout */
@media (min-width: 1024px) {
    .site-nav {
        display: flex;
    }

    .site-nav.is-open {
        position:   static;
        border:     none;
        padding:    0;
        box-shadow: none;
    }

    .site-header__cta {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

/* =========================================================
   7. STICKY MOBILE BAR
   ========================================================= */

.mobile-bar {
    display:         flex;
    position:        fixed;
    bottom:          0;
    left:            0;
    right:           0;
    z-index:         997;
    background:      var(--navy);
    border-top:      2px solid rgba(255,255,255,.1);
    height:          64px;
    transition:      transform .3s ease;
}

.mobile-bar.is-hidden {
    transform: translateY(100%);
}

.mobile-bar__btn {
    flex:            1;
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             .5rem;
    font-size:       .95rem;
    font-weight:     500;
    color:           var(--white);
    text-decoration: none;
    transition:      background .2s;
}

.mobile-bar__btn--call {
    background: var(--red);
}

.mobile-bar__btn--call:hover {
    background: var(--red-dark);
    color:      var(--white);
}

.mobile-bar__btn--whatsapp {
    background: #25D366;
}

.mobile-bar__btn--whatsapp:hover {
    background: #1EBD58;
    color:      var(--white);
}

/* Add safe area padding for iOS home indicator */
.mobile-bar {
    padding-bottom: env(safe-area-inset-bottom);
    height:         calc(64px + env(safe-area-inset-bottom));
}

/* Hide mobile bar on desktop, add bottom margin on mobile */
@media (max-width: 1023px) {
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 1024px) {
    .mobile-bar {
        display: none;
    }
}

/* =========================================================
   8. HERO SECTION
   ========================================================= */

.hero {
    position:   relative;
    min-height: min(90vh, 680px);
    display:    flex;
    align-items:center;
    overflow:   hidden;
    color:      var(--white);
}

.hero__bg {
    position: absolute;
    inset:    0;
    z-index:  0;
}

.hero__bg::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        105deg,
        rgba(7,17,31,.88) 0%,
        rgba(7,17,31,.7) 55%,
        rgba(7,17,31,.4) 100%
    );
}

.hero__bg-img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    object-position: center;
}

.hero__inner {
    position:   relative;
    z-index:    1;
    padding-top:    3rem;
    padding-bottom: 3rem;
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    display:        flex;
    align-items:    center;
    gap:            .5rem;
    font-size:      .8rem;
    font-weight:    500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color:          var(--red);
    margin-bottom:  1rem;
}

.hero__eyebrow-dot {
    width:         8px;
    height:        8px;
    background:    var(--red);
    border-radius: 50%;
    flex-shrink:   0;
    animation:     pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

.hero__title {
    font-size:     clamp(1.8rem, 5vw, 3rem);
    font-weight:   500;
    line-height:   1.15;
    color:         var(--white);
    margin-bottom: 1rem;
}

.hero__title-accent {
    display:    block;
    color:      var(--red);
    font-size:  .72em;
    margin-top: .25rem;
}

.hero__sub {
    font-size:     1.05rem;
    color:         rgba(255,255,255,.75);
    margin-bottom: 1.75rem;
    line-height:   1.7;
    max-width:     560px;
}

.hero__sub strong {
    color:       rgba(255,255,255,.95);
    font-weight: 500;
}

.hero__actions {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
    margin-bottom: 1.75rem;
}

.hero__trust {
    display:    flex;
    flex-wrap:  wrap;
    gap:        1rem 1.75rem;
    padding-top:1.25rem;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero__trust-item {
    display:     flex;
    align-items: center;
    gap:         .4rem;
    font-size:   .875rem;
    color:       rgba(255,255,255,.7);
}

.hero__trust-icon {
    color:       #4ade80;
    flex-shrink: 0;
}

/* =========================================================
   9. TRUST BAR
   ========================================================= */

.trust-bar {
    background:    var(--navy);
    color:         var(--white);
    padding:       2rem 0;
}

.trust-bar__grid {
    display:         flex;
    align-items:     center;
    justify-content: center;
    flex-wrap:       wrap;
    gap:             1.5rem;
}

.trust-bar__item {
    display:     flex;
    flex-direction: column;
    align-items: center;
    text-align:  center;
    min-width:   120px;
}

.trust-bar__number {
    font-size:   2rem;
    font-weight: 700;
    color:       var(--white);
    line-height: 1;
}

.trust-bar__plus {
    font-size:   1.4rem;
    font-weight: 400;
    color:       var(--red);
}

.trust-bar__label {
    font-size:  .8rem;
    color:      rgba(255,255,255,.6);
    margin-top: .35rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.trust-bar__divider {
    width:      1px;
    height:     40px;
    background: rgba(255,255,255,.15);
}

@media (max-width: 600px) {
    .trust-bar__divider {
        display: none;
    }
    .trust-bar__grid {
        gap: 1.25rem 2rem;
    }
}

/* =========================================================
   10. SERVICE CARDS
   ========================================================= */

.services__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
}

@media (min-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position:      relative;
    background:    var(--white);
    border:        1.5px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    display:       flex;
    flex-direction:column;
    transition:    border-color .2s, box-shadow .2s, transform .2s;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow:   var(--shadow-md);
    transform:    translateY(-2px);
}

.service-card--featured {
    border-color: var(--blue);
    border-width: 2px;
}

.service-card__badge {
    position:      absolute;
    top:           -12px;
    left:          1rem;
    background:    var(--blue);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .2rem .65rem;
    border-radius: var(--radius-sm);
    text-transform:uppercase;
    letter-spacing:.04em;
}

.service-card__icon {
    color:         var(--blue);
    margin-bottom: 1rem;
    width:         52px;
    height:        52px;
    background:    #EEF3FF;
    border-radius: var(--radius-md);
    display:       flex;
    align-items:   center;
    justify-content: center;
    flex-shrink:   0;
}

.service-card__title {
    font-size:     1.1rem;
    margin-bottom: .5rem;
    color:         var(--navy);
}

.service-card__desc {
    font-size:     .9rem;
    color:         var(--text-light);
    line-height:   1.6;
    flex:          1;
    margin-bottom: 1rem;
}

.service-card__link {
    display:     inline-flex;
    align-items: center;
    gap:         .35rem;
    font-size:   .875rem;
    font-weight: 500;
    color:       var(--blue);
    margin-top:  auto;
    transition:  gap .2s, color .2s;
}

.service-card__link:hover {
    gap:   .6rem;
    color: var(--red);
}

/* =========================================================
   11. URGENCY STRIP
   ========================================================= */

.urgency-strip {
    background: var(--red);
    color:      var(--white);
    padding:    1.5rem 0;
}

.urgency-strip__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             1rem;
}

.urgency-strip__text {
    display:     flex;
    align-items: center;
    gap:         1rem;
    flex-wrap:   wrap;
}

.urgency-strip__badge {
    background:    rgba(0,0,0,.25);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   700;
    padding:       .2rem .6rem;
    border-radius: var(--radius-sm);
    letter-spacing:.08em;
    flex-shrink:   0;
}

.urgency-strip__msg {
    font-size:   1.1rem;
    font-weight: 500;
    color:       var(--white);
    margin:      0;
}

@media (max-width: 600px) {
    .urgency-strip__inner {
        flex-direction: column;
        text-align:     center;
    }
}

/* =========================================================
   12. WORK GALLERY
   ========================================================= */

.gallery__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1rem;
}

@media (min-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery__item {
    position:      relative;
    overflow:      hidden;
    border-radius: var(--radius-lg);
    margin:        0;
    background:    var(--gray);
}

.gallery__img {
    width:      100%;
    height:     260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.04);
}

.gallery__caption {
    position:   absolute;
    bottom:     0;
    left:       0;
    right:      0;
    background: linear-gradient(transparent, rgba(7,17,31,.8));
    color:      var(--white);
    font-size:  .875rem;
    font-weight:500;
    padding:    1.5rem .875rem .75rem;
}

/* =========================================================
   13. WHY US
   ========================================================= */

.why-us__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
}

@media (min-width: 600px) {
    .why-us__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .why-us__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    transition:    box-shadow .2s, transform .2s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform:  translateY(-2px);
}

.why-card__icon {
    color:         var(--red);
    margin-bottom: 1rem;
    width:         48px;
    height:        48px;
    background:    #FEEAEE;
    border-radius: var(--radius-md);
    display:       flex;
    align-items:   center;
    justify-content: center;
}

.why-card__title {
    font-size:     1rem;
    margin-bottom: .5rem;
    color:         var(--navy);
}

.why-card__desc {
    font-size:   .9rem;
    color:       var(--text-light);
    line-height: 1.6;
    margin:      0;
}

/* =========================================================
   14. REVIEWS
   ========================================================= */

.reviews__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.25rem;
    margin-bottom:         2rem;
}

@media (min-width: 700px) {
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    padding:       1.5rem;
    display:       flex;
    flex-direction:column;
    gap:           .75rem;
}

.stars {
    display: flex;
    gap:     2px;
}

.stars__star {
    font-size: 1.2rem;
    color:     var(--gray-mid);
}

.stars__star--filled {
    color: #F59E0B;
}

.review-card__quote {
    font-size:   .95rem;
    color:       var(--text);
    line-height: 1.65;
    flex:        1;
    font-style:  normal;
}

.review-card__footer {
    display:     flex;
    flex-direction:column;
    gap:         .15rem;
    margin-top:  auto;
}

.review-card__name {
    font-size:   .875rem;
    font-weight: 500;
    color:       var(--navy);
}

.review-card__location {
    font-size: .8rem;
    color:     var(--gray-text);
}

.reviews__cta {
    text-align: center;
}

.reviews__google-label {
    color:       var(--gray-text);
    font-size:   .875rem;
    margin-bottom:.75rem;
}

/* =========================================================
   15. FAQ ACCORDION
   ========================================================= */

.faq__container {
    max-width: 800px;
}

.faq__list {
    border-top: 1px solid var(--gray-mid);
}

.faq__item {
    border-bottom: 1px solid var(--gray-mid);
}

.faq__question {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    width:           100%;
    gap:             1rem;
    padding:         1.1rem 0;
    background:      none;
    border:          none;
    cursor:          pointer;
    text-align:      left;
    font-size:       1rem;
    font-weight:     500;
    color:           var(--navy);
    transition:      color .2s;
}

.faq__question:hover {
    color: var(--red);
}

.faq__question[aria-expanded="true"] {
    color: var(--red);
}

.faq__icon {
    flex-shrink: 0;
    transition:  transform .25s ease;
    color:       currentColor;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding-bottom: 1.1rem;
    font-size:      .95rem;
    color:          var(--text-light);
    line-height:    1.7;
}

.faq__answer[hidden] {
    display: none;
}

.faq__answer a {
    color:       var(--blue);
    font-weight: 500;
}

/* =========================================================
   16. SERVICE AREAS
   ========================================================= */

.areas__grid {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   .75rem;
    margin-bottom:         1.5rem;
}

@media (min-width: 600px) {
    .areas__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.area-link {
    display:         flex;
    align-items:     center;
    gap:             .4rem;
    padding:         .75rem 1rem;
    background:      var(--white);
    border:          1px solid var(--gray-mid);
    border-radius:   var(--radius-md);
    font-size:       .9rem;
    font-weight:     500;
    color:           var(--navy);
    transition:      border-color .2s, color .2s, background .2s;
}

.area-link svg {
    color:       var(--red);
    flex-shrink: 0;
}

.area-link:hover {
    border-color: var(--red);
    color:        var(--red);
    background:   #FFF5F7;
}

.areas__note {
    font-size:  .9rem;
    color:      var(--gray-text);
    text-align: center;
}

.areas__note a {
    font-weight: 500;
    color:       var(--blue);
}

/* =========================================================
   17. FINAL CTA
   ========================================================= */

.final-cta {
    background: var(--navy);
    color:      var(--white);
}

.final-cta__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   2.5rem;
}

@media (min-width: 900px) {
    .final-cta__grid {
        grid-template-columns: 1fr 1fr;
        align-items:           center;
    }
}

.final-cta__title {
    font-size:     clamp(1.3rem, 3vw, 1.8rem);
    color:         var(--white);
    margin-bottom: .75rem;
}

.final-cta__sub {
    color:         rgba(255,255,255,.7);
    margin-bottom: 1.5rem;
    font-size:     1rem;
    line-height:   1.65;
}

.final-cta__buttons {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
    margin-bottom: 1.25rem;
}

.final-cta__meta {
    font-size:   .875rem;
    color:       rgba(255,255,255,.5);
}

.final-cta__meta p {
    display:     flex;
    align-items: center;
    gap:         .4rem;
    margin:      0;
}

.final-cta__meta a {
    color: rgba(255,255,255,.7);
}

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

/* Contact form */
.contact-form-wrap {
    background:    var(--white);
    border-radius: var(--radius-lg);
    padding:       2rem;
}

.contact-form-wrap__title {
    color:         var(--navy);
    font-size:     1.2rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display:       block;
    font-size:     .875rem;
    font-weight:   500;
    color:         var(--navy);
    margin-bottom: .35rem;
}

.form-label span {
    color: var(--red);
}

.form-input {
    width:         100%;
    padding:       .65rem .875rem;
    font-size:     1rem;
    color:         var(--text);
    background:    var(--white);
    border:        1.5px solid var(--gray-mid);
    border-radius: var(--radius-md);
    outline:       none;
    transition:    border-color .2s, box-shadow .2s;
    appearance:    none;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow:   0 0 0 3px rgba(33,70,139,.15);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-textarea {
    resize:      vertical;
    min-height:  100px;
}

.form-privacy {
    font-size:   .8rem;
    color:       var(--gray-text);
    margin-top:  .75rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.form-privacy a {
    color: var(--blue);
}

/* =========================================================
   18. INNER CTA STRIP (page / single templates)
   ========================================================= */

.inner-cta {
    background: var(--gray);
    padding:    2.5rem 0;
    border-top: 1px solid var(--gray-mid);
}

.inner-cta__inner {
    display:         flex;
    align-items:     center;
    flex-wrap:       wrap;
    gap:             1rem;
    justify-content: space-between;
}

.inner-cta__text {
    font-size:   1rem;
    font-weight: 500;
    color:       var(--navy);
    margin:      0;
}

.inner-cta__buttons {
    display:   flex;
    flex-wrap: wrap;
    gap:       .75rem;
}

/* =========================================================
   19. PAGE TEMPLATE
   ========================================================= */

.page-wrap {
    min-height: 50vh;
}

.page-header {
    padding-bottom: 1.5rem;
    margin-bottom:  2rem;
    border-bottom:  1px solid var(--gray-mid);
}

.page-header__title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color:     var(--navy);
    margin:    0;
}

.entry-content h2 { margin-top: 1.75rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    list-style:   disc;
    margin-bottom:1rem;
}
.entry-content li {
    margin-bottom: .35rem;
}
.entry-content blockquote {
    border-left: 4px solid var(--blue);
    padding:     .75rem 1.25rem;
    margin:      1.5rem 0;
    background:  var(--gray);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style:  italic;
    color:       var(--text-light);
}
.entry-content table {
    width:           100%;
    border-collapse: collapse;
    margin-bottom:   1.5rem;
    font-size:       .9rem;
}
.entry-content th,
.entry-content td {
    padding:     .6rem .875rem;
    text-align:  left;
    border:      1px solid var(--gray-mid);
}
.entry-content th {
    background:  var(--navy);
    color:       var(--white);
    font-weight: 500;
}
.entry-content tr:nth-child(even) td {
    background: var(--gray);
}

/* =========================================================
   20. SINGLE POST TEMPLATE
   ========================================================= */

.single-article {
    max-width: 760px;
    margin:    0 auto;
}

.single-header {
    margin-bottom: 2rem;
}

.breadcrumb__list {
    display:   flex;
    flex-wrap: wrap;
    gap:       .35rem;
    align-items:center;
    font-size: .8rem;
    color:     var(--gray-text);
    margin-bottom: 1rem;
}

.breadcrumb__link {
    color: var(--blue);
}

.breadcrumb__link:hover {
    color: var(--red);
}

.single-header__title {
    font-size:     clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: .75rem;
}

.single-header__meta {
    display:     flex;
    align-items: center;
    gap:         1rem;
    font-size:   .875rem;
    color:       var(--gray-text);
    margin-bottom: 1.25rem;
}

.single-header__cat {
    background:    var(--blue);
    color:         var(--white);
    padding:       .15rem .55rem;
    border-radius: var(--radius-sm);
    font-size:     .75rem;
    font-weight:   500;
}

.single-header__thumb {
    border-radius: var(--radius-lg);
    overflow:      hidden;
    margin-top:    1rem;
}

.single-header__thumb img {
    width:      100%;
    height:     auto;
    display:    block;
}

.single-content {
    margin-bottom: 2rem;
}

.single-footer {
    padding-top: 1.5rem;
    border-top:  1px solid var(--gray-mid);
}

.single-footer__tags {
    display:   flex;
    flex-wrap: wrap;
    gap:       .5rem;
    margin-bottom: 1.25rem;
}

.tag-link {
    background:    var(--gray);
    color:         var(--navy);
    font-size:     .8rem;
    padding:       .25rem .65rem;
    border-radius: var(--radius-sm);
    transition:    background .2s, color .2s;
}

.tag-link:hover {
    background: var(--navy);
    color:      var(--white);
}

.post-nav {
    display:         flex;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             .75rem;
    font-size:       .875rem;
}

.post-nav__link {
    font-weight: 500;
    color:       var(--blue);
}

.post-nav__link:hover {
    color: var(--red);
}

/* =========================================================
   21. ARCHIVE / BLOG
   ========================================================= */

.archive-header {
    margin-bottom: 2rem;
    padding-bottom:1.5rem;
    border-bottom: 1px solid var(--gray-mid);
}

.archive-header__title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color:     var(--navy);
}

.archive-header__desc {
    font-size: 1rem;
    color:     var(--text-light);
    margin:    0;
}

.post-grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   1.5rem;
    margin-bottom:         2rem;
}

@media (min-width: 640px) {
    .post-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background:    var(--white);
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-lg);
    overflow:      hidden;
    display:       flex;
    flex-direction:column;
    transition:    box-shadow .2s, transform .2s;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform:  translateY(-2px);
}

.post-card__thumb-link {
    display: block;
}

.post-card__thumb {
    width:      100%;
    height:     200px;
    object-fit: cover;
    display:    block;
}

.post-card__body {
    padding:        1.25rem;
    display:        flex;
    flex-direction: column;
    flex:           1;
}

.post-card__cat {
    display:       inline-block;
    background:    var(--blue);
    color:         var(--white);
    font-size:     .7rem;
    font-weight:   500;
    padding:       .15rem .5rem;
    border-radius: var(--radius-sm);
    margin-bottom: .5rem;
}

.post-card__title {
    font-size:     1rem;
    margin-bottom: .5rem;
    flex:          1;
}

.post-card__title-link {
    color:       var(--navy);
    font-weight: 500;
}

.post-card__title-link:hover {
    color: var(--red);
}

.post-card__excerpt {
    font-size:   .875rem;
    color:       var(--text-light);
    margin-bottom: .875rem;
    line-height: 1.55;
}

.post-card__footer {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    font-size:       .8rem;
    margin-top:      auto;
}

.post-card__date {
    color: var(--gray-text);
}

.post-card__read-more {
    font-weight: 500;
    color:       var(--blue);
}

.post-card__read-more:hover {
    color: var(--red);
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination .page-numbers {
    display:       inline-flex;
    align-items:   center;
    justify-content:center;
    width:         40px;
    height:        40px;
    border:        1px solid var(--gray-mid);
    border-radius: var(--radius-md);
    font-size:     .875rem;
    color:         var(--navy);
    margin:        0 .2rem;
    transition:    background .2s, color .2s, border-color .2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background:   var(--navy);
    color:        var(--white);
    border-color: var(--navy);
}

/* =========================================================
   22. 404 PAGE
   ========================================================= */

.error-404__inner {
    text-align:  center;
    padding:     4rem 1.25rem;
    max-width:   600px;
}

.error-404__code {
    font-size:   6rem;
    font-weight: 700;
    color:       var(--gray-mid);
    line-height: 1;
    margin-bottom: .5rem;
}

.error-404__title {
    font-size:     2rem;
    margin-bottom: 1rem;
}

.error-404__desc {
    color:         var(--text-light);
    margin-bottom: 1.75rem;
}

.error-404__actions {
    display:         flex;
    justify-content: center;
    flex-wrap:       wrap;
    gap:             .75rem;
    margin-bottom:   2rem;
}

.error-404__links-title {
    font-weight:   500;
    color:         var(--navy);
    margin-bottom: .75rem;
}

.error-404__link-list {
    display:   flex;
    flex-wrap: wrap;
    gap:       .5rem;
    justify-content: center;
}

.error-404__link-list li a {
    color:         var(--blue);
    font-size:     .9rem;
    font-weight:   500;
}

.error-404__link-list li a:hover {
    color: var(--red);
}

/* =========================================================
   23. NO RESULTS
   ========================================================= */

.no-results {
    text-align:  center;
    padding:     3rem 0;
}

.no-results p {
    color:         var(--gray-text);
    margin-bottom: 1.25rem;
}

/* =========================================================
   24. ICON UTILITY
   ========================================================= */

.icon {
    flex-shrink:    0;
    vertical-align: middle;
}

/* =========================================================
   25. SITE FOOTER
   ========================================================= */

.site-footer {
    background: var(--navy);
    color:      rgba(255,255,255,.75);
}

.footer-top {
    padding: 3.5rem 0 2.5rem;
}

.footer-top__grid {
    display:               grid;
    grid-template-columns: 1fr;
    gap:                   2rem;
}

@media (min-width: 600px) {
    .footer-top__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-top__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo a {
    text-decoration: none;
    display:         flex;
    flex-direction:  column;
    gap:             .1rem;
    margin-bottom:   .875rem;
}

.footer-logo__name {
    font-size:   1.4rem;
    font-weight: 700;
    color:       var(--white);
}

.footer-logo__sub {
    font-size:   .8rem;
    color:       rgba(255,255,255,.5);
    font-weight: 400;
}

.footer-col__desc {
    font-size:   .875rem;
    color:       rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom:1.25rem;
}

.footer-contact {
    display:       flex;
    flex-direction:column;
    gap:           .65rem;
}

.footer-contact__item {
    display:     flex;
    align-items: center;
    gap:         .5rem;
    font-size:   .875rem;
}

.footer-contact__item .icon {
    color:       var(--red);
    flex-shrink: 0;
}

.footer-contact__link {
    color:      rgba(255,255,255,.7);
    transition: color .2s;
}

.footer-contact__link:hover {
    color: var(--white);
}

.footer-col__title {
    font-size:     .85rem;
    font-weight:   500;
    color:         var(--white);
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom: 1rem;
}

.footer-links {
    display:       flex;
    flex-direction:column;
    gap:           .5rem;
}

.footer-links__link {
    font-size:   .875rem;
    color:       rgba(255,255,255,.6);
    transition:  color .2s;
    line-height: 1.4;
}

.footer-links__link:hover {
    color: var(--white);
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours__title {
    font-size:   .75rem;
    font-weight: 500;
    color:       rgba(255,255,255,.5);
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom: .5rem;
}

.footer-hours__row {
    font-size:   .8rem;
    color:       rgba(255,255,255,.55);
    margin-bottom:.25rem;
}

.footer-hours__row strong {
    color:       rgba(255,255,255,.8);
    font-weight: 500;
}

.footer-hours__row--accent strong {
    color: #4ade80;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding:    1.25rem 0;
}

.footer-bottom__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    flex-wrap:       wrap;
    gap:             .5rem;
}

.footer-bottom__copy,
.footer-bottom__credit {
    font-size: .8rem;
    color:     rgba(255,255,255,.4);
    margin:    0;
}

.footer-bottom__link {
    color: rgba(255,255,255,.5);
}

.footer-bottom__link:hover {
    color: var(--white);
}

/* =========================================================
   26. UTILITIES
   ========================================================= */

.page-grid {
    max-width: 860px;
    margin:    0 auto;
}

.edit-link {
    margin-top: 1rem;
    font-size:  .8rem;
}

.edit-link a {
    color: var(--gray-text);
}

/* =========================================================
   27. LANDING PAGE UTILITIES
   Used by: page-daklekkage-eindhoven.php (and future lp- templates)
   All lp- prefixed classes are additive — no existing rules overridden.
   ========================================================= */

/* Constrain prose text width on full-width templates */
.lp-prose {
    max-width: 760px;
}

/* Icon list — shared base */
.lp-icon-list {
    display:        flex;
    flex-direction: column;
    gap:            .7rem;
    margin:         .85rem 0 1.25rem;
    padding:        0;
    list-style:     none;
}

.lp-icon-list__item {
    display:     flex;
    align-items: flex-start;
    gap:         .65rem;
    font-size:   .95rem;
    color:       var(--text-light);
    line-height: 1.55;
}

.lp-icon-list__icon {
    flex-shrink: 0;
    margin-top:  .25rem;
}

.lp-icon-list--red .lp-icon-list__icon  { color: var(--red); }
.lp-icon-list--blue .lp-icon-list__icon { color: var(--blue); }

/* Numbered steps */
.lp-steps {
    display:        flex;
    flex-direction: column;
    gap:            1.1rem;
    margin:         1rem 0 1.5rem;
    padding:        0;
    list-style:     none;
}

.lp-step {
    display:     flex;
    gap:         1rem;
    align-items: flex-start;
}

.lp-step__num {
    width:            34px;
    height:           34px;
    border-radius:    50%;
    background:       var(--blue);
    color:            var(--white);
    display:          flex;
    align-items:      center;
    justify-content:  center;
    font-size:        .82rem;
    font-weight:      500;
    flex-shrink:      0;
    line-height:      1;
}

.lp-step__body {
    padding-top: .2rem;
    flex:        1;
}

.lp-step__title {
    font-size:     .975rem;
    font-weight:   500;
    color:         var(--navy);
    margin-bottom: .2rem;
}

.lp-step__desc {
    font-size:   .875rem;
    color:       var(--text-light);
    margin:      0;
    line-height: 1.6;
}

.lp-step__desc a {
    color:       var(--blue);
    font-weight: 500;
}

/* Price table */
.lp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin:     1rem 0;
}

.lp-price-table {
    width:           100%;
    border-collapse: collapse;
    font-size:       .9rem;
    min-width:       360px;
}

.lp-price-table th,
.lp-price-table td {
    text-align:  left;
    padding:     .7rem .9rem;
    border:      1px solid var(--gray-mid);
    vertical-align: middle;
}

.lp-price-table thead th {
    background:  var(--navy);
    color:       var(--white);
    font-weight: 500;
}

.lp-price-table tbody tr:nth-child(even) td {
    background: var(--gray);
}

.lp-table-note {
    font-size:   .8rem;
    color:       var(--gray-text);
    margin-top:  .5rem;
    line-height: 1.55;
}

/* Gratis inspectie CTA — override inner-cta background to white on light sections */
.lp-inspectie-cta {
    border-radius: var(--radius-lg);
    border:        1.5px solid #bbf7d0;
    background:    #f0fdf4;
    border-left:   4px solid #16a34a;
    margin-top:    1.75rem;
}

.lp-inspectie-cta .inner-cta__text {
    color: #15803d;
}

/* CTA button pair used inside urgency-strip overrides */
.lp-cta-pair {
    display:   flex;
    flex-wrap: wrap;
    gap:       .65rem;
    flex-shrink: 0;
}

/* Breadcrumb nav */
.breadcrumb {
    background:    var(--gray);
    border-bottom: 1px solid var(--gray-mid);
    padding:       .65rem 0;
    font-size:     .8rem;
    color:         var(--gray-text);
}

.breadcrumb__list {
    display:   flex;
    flex-wrap: wrap;
    gap:       .3rem .5rem;
    align-items: center;
}

.breadcrumb__link {
    color:      var(--blue);
    font-weight:500;
}

.breadcrumb__link:hover {
    color: var(--red);
}

.breadcrumb__sep {
    color:   var(--gray-mid);
    opacity: .6;
}

.breadcrumb__item--current {
    color: var(--gray-text);
}

@media (max-width: 600px) {
    .lp-cta-pair {
        width: 100%;
    }
    .lp-cta-pair .btn {
        flex: 1;
        justify-content: center;
    }
}

/* =========================================================
   28. PRINT
   ========================================================= */

@media print {
    .topbar,
    .site-header,
    .mobile-bar,
    .urgency-strip,
    .final-cta,
    .inner-cta,
    .site-footer {
        display: none;
    }

    body {
        padding-top: 0;
        color:       #000;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size:.75rem;
    }
}
/* HERO BACKGROUND */
.hero {
  position: relative;
  background-image: linear-gradient(90deg, rgba(7,17,31,.85), rgba(7,17,31,.55)),
                    url('/wp-content/themes/dakup-theme/assets/images/herodesktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* MOBILE HERO */
@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(90deg, rgba(7,17,31,.85), rgba(7,17,31,.65)),
                      url('/wp-content/themes/dakup-theme/assets/images/heromobile.jpg');
  }
}
@media only screen and (max-width: 768px) {
  body .hero {
    background-image:
      linear-gradient(90deg, rgba(7,17,31,.88), rgba(7,17,31,.68)),
      url('/wp-content/themes/dakup-theme/assets/images/heromobile.jpg') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}