:root {
  --ink: #14212b;
  --ink-soft: #334653;
  --slate: #65747f;
  --roof: #b7332f;
  --roof-dark: #7f2422;
  --copper: #d38b3e;
  --paper: #f5f1ea;
  --sand: #eadfce;
  --line: rgba(20, 33, 43, .12);
  --white: #fff;
  --success: #1f6b4f;
  --radius: 1rem;
  --shadow-sm: 0 14px 35px rgba(20, 33, 43, .12);
  --shadow: 0 24px 70px rgba(20, 33, 43, .18);
  --container: 1180px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--roof-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--roof); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(211, 139, 62, .28); }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.row { --gutter-x: 1.5rem; --gutter-y: 0; display: flex; flex-wrap: wrap; margin-top: calc(-1 * var(--gutter-y)); margin-right: calc(-.5 * var(--gutter-x)); margin-left: calc(-.5 * var(--gutter-x)); }
.row > * { flex-shrink: 0; width: 100%; max-width: 100%; padding-right: calc(.5 * var(--gutter-x)); padding-left: calc(.5 * var(--gutter-x)); margin-top: var(--gutter-y); min-width: 0; }
.g-0 { --gutter-x: 0; --gutter-y: 0; }
.g-3 { --gutter-x: 1rem; --gutter-y: 1rem; }
.g-4 { --gutter-x: 1.5rem; --gutter-y: 1.5rem; }
.g-5 { --gutter-x: 3rem; --gutter-y: 3rem; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }

.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; padding: .8rem 1rem; background: var(--ink); color: #fff; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.topbar { background: var(--ink); color: rgba(255,255,255,.92); font-size: .88rem; }
.topbar a { color: #fff; text-decoration: none; }
.topbar .bi { color: var(--copper); }

.navbar { position: relative; z-index: 1000; background: #fff; transition: box-shadow .25s ease, transform .25s ease; border-bottom: 1px solid transparent; }
.navbar.sticky-top { position: sticky; top: 0; }
.navbar.scrolled { box-shadow: 0 10px 32px rgba(20,33,43,.12); border-bottom-color: var(--line); }
.navbar > .container { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.navbar-brand img { width: 225px; max-width: 55vw; }
.navbar-toggler { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: .75rem; align-items: center; justify-content: center; }
.navbar-toggler-icon, .navbar-toggler-icon::before, .navbar-toggler-icon::after { width: 22px; height: 2px; background: var(--ink); display: block; position: relative; transition: transform .25s ease, opacity .2s ease; }
.navbar-toggler-icon::before, .navbar-toggler-icon::after { content: ""; position: absolute; left: 0; }
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background: transparent; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after { transform: translateY(-7px) rotate(-45deg); }
.navbar-collapse { display: flex; align-items: center; margin-left: auto; }
.navbar-nav { display: flex; align-items: center; gap: .15rem; padding: 0; margin: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: .35rem; padding: .72rem .72rem; font-size: .96rem; font-weight: 680; color: var(--ink) !important; text-decoration: none; border-radius: .65rem; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--roof) !important; background: rgba(183,51,47,.06); }
.dropdown-toggle::after { content: ""; width: .45rem; height: .45rem; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: .12rem; transition: transform .2s ease; }
.dropdown.is-open > .dropdown-toggle::after { transform: rotate(225deg) translate(-1px,-1px); }
.dropdown-menu { position: absolute; top: calc(100% + .55rem); left: 0; min-width: 270px; margin: 0; padding: .65rem; list-style: none; border: 1px solid var(--line); border-radius: .9rem; background: #fff; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.dropdown-menu::before { content: ""; position: absolute; top: -.7rem; left: 0; right: 0; height: .8rem; }
.dropdown.is-open > .dropdown-menu, .dropdown:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) and (min-width: 992px) { .dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: none; } }
.dropdown-item { display: block; padding: .58rem .7rem; border-radius: .55rem; font-weight: 620; color: var(--ink); text-decoration: none; }
.dropdown-item:hover { background: var(--paper); color: var(--roof-dark); }
.dropdown-divider { border: 0; border-top: 1px solid var(--line); margin: .45rem .25rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-height: 46px; border-radius: .72rem; font-weight: 750; padding: .72rem 1.1rem; border: 2px solid transparent; text-decoration: none; line-height: 1.2; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 52px; padding: .88rem 1.25rem; font-size: 1.04rem; }
.btn-primary { background: var(--roof); border-color: var(--roof); color: #fff; box-shadow: 0 10px 24px rgba(183,51,47,.2); }
.btn-primary:hover { background: var(--roof-dark); border-color: var(--roof-dark); color: #fff; }
.btn-outline-primary { color: var(--roof-dark); border-color: var(--roof); background: transparent; }
.btn-outline-primary:hover { background: var(--roof); color: #fff; }
.btn-outline-secondary { color: var(--ink); border-color: rgba(20,33,43,.28); background: #fff; }
.btn-outline-secondary:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--paper); color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 800; color: var(--roof); }
.eyebrow::before { content: ""; width: 2.1rem; height: 2px; background: var(--copper); flex: 0 0 auto; }
.display-title { margin: 0; font-size: clamp(2.4rem, 4.25vw, 4.15rem); line-height: 1.02; letter-spacing: -.045em; font-weight: 700; max-width: 14ch; overflow-wrap: break-word; }
.section-title { margin: 0; font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.1; letter-spacing: -.035em; font-weight: 700; overflow-wrap: break-word; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.18; }
h1, h2, h3, p { overflow-wrap: break-word; }
.lead { color: var(--ink-soft); font-size: 1.12rem; }
.text-soft { color: var(--slate); }

.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #fff 0%, #fff 58%, var(--paper) 58%, var(--paper) 100%); }
.hero::before { content: ""; position: absolute; inset: auto -12vw -35vh auto; width: 55vw; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(211,139,62,.2), transparent 65%); pointer-events: none; }
.home-hero .hero-copy { position: relative; z-index: 2; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual > img, .image-frame img { width: 100%; object-fit: cover; }
.hero-visual > img { border-radius: 1.2rem; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.hero-badge { position: absolute; left: -1.15rem; bottom: 1.2rem; z-index: 6; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.72); border-radius: .9rem; box-shadow: var(--shadow-sm); padding: .9rem 1rem; max-width: 260px; backdrop-filter: blur(10px); }
.hero-badge strong { font-size: 1.05rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin-top: 1.15rem; color: var(--ink-soft); font-size: .9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: .4rem; }

.hero-slider { position: relative; border-radius: 1.2rem; overflow: hidden; box-shadow: var(--shadow); background: var(--ink); aspect-ratio: 4/3; isolation: isolate; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide picture, .hero-slide img { width: 100%; height: 100%; }
.hero-slide img { object-fit: cover; transform: scale(1.035); transition: transform 6s ease; }
.hero-slide.is-active img { transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(11,20,27,.72)); }
.slide-caption { position: absolute; left: 1.25rem; right: 7.5rem; bottom: 1.15rem; z-index: 3; color: #fff; }
.slide-caption strong { display: block; font-size: 1.1rem; }
.slide-caption span { font-size: .9rem; color: rgba(255,255,255,.82); }
.slider-controls { position: absolute; right: 1rem; bottom: 1rem; z-index: 5; display: flex; gap: .45rem; }
.slider-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(20,33,43,.6); backdrop-filter: blur(8px); transition: background .18s ease, transform .18s ease; }
.slider-button:hover { background: var(--roof); transform: translateY(-1px); }
.slider-dots { position: absolute; left: 1.2rem; top: 1.2rem; z-index: 5; display: flex; gap: .45rem; }
.slider-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.55); transition: width .25s ease, background .25s ease; }
.slider-dot.is-active { width: 28px; background: #fff; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-item { display: flex; align-items: center; gap: .75rem; font-weight: 690; line-height: 1.35; }
.icon-circle { width: 2.65rem; height: 2.65rem; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--roof); flex: 0 0 auto; }

.section { padding: clamp(4.2rem, 8vw, 7rem) 0; }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink .lead, .section-ink .text-soft { color: rgba(255,255,255,.72) !important; }

.card-elevated { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 1px 0 rgba(20,33,43,.04); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; overflow: hidden; height: 100%; }
.card-elevated:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: transparent; }
.service-card .service-icon { width: 3.5rem; height: 3.5rem; display: grid; place-items: center; background: rgba(183,51,47,.09); color: var(--roof); border-radius: .85rem; font-size: 1.4rem; }
.service-card h3 { margin-top: 0; font-size: 1.26rem; font-weight: 700; }
.stretched-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

.image-frame { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.image-frame img { aspect-ratio: 4/3; }
.image-note { position: absolute; right: .8rem; bottom: .8rem; background: rgba(20,33,43,.84); color: #fff; padding: .4rem .7rem; border-radius: .45rem; font-size: .78rem; backdrop-filter: blur(6px); }

.check-list, .list-unstyled { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .68rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.35rem; height: 1.35rem; border-radius: 50%; display: grid; place-items: center; background: rgba(31,107,79,.12); color: var(--success); font-size: .8rem; font-weight: 900; }

.process-step { position: relative; padding: 1.5rem; border-left: 2px solid var(--sand); }
.process-step .number { display: inline-grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: .7rem; background: var(--ink); color: #fff; font-weight: 800; margin-bottom: 1rem; }

.review-score { display: flex; align-items: center; gap: .8rem; }
.review-score .score { font-size: 2rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.stars { color: #e5a31a; letter-spacing: .08em; white-space: nowrap; }
.review-card blockquote { color: var(--ink-soft); margin: 0; }
.external-badge { display: inline-flex; align-items: center; gap: .45rem; border: 1px solid var(--line); border-radius: 99px; padding: .35rem .7rem; font-size: .8rem; font-weight: 700; color: var(--ink-soft); background: #fff; }

.cta-band { position: relative; overflow: hidden; border-radius: 1.4rem; background: linear-gradient(120deg, var(--roof-dark), var(--roof)); color: #fff; box-shadow: 0 22px 60px rgba(127,36,34,.28); }
.cta-band h2, .cta-band h3, .cta-band p { color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 22rem; height: 22rem; border-radius: 50%; background: rgba(255,255,255,.08); right: -8rem; top: -10rem; }
.cta-band > * { position: relative; z-index: 2; }

.page-hero { background: linear-gradient(135deg, var(--paper), #fff); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; list-style: none; gap: .4rem; padding: 0; margin: 0; font-size: .9rem; color: var(--slate); }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; margin-right: .4rem; color: var(--slate); }
.breadcrumb a { color: var(--ink); text-decoration: none; }

.portfolio-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.portfolio-card:hover img { transform: scale(1.025); }
.portfolio-card .card-body { padding: 1.15rem; }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.faq .accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.accordion-header { margin: 0; }
.faq .accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 0; font-weight: 710; font-size: 1.04rem; text-align: left; padding: 1.2rem 0; background: transparent; color: var(--ink); }
.faq .accordion-button::after { content: "+"; flex: 0 0 auto; width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center; background: rgba(183,51,47,.08); color: var(--roof); font-size: 1.2rem; }
.faq .accordion-button[aria-expanded="true"] { color: var(--roof-dark); }
.faq .accordion-button[aria-expanded="true"]::after { content: "−"; }
.accordion-collapse { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-collapse > .accordion-body { overflow: hidden; }
.accordion-collapse.show { grid-template-rows: 1fr; }
.faq .accordion-body { padding: 0 0 1.3rem; color: var(--ink-soft); }

.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; background: #fff; height: 100%; }
.contact-card .bi { font-size: 1.35rem; color: var(--roof); }
.form-label { display: inline-block; margin-bottom: .4rem; font-weight: 680; }
.form-control, .form-select { width: 100%; border-radius: .7rem; padding: .8rem .9rem; border: 1px solid rgba(20,33,43,.2); color: var(--ink); background: #fff; }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-control:focus, .form-select:focus { outline: 0; border-color: var(--roof); box-shadow: 0 0 0 .2rem rgba(183,51,47,.12); }
.form-check { display: flex; align-items: flex-start; gap: .6rem; }
.form-check-input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; accent-color: var(--roof); }
.invalid-feedback { display: none; color: var(--roof); font-size: .85rem; margin-top: .3rem; }
.was-validated :invalid ~ .invalid-feedback { display: block; }
.was-validated :invalid { border-color: var(--roof); }
.map-frame { border: 0; width: 100%; min-height: 390px; border-radius: var(--radius); }

.notice { border-left: 4px solid var(--copper); background: #fff8ee; padding: 1rem 1.1rem; border-radius: .25rem .8rem .8rem .25rem; }
.notice-danger { border-left-color: var(--roof); background: #fff3f2; }

.footer { background: #101820; color: rgba(255,255,255,.72); }
.footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer h2, .footer h3 { color: #fff; font-size: 1rem; font-weight: 760; }
.footer .logo-footer { width: 230px; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }

.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

/* Utilities */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.mt-auto { margin-top: auto !important; }
.mx-auto { margin-inline: auto !important; }
.me-1 { margin-right: .25rem !important; }
.mt-1 { margin-top: .25rem !important; }.mt-2 { margin-top: .5rem !important; }.mt-3 { margin-top: 1rem !important; }.mt-4 { margin-top: 1.5rem !important; }.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }.mb-1 { margin-bottom: .25rem !important; }.mb-2 { margin-bottom: .5rem !important; }.mb-3 { margin-bottom: 1rem !important; }.mb-4 { margin-bottom: 1.5rem !important; }.mb-5 { margin-bottom: 3rem !important; }
.pt-0 { padding-top: 0 !important; }.pt-5 { padding-top: 3rem !important; }
.p-4 { padding: 1.5rem !important; }.p-5 { padding: 3rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.position-relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.object-fit-cover { object-fit: cover !important; }
.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }
.small { font-size: .875rem !important; }
.fs-4 { font-size: 1.35rem !important; }
.fw-bold { font-weight: 750 !important; }
.text-center { text-align: center !important; }.text-start { text-align: left !important; }
.text-white { color: #fff !important; }.text-white-50 { color: rgba(255,255,255,.5) !important; }.text-dark { color: var(--ink) !important; }.text-danger { color: var(--roof) !important; }.text-warning { color: #e5a31a !important; }
.text-break { overflow-wrap: anywhere !important; }
.bg-white { background: #fff !important; }
.border-0 { border: 0 !important; }
.h2 { font-size: 2rem; }.h3 { font-size: 1.65rem; }.h4 { font-size: 1.3rem; }.h5 { font-size: 1.12rem; }

@media (min-width: 576px) {
  .col-sm-4 { width: 33.333333%; }
  .col-sm-5 { width: 41.666667%; }
  .col-sm-7 { width: 58.333333%; }
  .col-sm-8 { width: 66.666667%; }
  .flex-sm-row { flex-direction: row !important; }
}
@media (min-width: 768px) {
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
  .d-md-block { display: block !important; }
}
@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .align-items-lg-center { align-items: center !important; }
  .flex-lg-column { flex-direction: column !important; }
  .flex-lg-row { flex-direction: row !important; }
  .gap-lg-1 { gap: .25rem !important; }
  .ms-lg-2 { margin-left: .5rem !important; }
  .p-lg-5 { padding: 3rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}

@media (max-width: 1120px) and (min-width: 992px) {
  .nav-link { padding-inline: .48rem; font-size: .9rem; }
  .navbar-brand img { width: 195px; }
}

@media (max-width: 991.98px) {
  :root { --header-height: 70px; }
  body { padding-bottom: 70px; }
  .d-none.d-md-block { display: none !important; }
  .navbar-toggler { display: inline-flex; }
  .navbar-collapse { position: absolute; top: 100%; left: 0; right: 0; display: grid; grid-template-rows: 0fr; background: #fff; box-shadow: 0 20px 35px rgba(20,33,43,.12); overflow: hidden; transition: grid-template-rows .28s ease; }
  .navbar-collapse > .navbar-nav { overflow: hidden; }
  .navbar-collapse.is-open { grid-template-rows: 1fr; border-top: 1px solid var(--line); }
  .navbar-nav { align-items: stretch; flex-direction: column; gap: .1rem; padding: .75rem 1rem 1rem; }
  .nav-link { width: 100%; justify-content: space-between; padding: .78rem .8rem; }
  .nav-item.ms-lg-2 { margin-left: 0 !important; margin-top: .35rem; }
  .nav-item.ms-lg-2 .btn { width: 100%; }
  .dropdown-menu { position: static; min-width: 0; box-shadow: none; border: 0; border-left: 2px solid var(--sand); border-radius: 0; margin: 0 0 .35rem .8rem; padding: 0 0 0 .45rem; opacity: 1; visibility: visible; transform: none; display: none; }
  .dropdown.is-open > .dropdown-menu { display: block; }
  .hero { background: linear-gradient(180deg, #fff 0%, #fff 68%, var(--paper) 68%, var(--paper) 100%); }
  .hero-badge { left: .75rem; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; background: #fff; box-shadow: 0 -6px 24px rgba(20,33,43,.15); }
  .mobile-cta a { padding: .78rem .5rem; text-align: center; font-weight: 800; text-decoration: none; }
  .mobile-cta a:first-child { color: var(--ink); }
  .mobile-cta a:last-child { color: #fff; background: var(--roof); }
}

@media (max-width: 767.98px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .display-title { font-size: clamp(2.35rem, 12vw, 3.5rem); max-width: 12ch; }
  .section { padding: 4.2rem 0; }
  .hero-badge { position: relative; left: 0; bottom: auto; margin: -1.4rem .8rem 0; max-width: none; }
  .hero-slider { aspect-ratio: 5/4; }
  .slide-caption { right: 5.8rem; }
  .g-5 { --gutter-x: 1.5rem; --gutter-y: 2rem; }
  .trust-item { font-size: .92rem; }
  .p-5 { padding: 1.6rem !important; }
}

@media (max-width: 420px) {
  .navbar-brand img { width: 185px; max-width: 70vw; }
  .display-title { font-size: 2.35rem; }
  .fs-4 { font-size: 1.15rem !important; }
  .slider-controls { right: .7rem; bottom: .7rem; }
  .slide-caption { left: .9rem; right: 5rem; bottom: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide img { transform: none !important; }
}


.project-type{display:inline-block;margin-bottom:.65rem;padding:.32rem .7rem;border-radius:999px;background:rgba(184,51,47,.08);color:#b8332f;font-size:.84rem;font-weight:700;letter-spacing:.01em;}
.mini-gallery .portfolio-card img,.portfolio-card img{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover;}
.related-link{text-decoration:none;color:inherit;transition:transform .25s ease, box-shadow .25s ease;}
.related-link:hover{transform:translateY(-4px);}
.service-card .service-link{font-weight:700;color:#15202b;text-decoration:none;}
.service-card .service-link:hover{color:#b8332f;}

/* Production SEO and accessibility refinements */
.local-seo-section{background:linear-gradient(180deg,#fff 0%,#f7f4ef 100%)}
.related-link{height:100%;text-decoration:none;color:inherit;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.related-link:hover,.related-link:focus-visible{transform:translateY(-4px);color:inherit}
.navbar-brand img,.logo-footer{height:auto;max-width:100%}
.page-hero .section-title{overflow-wrap:anywhere}
@media(max-width:575.98px){.page-hero .section-title{font-size:clamp(2rem,10vw,3rem)}.display-title{font-size:clamp(2.15rem,10.5vw,3.4rem)}}

/* Echte projectfoto's Chris Matthys */
.project-source {
  margin-bottom: .45rem;
  color: #5f6b76;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.company-van-card {
  overflow: hidden;
}
.company-van-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-inline: auto;
  border-radius: .8rem;
}
.portfolio-platform-note a {
  font-weight: 700;
}
.portfolio-card.h-100 {
  height: 100%;
}
@media (max-width: 575.98px) {
  .company-van-card {
    text-align: center;
  }
}

/* Echte projectfoto's met portretoriëntatie volledig en recht tonen. */
img.project-photo-portrait { object-fit: contain !important; object-position: center; background: #edf0ef; }

/* Reviewknoppen in footer */
.footer a.external-badge {
  background: #fff;
  color: #15202b;
  border-color: rgba(255, 255, 255, 0.35);
}

.footer a.external-badge:hover,
.footer a.external-badge:focus-visible {
  background: #b8332f;
  color: #fff;
  border-color: #b8332f;
}