:root {
  --c-brown: #bb9871;
  --c-dark: #202e40;
  --c-black: #202e40;
  --c-blue: #0c99a5;
  --c-white: #ffffff;
  --c-dg: #bebebf;

  --space-22: 22px;
  --space-40: 40px;
}

/* layout */
.preheader {overflow: clip;}
.container-1500 {
  max-width: 1500px !important;
  padding: var(--space-40);
}

.header > .row{
   margin-left: 0;
    margin-right: 0;
}
/* colors / helpers */
.bg-dark { background-color: var(--c-dark); }
.bg-blue { background-color: var(--c-blue); }
.bg-gray { background-color: #f6f6f6; }

.white { color: var(--c-white); }
.brown { color: var(--c-brown); }

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.t-18-28 { line-height: 28px; }

.shadow-4 { text-shadow: 0 4px 4px #00000040; }

/* typography */
.container-1500 h2,
.container-1500 h3,
.int-700-18,
.rail,
.hero-inner .labels li {
  font-family: "Inter", sans-serif;
}

.container-1500 h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 44px;
  text-transform: uppercase;
  color: var(--c-dark);
}

.container-1500 h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--c-dark);
}

.int-700-18 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

/* flex utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.flex-1 { flex: 1; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.space-around { justify-content: space-around; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-60 { gap: 60px; }

/* grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* margin utilities */
.mr-1 { margin-right: 1rem; }
.mr-2 { margin-right: 2rem; }
.mr-3 { margin-right: 3rem; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }

/* FIX: missing dot => should be a class */
.mt-mb-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* padding utilities */
.p-20 { padding: 20px; }
.p-40 { padding: 40px; }
.p-80 { padding: 80px; }
.p-12-16 { padding: 12px 16px; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.pt-2 { padding-top: 2px; }
.pt-18 { padding-top: 18px; }
.pl-0 { padding-left: 0; }

.min-20 {
  min-width: 20%;
  max-width: 273px;
}

/* borders */
.bt-grau,
.bt-1-grau {
  border-top: 1px solid var(--c-dg);
}

.border-dg { border: 1px solid var(--c-dg); }

/* corner borders */
.border-tl,
.border-br {
  position: relative;
  padding: 40px 0;
}

.border-tl .container,
.border-br .container {
  padding: var(--space-40);
  position: relative;
}

.border-tl .container::before,
.border-br .container::after {
  position: absolute;
  content: "";
  width: 118px;
  height: 92px;
}

.border-tl .container::before {
  left: 0;
  top: 0;
  border-top: 4px solid var(--c-brown);
  border-left: 4px solid var(--c-brown);
}

.border-br .container::after {
  right: 0;
  bottom: 0;
  border-bottom: 4px solid var(--c-brown);
  border-right: 4px solid var(--c-brown);
}

/* hero */
.hero-inner {
  color: var(--c-white);
  min-height: 540px;
  height: auto;
  background-image: var(--hero-desktop);
  background-size: cover;
  background-position: center;
}

.h1-inner {
  max-width: 490px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 68px;
  margin: 0 0 30px;
}

.hero-inner .title-block { max-width: 801px; }

.hero-inner .title-block ul {
  padding-left: 33px;
  margin-bottom: 31px;
}

.hero-inner .title-block ul li {
  position: relative;
  padding-left: 3px;
}

.hero-inner .labels li {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
}

.hero-inner .labels svg {
  max-width: 22px;
  width: auto;
  height: 22px;
}

.hero-inner p {
  font-size: 22px;
  line-height: 32px;
}

@media (max-width: 767px) {
  .hero-inner { background-image: var(--hero-mobile); }
  .h1-inner { font-size: 45px; line-height: 56px; }
  .grid-2 { grid-template-columns: 1fr; }
  .mob-flex-col { flex-direction: column; }
}

/* contact under hero */
.contact-section .container-1500 { padding: 0; }
.contact-form .wpcf7-list-item input { width: 22px; height: 22px; }
.contact-form .checkbox-wrapper p { margin: 5px 0 0; }

/* rail section */
.rail-wrapper img { max-width: 480px; }
.rail-wrapper .fw7 { margin: 0; }

.rail {
  min-width: 200px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  justify-content: space-around;
}

.rail-ic { max-width: 152px; }
.rail-item { gap: 8px; }

/* rail alternating colors */
.rail-item .ttl2-line:first-child { color: var(--c-white); }
.rail-item .ttl2-line--2 { color: var(--c-brown); }

.rail-item:nth-child(even) .ttl2-line:first-child { color: var(--c-brown); }
.rail-item:nth-child(even) .ttl2-line--2 { color: var(--c-white); }

/* desktop-only tweaks */
@media (min-width: 1025px) {
  .ffk { margin-left: 40px; }

  .cards-section .container { padding: 33px 40px; }
  .cards-section article { min-height: 270px; }
  .cards-section .fw7 { margin: 5px 0; }

  .card-dual-title h4 { margin: 0; max-width: 205px; }
  .height-72 { height: 72px; }

  .reviews-section h2 { margin-bottom: 20px; font-size: 38px; line-height: 44px; }
  .reviews-section .swiper h6 { margin: 10px; }
}

/* scrolling section */
.c-bk * { margin: 20px 0; }
.scrolling-content article > h2:first-child { margin-top: 0; }
span.li-text { margin: 0; }
.c-bk img {
  object-fit: cover;
  margin: 32px 0;
  height: auto;
}

.gr2-sticky .contact-form-sticky {
  position: sticky;
  top: 63px;
  align-self: start;
  min-width: 360px;
  max-width: 460px;
}

/* cards section background */
.cards-section {
  background-image: var(--bg-img);
  background-repeat: no-repeat;
  background-position: bottom right 0px;
}

/* consult card */
.consult-card {
  border: 1px solid #d6d6d6;
  background: var(--c-white);
}

.consult-card__header {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 26px 28px 12px;
  text-align: center;
}

.consult-card__header .consult-card__title {
  margin: 0;
  font-size: 29px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--c-white);
}

.consult-card__title span { color: var(--c-brown); }

.consult-card__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.consult-card__body { padding: 26px 28px 28px; }

.consult-fields {
  display: grid;
  gap: 20px;
}

.consult-card .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 0;
  position: relative; /* needed for the asterisk pseudo-element */
}

.consult-card input[type="text"],
.consult-card input[type="email"],
.consult-card input[type="tel"] {
  width: 100%;
  height: 52px;
  border: 1px solid #cfcfcf;
  padding: 0 16px;
  background: var(--c-white);
  outline: none;
  box-shadow: none;
}

.consult-card input::placeholder { color: #9ea3aa; }

.consult-card
  .wpcf7-form-control-wrap:has([aria-required="true"])::before {
  position: absolute;
  content: "*";
  right: 8px;
  top: 3px;
  color: var(--c-blue);
}

.consult-expertise { margin-top: 18px; }

.consult-expertise__title {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-dark);
  white-space: nowrap;
}

/* Force CF7 checkbox layout */
.consult-expertise__choices .wpcf7-form-control { display: block; }

.consult-expertise__choices .wpcf7-checkbox {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 23px;
  align-items: start;
}

.consult-expertise__choices .wpcf7-list-item { margin: 0 !important; }

.consult-expertise__choices .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  color: var(--c-dark);
}

.consult-expertise__choices input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-blue);
}

.consult-expertise__choices .wpcf7-list-item-label {
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  margin-left: 0;
}

.consult-expertise .wpcf7-list-item.first {
    padding-top: 5px;
}

.contact-bottom .contact-form .checkbox-wrapper p {
    padding-top: 0;
}
/* Submit + legal */
.consult-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;

position: relative;

}

.consult-card .consult-actionst { position: relative; }

.consult-card .consult-actions::before {
  content: "";
  position: absolute;
left: calc(50% - 64px);
    top: 22%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("https://glgllp.ca/wp-content/uploads/2026/02/click.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.consult-card input.wpcf7-submit {
  width: 100%;
  height: 56px;
  border: 0;
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
line-height: 100%;
  /* shift text to make room for icon */
  text-indent: 45px;
}

.consult-legal {
  margin: 0;
  text-align: center;
  color: var(--c-dark);
}

.consult-legal a {
  color: var(--c-blue);
  text-decoration: none;
}

.consult-legal a:hover { text-decoration: underline; }

.consult-divider {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid #dcdcdc;
}

/* Phone bar */
.consult-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  background: var(--c-brown);
  color: var(--c-white);
  text-decoration: none;
  font-weight: 800;
}

.consult-phone__icon {
  content: url("https://glgllp.ca/wp-content/uploads/2026/02/phone-icon.svg");
  display: inline-block;
  width: 23px;
  height: 23px;
  margin-right: 5px;
  line-height: 1;
}

/* Responsive consult */
@media (max-width: 480px) {
  .consult-expertise__choices .wpcf7-checkbox {
    grid-template-columns: 1fr;
  }
}

/* target the fake first item */
.consult-expertise .wpcf7-list-item.first input[value="AREA OF EXPERTISE:"] {
  display: none !important;
}

/* make it look like a title, not an option */
.consult-expertise .wpcf7-list-item.first {
  pointer-events: none;
  cursor: default;
}

.consult-expertise .wpcf7-list-item.first .wpcf7-list-item-label {
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 0;
  font-size: 15px;
  line-height: 16px;
}

/* repeated cards */
.wh-44 { width: 44px; height: 44px; }

.card-dual-title h4 { color: var(--c-white); }
.card-dual-title span { color: var(--c-brown); min-width: 133px; }

/* scrolling-scontent */
.scrolling-scontent {
  position: relative;
  max-width: 900px;
}

.labels,
.scrolling-scontent ul {
  list-style: none;
  padding-left: 24px;
}

.labels li,
.scrolling-scontent ul li {
  position: relative;
  padding-left: 12px;
}

.labels li::before,
.scrolling-scontent ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3141 1.34044C13.9293 0.834652 14.8069 0.903366 15.3434 1.47394L15.4464 1.59447L22.6713 11.0235C23.1095 11.5956 23.1096 12.405 22.6713 12.977L15.4464 22.4052L15.3434 22.5266C14.8069 23.0971 13.9293 23.165 13.3141 22.6592C12.6581 22.1196 12.5489 21.1313 13.0697 20.4517L18.3423 13.5713H2.51732C1.67938 13.5713 1 12.8677 1 11.9998C1.00018 11.1321 1.67949 10.4283 2.51732 10.4283H18.3414L13.0697 3.5489L12.9793 3.41724C12.5646 2.74659 12.6988 1.84621 13.3141 1.34044Z' fill='%23BB9871'/%3E%3C/svg%3E");
  background-position: 0 100%;
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  left: -1.5em;
  top: 3px;
  background-repeat: no-repeat;
  background-size: 100%;
}

/* numbered list */
.scrolling-scontent ol {
  counter-reset: ol-counter;
  list-style: none;
  padding-left: 0;
}

.scrolling-scontent ol li {
  counter-increment: ol-counter;
  background-color: #f6f6f6;
  padding: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.scrolling-scontent ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  color: var(--c-blue);
  font-weight: 700;
  font-size: 18px;
  background-color: var(--c-white);
  padding: 10px;
  flex-shrink: 0;
}

/*blog section*/
.blog-section .swiper-slide {
    height: 460px;
}
.blog-section h2{
font-weight: 700;
font-size: 38px;
line-height: 44px;
letter-spacing: 0%;
vertical-align: middle;
}

.blog-section .swiper h5 {
    margin: 0;
}
.contact-bottom {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
}

/*contact */

.address-section .right .center-icon-map svg {
    width: 76px;
    height: 76px;
}
.contact-bottom .contact-form .cta-wrap a svg {
    max-width: 32px;
    width: 32px;
    height: 32px;
}
.contact-form .cta-wrap p{margin-bottom:0;}
/*Goolge review*/

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #202e40, #202e40);
    color: #fff;
    user-select: none;
    aspect-ratio: 1 / 1;
}

/* mobile layout adjustments */
@media (max-width: 767px) {
  .preheader .row,
  .header .row {
    margin-left: auto;
    margin-right: auto;
  }

  .scrolling-section .container-1500,
  .cards-section .container-1500 {
    padding: 0 var(--space-22);
  }

  .scrolling-section .container-1500 h2,
  .cards-section .container-1500 h2 {
    margin: 0 0 20px;
  }

  .gc4.grid-4 { grid-template-columns: 1fr; }

  .scrolling-section.border-tl .container::before,
  .cards-section.border-tl .container::before {
    left: auto;
    right: 0;
    top: 0;
    border-left: 0;
    border-top: 4px solid var(--c-brown);
    border-right: 4px solid var(--c-brown);
    margin-right: 50px;
  }

  .card-dual-title span { color: var(--c-white); min-width: auto; }
  /* scrolling section */

}


@media (max-width: 530px) {
.preheader > .row {flex-direction: column;}

.preheader > .row .left{padding: 0 22px;}
.preheader > .row .right{display: none;}
.top-stars {
    align-items: center;
}
.top-stars p {
   margin: 0 auto;
font-weight: 400;
font-size: 13px;
line-height: 16px;
vertical-align: middle;
text-transform: uppercase;

}

.header .logo{margin-left: 22px;}



.container-1500 {
    max-width: 1500px !important;
    padding: var(--space-22) !important;
}
section.p-40 {
    padding: 0;
}

/*hero*/
.hero-inner {
    color: var(--c-white);
    min-height: 700px;
}
.hero-inner .title-block ul{
gap:16px
}


.contact-section {
    padding: 0;
}

.border-tl .container::before {
    left: unset;
    top: 0;
       right: 22px;
    border-top: 4px solid var(--c-brown);
    border-right: 4px solid var(--c-brown);
    border-left: unset;
}

    .contact-form .wpcf7-list-item {
        width: 45%;
    }

.rail-wrapper .fw7 {
    max-width: 88%;
}
.rail{padding: 24px;}


.cards-section{background-image: unset;
}
.ovh.flex-1{order:2;}



article .bg-bk{padding: 12px;}
.card-dual-title h4 {
    margin: 0;
}


.ff.c-bk{text-align:center;}
.scrolling-section{padding-top: 22px;}
.scrolling-section.border-tl .container::before, 
.cards-section.border-tl .container::before{ margin-right: 22px}

.gr2-sticky .ff.c-bk{text-align:left;}
.contact-bottom .container,
.address-section .container {
        padding: 0 !important;
    }



    .address-section .right.mob {

        background-image: url(https://glgllp.ca/wp-content/uploads/2025/07/map.png);
        background-size: cover;
    }

.border-br .container::after{display:none;}
}