:root {
  --green: #64b32c;
  --green-dark: #4f9822;
  --green-fond: #e8f4df;
  --black: #000;
  --white: #fff;
  --page: 1200px;
  --mobile-gutter: 15px;
  --shadow: 0 6px 9px rgba(100, 179, 44, .3);
  --image-shadow: 0 6px 18px rgba(100, 179, 44, .3);
}

/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v51-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v51-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-slab-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-slab-v36-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-slab-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/roboto-slab-v36-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html.menu-open, html.lightbox-open {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
h3,
.slab,
.button,
dt {
  font-family: "Roboto Slab", Georgia, serif;
}

h1,
h2 {
  color: var(--green);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-width {
  width: min(100% - 30px, var(--page));
  margin-inline: auto;
}

.section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.lead {
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 5px 21px;
  border: 1px solid rgba(100, 179, 44, 0.37);
  border-radius: 60px;
  background: var(--green-fond);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover, .button:focus-visible {
  background: var(--green-dark);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(3px);
}

.logo-link {
  position: relative;
  z-index: 32;
}
.logo-link img {
  width: 200px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  position: relative;
  z-index: 31;
}
.mobile-nav summary {
  display: grid;
  width: 35px;
  height: 30px;
  place-items: center;
  cursor: pointer;
  list-style: none;
  border-radius: 6px;
  background: var(--green);
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav summary:focus {
  outline: none;
}
.mobile-nav summary img {
  grid-area: 1/1;
  width: 20px;
  height: 17px;
}
.mobile-nav summary .close-icon {
  width: 20px;
  height: 16.333px;
}
.mobile-nav .close-icon,
.mobile-nav nav {
  display: none;
}
.mobile-nav[open] {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 606px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(3px);
}
.mobile-nav[open] summary {
  position: absolute;
  top: 12px;
  right: 16px;
}
.mobile-nav[open] .menu-icon {
  display: none;
}
.mobile-nav[open] .close-icon {
  display: block;
}
.mobile-nav[open] nav {
  position: absolute;
  top: 286px;
  left: 50%;
  display: flex;
  width: min(360px, 100vw - 30px);
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 29px;
}
.mobile-nav[open] nav > a:not(.button) {
  color: var(--black);
  font-family: "Roboto Slab", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-nav[open] nav > a:not(.button):hover, .mobile-nav[open] nav > a:not(.button):focus-visible {
  color: var(--green);
}
.mobile-nav[open] .mobile-menu-cta {
  width: 216px;
}
.mobile-nav[open] .mobile-menu-cta:hover, .mobile-nav[open] .mobile-menu-cta:focus-visible {
  background: var(--green);
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-copy {
  padding-block: 45px 42px;
  text-align: center;
}
.hero-copy p {
  width: 288px;
  max-width: 100%;
  margin: 28px auto 0;
  font-size: 22px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  display: block;
  width: 100%;
  height: 270px;
  overflow: visible;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--image-shadow);
}
.hero-media .hero-media-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.697);
  border-radius: 14px;
  padding: 6px 12px;
}

.benefits {
  min-height: 652px;
  padding-block: 46px 54px;
  background: rgba(100, 179, 44, 0.11);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.benefit-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.benefit-grid img {
  width: 108.13px;
  height: 108.13px;
  object-fit: contain;
}
.benefit-grid h2 {
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro {
  padding-block: 60px 60px;
}
.intro .lead {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
}

.site-plan {
  position: relative;
  width: min(100%, 1237px);
  aspect-ratio: 1237/790;
  margin-inline: auto;
}
.site-plan img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-plan-media,
.site-plan-overlays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-plan-overlays {
  z-index: 1;
}
.site-plan-overlays polygon {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2;
  cursor: help;
  pointer-events: all;
  transition: fill 0.18s ease, fill-opacity 0.18s ease, stroke 0.18s ease;
  vector-effect: non-scaling-stroke;
}
.site-plan-overlays polygon.is-rented {
  fill: #ff2b20;
  fill-opacity: 0.62;
  stroke: #f00;
}
.site-plan-overlays polygon:hover, .site-plan-overlays polygon:focus-visible {
  fill: var(--green);
  fill-opacity: 0.5;
  stroke: var(--white);
  stroke-width: 3;
  outline: none;
}
.site-plan-overlays polygon.is-rented:hover, .site-plan-overlays polygon.is-rented:focus-visible {
  fill: #ff2b20;
  fill-opacity: 0.78;
}

.site-plan-legend {
  position: absolute;
  z-index: 2;
  right: 5.4%;
  bottom: 6.5%;
  padding: 9px 18px;
  border-radius: 10px;
  color: var(--white);
  background: #f00;
  font-size: clamp(12px, 1.45vw, 18px);
  font-weight: 700;
  line-height: 1.1;
}

.site-plan-tooltip {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(100, 179, 44, 0.35);
  border-radius: 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  line-height: 1.15;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
}
.site-plan-tooltip[hidden] {
  display: none;
}
.site-plan-tooltip::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(100, 179, 44, 0.35);
  border-bottom: 1px solid rgba(100, 179, 44, 0.35);
  background: var(--white);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}
.site-plan-tooltip.is-below {
  transform: translate(-50%, 14px);
}
.site-plan-tooltip.is-below::after {
  top: -6px;
  bottom: auto;
  border: 0;
  border-top: 1px solid rgba(100, 179, 44, 0.35);
  border-left: 1px solid rgba(100, 179, 44, 0.35);
}
.site-plan-tooltip strong {
  color: var(--green-dark);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 800;
}
.site-plan-tooltip span {
  font-size: clamp(16px, 1.8vw, 22px);
  white-space: nowrap;
}
.site-plan-tooltip small {
  font-size: 0.7em;
  font-weight: 500;
}
.site-plan-tooltip b {
  font-weight: 800;
}

.equipment {
  position: relative;
  display: grid;
  width: min(100% - 30px, var(--page));
  margin: 100px auto 30px;
  gap: 40px;
}
.equipment .gallery-legend {
  position: absolute;
  bottom: -30px;
  right: 15px;
}

.feature-list {
  display: grid;
  width: 100%;
  gap: 30px;
}
.feature-list article {
  display: grid;
  gap: 5px;
}

.gallery {
  display: grid;
  width: 100%;
  aspect-ratio: 360/299;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 94.48fr 95.26fr 94.48fr;
  gap: 7px;
}
.gallery .gallery-item {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: transparent;
  cursor: zoom-in;
}
.gallery .gallery-item:focus-visible {
  outline: 4px solid var(--green);
  outline-offset: 3px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery .gallery-item:hover img {
  transform: scale(1.025);
}
.gallery .gallery-item:nth-child(1) {
  grid-area: 1/1;
}
.gallery .gallery-item:nth-child(2) {
  grid-area: 1/2;
}
.gallery .gallery-item:nth-child(3) {
  grid-area: 1/3;
}
.gallery .gallery-item:nth-child(4) {
  grid-area: 2/1/4/3;
}
.gallery .gallery-item:nth-child(5) {
  grid-area: 2/3;
}
.gallery .gallery-item:nth-child(6) {
  grid-area: 3/3;
}

.gallery-status,
.faq-status {
  align-self: center;
  justify-self: center;
  color: var(--green);
  font-weight: 700;
}

.gallery-status {
  grid-area: 1/1/-1/-1;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 15px;
  border: 0;
  color: var(--white);
  background: transparent;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
}

.lightbox-frame {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.lightbox-slide {
  display: flex;
  min-width: 0;
  width: min(100%, 1200px);
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  touch-action: pan-y;
}
.lightbox-slide > figcaption {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
}

.lightbox-media {
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
}
.lightbox-media img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 150px);
  border-radius: 15px;
  object-fit: contain;
}

.lightbox-thumbnails {
  display: flex;
  width: 100%;
  min-height: 72px;
  gap: 8px;
  padding: 3px 3px 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--green) rgba(255, 255, 255, 0.2);
  scroll-snap-type: inline proximity;
}

.lightbox-thumbnail {
  flex: 0 0 96px;
  width: 96px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  opacity: 0.68;
  scroll-snap-align: start;
}
.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-thumbnail:hover, .lightbox-thumbnail:focus-visible, .lightbox-thumbnail.is-current {
  border-color: var(--green);
  opacity: 1;
}
.lightbox-thumbnail:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.lightbox-counter {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.lightbox-close,
.lightbox-control {
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}
.lightbox-close:hover, .lightbox-close:focus-visible,
.lightbox-control:hover,
.lightbox-control:focus-visible {
  color: var(--green);
}
.lightbox-close:focus-visible,
.lightbox-control:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
}

.lightbox-control {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 44px;
  height: 64px;
  transform: translateY(-50%);
  border-radius: 8px;
  font-size: 52px;
  line-height: 0.8;
}

.lightbox-previous {
  left: 0;
}

.lightbox-next {
  right: 0;
}

@media (max-width: 389px) {
  .lightbox-thumbnail {
    flex-basis: 72px;
    width: 72px;
    height: 48px;
  }

  .lightbox-thumbnails {
    min-height: 56px;
  }
}
.plans {
  display: grid;
  width: min(100% - 30px, 996px);
  margin: 100px auto 0;
  gap: 40px;
  padding-bottom: 66px;
}

.centered-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.comparison {
  --position: 50%;
  position: relative;
  height: 252px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.comparison:focus-within {
  outline: 3px solid rgba(100, 179, 44, 0.45);
  outline-offset: 4px;
}

.comparison-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 6px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  width: 96px;
  height: 96px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
}
.slider-handle img {
  width: 100%;
  height: 100%;
  filter: invert(1);
  mix-blend-mode: screen;
}

.comparison-range {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.energy {
  padding-block: 100px;
  background: var(--white);
}

.energy-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.icon-list {
  display: grid;
  width: 347px;
  max-width: 100%;
  gap: 30px;
}
.icon-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.icon-list article > img {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.icon-list article div {
  display: grid;
  gap: 5px;
}

.quote {
  min-height: 696px;
  padding-block: 40px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}
.quote blockquote {
  display: grid;
  gap: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
.quote cite {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.quote-inner {
  display: flex;
  width: 320px;
  max-width: calc(100% - 40px);
  flex-direction: column;
  align-items: center;
  gap: 29px;
}
.quote-inner > img {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  object-fit: cover;
}

.rent {
  margin-top: 100px;
  padding: 50px 0 51px;
  background: var(--green-fond);
}
.rent .section-copy h3 {
  color: var(--green);
  font-size: 23px;
}

.rent-layout {
  display: grid;
  gap: 25px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.facts > div {
  min-height: 114px;
  padding: 16px 19px;
}
.facts dt {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.facts dd {
  margin-top: 5px;
  font-size: 16px;
  letter-spacing: 0;
}

.fact-highlight {
  border-radius: 10px;
  color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location {
  margin-top: 100px;
}

.location-intro {
  height: 270px;
  margin-bottom: 20px;
}

.location-map {
  position: relative;
  display: block;
  width: 100%;
  height: 251px;
  overflow: hidden;
}
.location-map img {
  position: absolute;
  top: -18px;
  left: 0;
  width: 390px;
  max-width: none;
  height: 287px;
}

.location-body {
  display: grid;
  gap: 30px;
  padding-top: 21px;
}

.poi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.poi-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.poi-list img {
  width: 30px;
  height: 35px;
  object-fit: contain;
}

.location-copy {
  display: grid;
  gap: 27px;
}

.show-home {
  margin-top: 100px;
}

.open-day {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.open-day h3 {
  color: var(--green);
}
.open-day > div {
  display: flex;
  min-height: 75px;
  align-items: center;
  gap: 23px;
}
.open-day img {
  width: 59px;
  height: 64px;
  object-fit: contain;
}
.open-day p {
  display: grid;
  letter-spacing: -0.02em;
}
.open-day strong {
  color: var(--green);
  font-family: "Roboto Slab", serif;
  font-size: 36px;
  line-height: 1.2;
  white-space: nowrap;
}

.show-home-image {
  position: relative;
  height: 327px;
  margin-top: 36px;
  overflow: hidden;
}
.show-home-image picture {
  display: block;
}
.show-home-image picture img {
  position: absolute;
  top: -18px;
  left: 0;
  display: block;
  width: 390px;
  max-width: none;
  height: 363px;
  object-fit: cover;
}
.show-home-image figcaption {
  position: absolute;
  top: 89px;
  left: 50%;
  width: 200px;
  padding: 12px 16px;
  transform: translateX(-50%);
  border-radius: 15px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.show-home-image .show-home-legend {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.697);
  border-radius: 14px;
  padding: 6px 12px;
}

.faq {
  margin-top: 92px;
  padding-block: 60px 69px;
  background: linear-gradient(234.276deg, rgba(100, 179, 44, 0.2) 7.68%, rgba(100, 179, 44, 0.1) 90.7%);
}
.faq details {
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.faq details[open] summary::after {
  transform: rotate(180deg);
}
.faq details p {
  padding: 0 20px 20px;
  white-space: pre-line;
}
.faq summary {
  position: relative;
  display: flex;
  min-height: 94px;
  align-items: center;
  padding: 20px 54px 20px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  position: absolute;
  right: 20px;
  width: 19px;
  height: 10px;
  background: url("assets/icons/faq-chevron.svg") center/contain no-repeat;
  content: "";
  transition: transform 0.2s ease;
}

.faq-heading {
  display: grid;
  justify-items: center;
  gap: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.faq-groups {
  display: grid;
  gap: 50px;
}
.faq-groups section {
  display: grid;
  gap: 15px;
}
.faq-groups h3 {
  margin-bottom: 13px;
  color: var(--green);
  font-size: 23px;
}

.contact {
  margin-top: 100px;
}

.contact-layout {
  display: grid;
  gap: 60px;
}

.contact-copy {
  display: grid;
  gap: 40px;
}
.contact-copy address {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  font-style: normal;
}
.contact-copy address .asp {
  padding-right: 20px;
}
.contact-copy address h3 {
  color: var(--green);
  font-size: 23px;
}
.contact-copy address p {
  font-size: 16px;
  letter-spacing: 0;
}
.contact-copy address a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}
.contact-copy address a:last-child {
  margin-bottom: 0;
}
.contact-copy address img {
  width: 50px;
  height: 35px;
  object-fit: contain;
}

.contact-form {
  display: flex;
  min-height: 655px;
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
  padding: 30px 20px;
  border-radius: 30px;
  background: var(--green-fond);
  box-shadow: var(--shadow);
  font-size: 16px;
  letter-spacing: 0;
}
.contact-form label:not(.check) {
  display: grid;
  gap: 2px;
}
.contact-form input:not([type=checkbox]),
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--white);
  border-radius: 5px;
  background: var(--white);
  font: inherit;
}
.contact-form input:not([type=checkbox]) {
  height: 45px;
}
.contact-form input[type=submit] {
  font-family: "Roboto Slab", Georgia, serif;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
}
.contact-form input[type=submit]:hover, .contact-form input[type=submit]:focus-visible {
  background: var(--green-dark);
}
.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}
.contact-form .button {
  align-self: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
}
.check input {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin: 0;
  accent-color: var(--green);
}

.privacy {
  font-size: 16px;
  font-weight: 400;
}

.site-footer {
  display: flex;
  width: min(100% - 30px, var(--page));
  margin: 60px auto;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.site-footer nav {
  display: flex;
  gap: 20px;
}
.site-footer nav a {
  text-decoration: none;
}
.site-footer > img {
  width: 250px;
  min-width: 250px;
  object-fit: contain;
}

@media (max-width: 1099px) {
  .energy {
    padding-bottom: 99px;
  }

  .intro .section-copy {
    height: auto;
  }

  .equipment .section-copy {
    height: auto;
  }

  .contact-form textarea {
    height: 118px;
  }
  .contact-form > .form-grid + label {
    margin-top: -5px;
  }
  .contact-form > label:not(.check) + label:not(.check) {
    margin-top: -5px;
  }
  .contact-form > .privacy {
    margin-top: 5px;
  }
  .contact-form > .button {
    margin-top: -5px;
  }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .page-width {
    width: min(100% - 60px, 760px);
  }

  .equipment,
.plans {
    width: min(100% - 60px, 760px);
  }

  .hero-media {
    height: min(70vw, 540px);
  }
  .hero-media img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-plan,
.location-map,
.show-home-image {
    width: min(100% - 60px, 760px);
    margin-inline: auto;
  }

  .location-map img,
.show-home-image picture img {
    left: 50%;
    width: auto;
    min-width: 100%;
    transform: translateX(-50%);
    object-fit: cover;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-form {
    min-height: auto;
  }
}
@media (min-width: 1100px) {
  .site-header {
    height: 75px;
    padding: 0 max(25px, (100vw - var(--page)) / 2);
    background: rgba(255, 255, 255, 0.69);
    backdrop-filter: blur(10px);
  }

  .logo-link img {
    width: 250px;
  }

  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .desktop-nav a {
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .desktop-nav > a:not(.button):hover, .desktop-nav > a:not(.button):focus-visible {
    color: var(--green);
  }
  .desktop-nav .button {
    min-height: 40px;
    font-size: 18px;
  }
  .desktop-nav .button:hover, .desktop-nav .button:focus-visible {
    background: var(--green);
  }

  .hero-copy {
    padding-block: 64px 43px;
  }
  .hero-copy p {
    width: auto;
    margin-top: 28px;
    font-size: 32px;
  }

  .hero h1 {
    font-size: 64px;
    line-height: 1.1;
  }

  .hero-media {
    width: 1202px;
    height: 635px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: var(--image-shadow);
  }
  .hero-media img {
    width: 100%;
    box-shadow: none;
  }

  .benefits {
    height: 571px;
    min-height: 571px;
    margin-top: -254px;
    padding-block: 318px 63px;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
  }
  .benefit-grid h2 {
    font-size: 20px;
  }

  .intro {
    padding-block: 120px 60px;
  }
  .intro .section-copy {
    width: 996px;
    height: 410px;
  }

  .site-plan {
    width: min(100%, 1237px);
    height: auto;
    margin-inline: auto;
    overflow: visible;
  }

  .equipment {
    width: 1200px;
    margin-top: 120px;
    gap: 60px;
  }
  .equipment .section-copy {
    width: 1111px;
    height: 333px;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  .gallery {
    aspect-ratio: 1200/769;
    grid-template-columns: 385fr 384fr 385fr;
    grid-template-rows: 243fr 245fr 243fr;
    column-gap: 23px;
    row-gap: 19px;
  }
  .gallery .gallery-item {
    border-radius: 30px;
  }

  .plans {
    width: 996px;
    margin-top: 120px;
    gap: 60px;
    padding-bottom: 73px;
  }

  .centered-copy {
    width: 591px;
    height: 203px;
    margin-inline: auto;
  }

  .comparison {
    height: 697px;
    border-radius: 30px;
  }

  .energy {
    height: 670px;
    padding-block: 120px;
  }
  .energy .section-copy {
    width: 1098px;
  }

  .energy-layout {
    gap: 30px;
  }

  .icon-list {
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 57px 45px;
  }
  .icon-list article {
    align-items: center;
  }
  .icon-list article > img {
    flex-basis: 108px;
    width: 108px;
    height: 108px;
  }

  .quote {
    min-height: 0;
    width: 1200px;
    height: auto;
    margin-inline: auto;
    padding: 60px;
    border-radius: 30px;
  }
  .quote blockquote {
    width: 748px;
  }

  .quote-inner {
    width: 1080px;
    max-width: none;
    flex-direction: row;
    gap: 60px;
  }
  .quote-inner > img {
    flex: 0 0 272px;
    width: 272px;
    height: 272px;
  }

  .rent {
    margin-top: 136px;
    padding-block: 60px;
  }
  .rent .section-copy {
    width: 988px;
  }

  .rent-layout {
    gap: 60px;
  }

  .facts {
    grid-template-columns: 205px 200px 185px 200px 255px;
    gap: 34px;
  }
  .facts > div {
    min-height: 128px;
  }
  .facts dt {
    font-size: 36px;
  }

  .location {
    margin-top: 120px;
  }

  .location-intro {
    width: 996px;
    height: 197px;
    margin-bottom: 30px;
  }

  .location-map {
    width: 1200px;
    height: 772px;
    margin-inline: auto;
    overflow: visible;
  }
  .location-map img {
    top: -18px;
    left: -18px;
    width: 1236px;
    height: 808px;
  }

  .location-body {
    gap: 40px;
    padding-top: 30px;
  }

  .poi-list {
    grid-template-columns: repeat(7, auto);
    justify-content: space-between;
    gap: 0;
    font-size: 18px;
  }

  .location-copy {
    width: 996px;
    gap: 27px;
  }

  .show-home {
    position: relative;
    width: 1200px;
    min-height: 534px;
    margin: 125px auto 0;
  }
  .show-home > .page-width {
    width: 545px;
    margin-left: 0;
  }
  .show-home .section-copy {
    width: 545px;
  }

  .open-day {
    width: 535px;
    margin-top: 30px;
  }

  .show-home-image {
    position: absolute;
    top: -5px;
    right: 0;
    width: 590px;
    height: 534px;
    margin: 0;
    overflow: visible;
    object-fit: cover;
  }
  .show-home-image picture img {
    top: -18px;
    left: -18px;
    width: 626px;
    height: 570px;
  }
  .show-home-image figcaption {
    top: 178px;
    width: 320px;
    font-size: 32px;
  }

  .faq {
    margin-top: 115px;
    padding-block: 60px 69px;
  }
  .faq summary {
    min-height: 67px;
  }

  .faq-groups {
    width: 793px;
    margin-inline: auto;
  }
  .faq-groups section {
    gap: 15px;
  }

  .contact {
    margin-top: 100px;
  }

  .contact-layout {
    grid-template-columns: 589px 590px;
    align-items: center;
    gap: 21px;
  }

  .contact-copy {
    gap: 40px;
  }
  .contact-copy address .asp {
    width: calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
  .contact-copy address img {
    width: 33px;
    height: 35px;
    margin-right: 15px;
  }
  .contact-copy address img.phone {
    width: 52px;
    height: 35px;
    margin-right: 0;
  }
  .contact-copy address a {
    font-size: 23px;
  }

  .contact-form {
    position: relative;
    display: block;
    height: 568px;
    min-height: 568px;
    padding: 30px;
  }
  .contact-form > .check:first-child {
    position: absolute;
    top: 30px;
    right: 30px;
    left: 30px;
  }
  .contact-form > .check:nth-child(2) {
    position: absolute;
    top: 82px;
    right: 30px;
    left: 30px;
  }
  .contact-form > .form-grid {
    position: absolute;
    top: 134px;
    right: 30px;
    left: 30px;
  }
  .contact-form > .form-grid + label {
    position: absolute;
    top: 225px;
    right: 30px;
    left: 30px;
  }
  .contact-form > label:not(.check) + label:not(.check) {
    position: absolute;
    top: 316px;
    right: 30px;
    left: 30px;
  }
  .contact-form textarea {
    height: 118px;
  }
  .contact-form > .privacy {
    position: absolute;
    top: 490px;
    left: 30px;
    width: 357px;
  }
  .contact-form > .button {
    position: absolute;
    top: 491px;
    right: 30px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 212px 1fr auto;
    margin: 100px auto 60px;
    align-items: center;
    gap: 133px;
    text-align: left;
  }
  .site-footer nav {
    grid-column: 3;
    grid-row: 1;
  }
  .site-footer > img {
    grid-column: 1;
    grid-row: 1;
  }
  .site-footer > p {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 389px) {
  body {
    font-size: 17px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 39px;
  }
  .hero .hero-media-legend {
    bottom: 10px;
    right: 10px;
  }

  .equipment,
.plans {
    margin: 60px auto 30px;
    padding-bottom: 0;
  }

  .energy {
    padding-block: 60px;
  }

  .location-map img,
.show-home-image picture img {
    left: 50%;
    transform: translateX(-50%);
  }

  .benefit-grid {
    gap: 20px 12px;
  }
  .benefit-grid img {
    width: 92px;
    height: 92px;
  }

  .open-day strong {
    font-size: 30px;
  }

  .contact-copy address a {
    font-size: 15px;
  }
}
#cookiebar {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(3px);
  position: fixed;
  z-index: 10000;
  width: 100%;
  margin: 0;
  padding: 10px;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  text-align: center;
}

#cookiebar_btn {
  min-width: 4em;
  min-height: 2.4em;
  margin-left: 1em;
}
