/* public/stylesheets/scss/compiled.scss */
/* Polices locales (WOFF2) */
@font-face {
  font-family: "Hind";
  src: url("/fonts/woff2/Hind-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito-L";
  src: url("/fonts/woff2/Nunito Light.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/woff2/Nunito Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
/* public/stylesheets/scss/base/_reset.scss */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* public/stylesheets/scss/base/_base.scss */
/* public/stylesheets/scss/abstracts/_index.scss */
/* public/stylesheets/scss/abstracts/_variables.scss */
/* public/stylesheets/scss/abstracts/_mixins.scss */
:root {
  --bg-beige: #faf5f0;
  --bg-white: #ffffff;
  --text: #372d2d;
  --cta: #e6501e;
  --link: #157882;
  --h1: 2.5rem;
  --h2: 2rem;
  --h3: 1.8rem;
  --h4: 1.6rem;
  --p: 1.4rem;
  --btn: 1.4rem;
  --radius-card: 18px;
  --radius-btn: 6px;
}

body {
  background-color: var(--bg-beige);
}

section {
  margin: 5em 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* public/stylesheets/scss/base/_typography.scss */
body {
  font-family: "Nunito-L", sans-serif;
  font-size: var(--p);
  color: var(--text);
  line-height: 1.3;
}

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

h1 {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: var(--h1);
}

h2 {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: var(--h2);
}

h3 {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: var(--h3);
}

h4, h5, h6 {
  font-family: Hind, sans-serif;
  font-size: var(--h4);
}

p {
  font-weight: 300;
  font-size: var(--p);
  white-space: pre-line;
  font-weight: 500;
}

a {
  font-family: "Nunito", sans-serif;
  font-size: inherit;
  color: var(--link);
}

button {
  font-family: "Nunito", sans-serif;
  font-size: var(--btn);
  background-color: var(--cta);
}

/* public/stylesheets/scss/base/_base.scss */
.container {
  width: min(1260px, 100% - 32px);
  margin: 0 auto;
  text-align: center;
}

/* public/stylesheets/scss/base/_base.scss */
header {
  padding: 0 2em;
  line-height: 1em;
}

.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

a.brand-title {
  font-family: "Hind", sans-serif;
  color: var(--cta);
  font-weight: 700;
  text-decoration: none;
}
a.brand-title:hover {
  text-decoration: underline;
}

.brand-sub {
  font-size: 0.75em;
}

footer {
  background-color: var(--bg-white);
  font-size: 1rem;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em;
  text-align: left;
  padding: 2rem 0 0 0;
}
footer .footer-link {
  display: block;
  margin: 1em 0;
}
footer p {
  font-size: 1rem;
}
footer h3 {
  font-size: 1.4rem;
  margin: 0;
}
footer .brand {
  font-size: 1.4rem;
}

/* public/stylesheets/scss/base/_base.scss */
.divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* public/stylesheets/scss/base/_base.scss */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em;
}
@media screen and (max-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
  }
}
.grid-2 > .col {
  min-width: 0;
}

/* public/stylesheets/scss/base/_base.scss */
.benefits {
  margin: 2em 0;
}
.benefits .benefits-list {
  margin: 0;
}

/* public/stylesheets/scss/base/_base.scss */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  margin: 16px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  background: var(--cta);
  color: #fff;
  border: 0;
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: var(--btn);
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.96);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--cta);
  border: 2px solid var(--cta);
}

.badge {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 14px;
}

.search-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
  margin-top: 18px;
}

a.btn {
  text-decoration: none;
}

.search-form {
  margin-top: 14px;
}

.search-row {
  display: flex;
  gap: 12px;
}

.search-field {
  width: clamp(260px, 90%, 500px);
}

.search-input {
  min-width: 300px;
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 18px;
}

.suggest {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.suggest-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
}
.suggest-item .suggest-name {
  text-transform: uppercase;
}

.suggest-item:hover,
.suggest-item.is-active {
  background: rgba(0, 0, 0, 0.05);
}

.grid {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2em;
}

.name-chip {
  display: block;
  background: rgba(0, 0, 0, 0.04);
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.tag {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

.kpis {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.kpi {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

.kpi-label {
  font-size: 14px;
  opacity: 0.8;
}

.kpi-value {
  font-size: 22px;
  font-weight: 700;
}

/* public/stylesheets/scss/base/_base.scss */
ul,
ol {
  text-align: left;
  list-style-type: none;
  justify-self: center;
}

ul.bullets {
  list-style-type: disc;
}

ol.numbers {
  list-style-type: decimal;
}

ol.numbers .li-item {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
ol.numbers .li-item a {
  display: inline-block;
  text-transform: uppercase;
}

ul.period-list {
  padding-inline-start: 0;
}
ul.period-list .li-item {
  display: flex;
  gap: 1em;
}
ul.period-list .li-item p {
  margin: 0;
  text-align: start;
}

ul.siteplan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
ul.siteplan-list li a {
  text-transform: capitalize;
}

/* Siteplan navigation */
.letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin: 12px 0 18px;
}

.letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: var(--btn);
  text-decoration: none;
}

.letter:hover,
.letter.is-active {
  background: var(--link);
  border-color: var(--link);
  color: #fff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin: 20px 0 10px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--btn);
}

.page-link:hover {
  background: var(--link);
  border-color: var(--link);
  color: #fff;
}

.page-current {
  font-weight: 600;
  color: var(--text);
}

/* public/stylesheets/scss/base/_base.scss */
.map-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.map-select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  background: #fff;
}

.map-canvas {
  width: 100%;
  max-width: 100%;
  height: 420px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f7f9fc;
  overflow: hidden;
  position: relative;
  z-index: 0;
  pointer-events: auto;
}

.map-card {
  overflow: hidden;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.95em;
  justify-content: space-between;
}

.map-hover {
  margin: 8px 0 6px;
  font-size: 0.95em;
  color: rgba(0, 0, 0, 0.72);
}

.map-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-999px, -999px);
  background: rgba(20, 24, 38, 0.92);
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.85em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 80ms ease;
  z-index: 10000;
}

.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-pane,
.leaflet-pane svg {
  pointer-events: auto;
}

.legend-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #c4deff 25%, #3a6ece 55%, #6f3ea8 80%, #d254b2 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.leaflet-tooltip {
  font-size: 0.9em;
}

/* public/stylesheets/scss/base/_base.scss */
.faq-list {
  display: grid;
  padding: 0 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-list .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-list .question:hover {
  opacity: 0.8;
}
.faq-list .question p {
  font-weight: 600;
  text-align: left;
  display: inline-block;
}
.faq-list .faq-answer p {
  text-align: left;
}
.faq-list .faq-answer ul {
  justify-self: start;
}
.faq-list.last-faq-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-list [data-faq-display=n] {
  display: none;
}

/* public/stylesheets/scss/base/_base.scss */
.socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
}
.socials .social {
  text-decoration: none;
}
.socials .facebook {
  color: #1877f2;
}
.socials .twitter {
  color: #1da1f2;
}
.socials .pinterest {
  color: #e60023;
}
.socials .xtwitter {
  color: black;
}
.socials .youtube {
  color: #ff0000;
}
.socials .rss {
  color: #f26522;
}
.socials .instagram {
  background: linear-gradient(45deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.socials .email {
  color: var(--text);
}

.topbar {
  margin: 2em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .sep {
  padding: 0 0.25em;
}