@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alessandria";
  src: url("/assets/fonts/alessandria.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #1d70b7;
  --blue-button: #3d78bc;
  --orange: #e15124;
  --ink: #171717;
  --muted: #6f6f6f;
  --surface: #f4f4f4;
  --surface-2: #f3f3f3;
  --line: #dfdfdf;
  --container: 1140px;
  --header-height: 142px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

ul {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: 0 0 auto;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button .icon {
  width: 15px;
  height: 15px;
}

.button--outline {
  color: #111;
  border-color: #151515;
  background: #fff;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.button--blue {
  color: #fff;
  background: var(--blue-button);
}

.button--blue:hover,
.button--blue:focus-visible {
  background: #2e68aa;
}

.button--warm {
  color: #171717;
  border-color: #bc6a45;
  background: transparent;
}

.button--warm:hover,
.button--warm:focus-visible {
  color: #fff;
  background: #bc6a45;
}

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  background: #fff;
}

.topbar {
  height: 50px;
  background: #f4f4f4;
}

.topbar__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 400;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__contact .icon {
  color: var(--blue);
  font-size: 16px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #2f2f2f;
  transition: color 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--blue);
}

.topbar__socials {
  justify-self: center;
  gap: 13px;
}

.topbar__brand {
  justify-self: end;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mainnav {
  position: relative;
  height: 92px;
  background: #fff;
}

.mainnav__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 220px 1fr 195px;
  align-items: center;
  gap: 38px;
}

.brand {
  display: block;
  width: 174px;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  padding-block: 34px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-trigger {
  width: 195px;
  min-height: 40px;
}

.contact-trigger__short {
  display: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  height: 720px;
  place-items: center;
  color: #fff;
  background: url("/assets/img/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 50, 75, 0.13);
}

.hero__content {
  position: relative;
  width: min(1000px, calc(100% - 40px));
  margin-top: -2px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(22, 49, 69, 0.18);
}

.hero__eyebrow {
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
}

.hero__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 25px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1;
}

.hero h1 span {
  display: block;
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 strong {
  position: relative;
  display: block;
  margin-top: -3px;
  font-family: "Alessandria", cursive;
  font-size: clamp(88px, 9vw, 126px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.95;
}

.hero__meta {
  margin: 23px 0 0;
  font-size: 23px;
  font-weight: 300;
}

.section-title {
  position: relative;
  margin: 0 0 52px;
  padding-left: 24px;
  color: #111;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--blue);
  content: "";
}

.section-title span,
.section-title strong {
  display: block;
}

.section-title span {
  font-weight: 300;
}

.section-title strong {
  font-weight: 400;
}

.residence {
  min-height: 1419px;
  padding: 100px 0 82px;
  background: #fff;
}

.residence__grid {
  display: grid;
  grid-template-columns: 470px 570px;
  justify-content: space-between;
  gap: 50px;
}

.residence__copy {
  padding-top: 17px;
}

.residence__copy .section-title {
  max-width: 420px;
}

.residence__copy p {
  margin-bottom: 18px;
  color: #454545;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.residence__copy blockquote {
  margin: 48px 0 0 145px;
  color: #444;
  font-size: 14px;
  font-style: italic;
  line-height: 2.25;
}

.residence-gallery {
  display: grid;
  grid-auto-flow: row dense;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.residence-gallery__item {
  position: relative;
  display: block;
  min-height: 158px;
  overflow: hidden;
  background: #eee;
}

.residence-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.residence-gallery__item:hover img,
.residence-gallery__item:focus-visible img {
  filter: brightness(0.92);
  transform: scale(1.025);
}

.residence-gallery__item--1,
.residence-gallery__item--2 {
  height: 189px;
}

.residence-gallery__item--3,
.residence-gallery__item--4 {
  height: 192px;
}

.residence-gallery__item--5,
.residence-gallery__item--6 {
  height: 190px;
}

.residence-gallery__item--7,
.residence-gallery__item--8 {
  height: 206px;
}

.residence-gallery__item--9,
.residence-gallery__item--10 {
  height: 158px;
}

.residence-gallery__item--11,
.residence-gallery__item--12 {
  height: 176px;
}

.brochure-button {
  width: 100%;
  margin-top: 10px;
}

.specifications {
  position: relative;
  height: 686px;
  color: #fff;
  background: #f4f4f4 url("/assets/img/prestations.webp") center center / cover no-repeat;
}

.specifications__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 17, 15, 0.47);
}

.specifications__inner {
  position: relative;
  padding-top: 95px;
}

.specifications .section-title {
  color: #fff;
}

.specifications__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}

.specifications ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 2px;
  list-style: none;
}

.specifications li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.specifications li .icon {
  color: var(--blue);
  font-size: 18px;
}

.bastia {
  min-height: 1001px;
  padding: 70px 0;
  background: #fff;
}

.bastia__grid {
  display: grid;
  grid-template-columns: 520px 580px;
  justify-content: space-between;
  gap: 40px;
}

.bastia__copy {
  padding-top: 152px;
}

.bastia__copy .section-title {
  margin-bottom: 38px;
}

.bastia__copy h3 {
  margin-bottom: 26px;
  color: #b0b0b0;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bastia__copy p {
  margin-bottom: 16px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.bastia__images {
  display: grid;
  gap: 20px;
}

.bastia__images img {
  width: 100%;
  height: 435px;
  object-fit: cover;
}

.bastia__images img:last-child {
  height: 387px;
}

.location {
  min-height: 690px;
  padding: 0 0 70px;
  background: #fff;
}

.location__grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  align-items: center;
  gap: 40px;
}

.location__map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

.location__copy {
  padding: 24px 0 0 0;
}

.location__copy .section-title {
  margin-bottom: 38px;
}

.location__copy ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: #9a9a9a;
  list-style: none;
}

.location__copy li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.location__copy .icon {
  color: var(--blue);
  font-size: 18px;
}

.lots-block {
  min-height: 444px;
  padding: 70px 0;
  background: var(--surface-2);
}

.lots-block--second {
  border-top: 1px solid #e9e9e9;
}

.lots-block .section-title {
  margin-bottom: 40px;
}

.accordions {
  border-top: 1px solid var(--line);
}

.accordion {
  margin: 0;
}

.accordion h3 {
  margin: 0;
}

.accordion__trigger {
  display: grid;
  width: 100%;
  min-height: 48px;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 10px 24px 10px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}

.accordion__trigger:hover,
.accordion__trigger:focus-visible,
.accordion__trigger[aria-expanded="true"] {
  color: #fff;
  background: #3e3e3e;
  outline-color: #d6a62d;
}

.accordion__trigger .icon {
  color: var(--blue);
  transition: transform 0.25s ease;
}

.accordion__trigger[aria-expanded="true"] .icon {
  color: #fff;
  transform: rotate(90deg);
}

.accordion__panel {
  padding: 6px 0 14px;
}

.lot-row {
  display: grid;
  grid-template-columns: 1fr 155px;
  align-items: stretch;
  gap: 12px;
  margin: 5px 0;
  padding: 16px;
  background: #fbfbfb;
}

.lot-row__facts {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.65fr 0.65fr 0.7fr 0.85fr 0.9fr;
  gap: 13px;
  margin: 0;
}

.lot-row__facts div {
  min-width: 0;
}

.lot-row dt {
  overflow: hidden;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lot-row dd {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

.lot-row__button {
  align-self: center;
  border-color: #171717;
  background: #fff;
  white-space: nowrap;
}

.lot-row__button:hover,
.lot-row__button:focus-visible {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.virtual-tours {
  min-height: 578px;
  padding: 78px 0 68px;
  background: #fff;
}

.virtual-tours .section-title {
  margin-bottom: 50px;
}

.virtual-tours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tour-card {
  display: grid;
  grid-template-rows: 205px auto;
  gap: 17px;
}

.tour-card > a:first-child {
  display: block;
  overflow: hidden;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.tour-card:hover img {
  transform: scale(1.02);
}

.tour-card .button {
  width: 100%;
}

.architect {
  min-height: 770px;
  padding: 94px 0 76px;
  background: #f5f5f5;
}

.architect__grid {
  display: grid;
  grid-template-columns: 550px 1fr;
  align-items: center;
  gap: 50px;
}

.architect__image {
  width: 550px;
  height: 550px;
  object-fit: cover;
}

.architect__copy .section-title {
  margin-bottom: 47px;
}

.architect__copy p {
  margin-bottom: 20px;
  color: #393939;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.brandizi-plus {
  display: grid;
  min-height: 621px;
  place-items: center;
  background: url("/assets/img/brandizi-interieur.jpg") center center / cover no-repeat;
}

.brandizi-plus__panel {
  display: grid;
  width: min(980px, calc(100% - 40px));
  min-height: 401px;
  grid-template-columns: 332px 1fr;
  align-items: center;
  gap: 55px;
  padding: 50px 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
}

.brandizi-plus .section-title {
  margin-bottom: 52px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brandizi-plus__list h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.brandizi-plus__list p {
  margin-bottom: 12px;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.footer-main {
  min-height: 208px;
  padding: 52px 0 42px;
  background: #f4f4f4;
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 255px 230px 1fr;
  align-items: center;
  gap: 72px;
}

.footer-logo {
  width: 205px;
}

.footer-main h2 {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 400;
}

.footer-social .socials {
  gap: 20px;
}

.footer-social .socials a {
  width: 20px;
  height: 20px;
  color: #080808;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 18px;
}

.newsletter input {
  width: 100%;
  min-height: 47px;
  padding: 11px 17px;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  color: #333;
  background: #fff;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: #bbb;
}

.newsletter .button {
  min-height: 47px;
}

.footer-bottom {
  display: grid;
  min-height: 80px;
  place-items: center;
  padding: 15px 0 12px;
  color: #999;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.footer-bottom nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 10px;
}

.modal,
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
}

.modal[hidden],
.lightbox[hidden],
.cookie-banner[hidden],
.mobile-menu[hidden],
.accordion__panel[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1150px, calc(100% - 80px));
  max-height: min(80vh, 760px);
  overflow: auto;
  background: #fff;
  transform: translate(-50%, -50%);
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 9px;
  width: 44px;
  height: 44px;
  border: 1px solid #e8a12c;
  border-radius: 2px;
  color: #fff;
  background: #bc5622;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
}

.modal__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(80vh, 720px);
}

.modal__intro {
  padding: 0 51px 12px;
  overflow: auto;
}

.modal__intro > h2 {
  margin-bottom: -2px;
  padding-right: 38px;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal__intro > p {
  margin-bottom: 37px;
  color: #555;
  font-size: 19px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  color: #333;
  background: #fff;
  font-size: 14px;
}

.contact-form input:not([type="checkbox"]) {
  min-height: 42px;
}

.contact-form textarea {
  resize: vertical;
}

.lot-request {
  display: grid;
  gap: 6px;
}

.lot-request[hidden] {
  display: none;
}

.lot-request span {
  color: #555;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form .lot-request input {
  color: #315d8d;
  background: #eef3f8;
  font-weight: 700;
}

.acceptance {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 8px;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
}

.acceptance input {
  width: 14px;
  height: 14px;
  margin: 4px 0 0;
}

.button--submit {
  width: 100%;
  min-height: 43px;
  border-color: #111;
  background: #fff;
  font-size: 14px;
}

.button--submit:hover,
.button--submit:focus-visible {
  color: #fff;
  background: #111;
}

.modal__visual {
  min-height: 100%;
  background: url("/assets/img/gallery/vue-nuit.webp") center center / cover no-repeat;
}

.modal__contacts {
  display: grid;
  gap: 12px;
  margin: 44px 0 0;
  padding: 34px 0 0;
  border-top: 2px solid #bc6a45;
  list-style: none;
}

.modal__contacts li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.modal__contacts .icon {
  margin-top: 3px;
  color: var(--orange);
}

.lightbox {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  place-items: center;
  padding: 40px;
  color: #fff;
  background: rgba(9, 15, 22, 0.96);
}

.lightbox figure {
  display: grid;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 80px);
  margin: 0;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-height: calc(100vh - 130px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 42px;
}

.lightbox__nav {
  font-size: 64px;
}

.cookie-banner {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: min(470px, calc(100% - 48px));
  padding: 28px;
  border-top: 3px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.22);
}

.cookie-banner h2 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
}

.cookie-banner p {
  margin-bottom: 18px;
  color: #555;
  font-size: 13px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner__actions a {
  font-size: 12px;
  text-decoration: underline;
}

.cookie-banner__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.page-hero {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: #fff;
  background: linear-gradient(rgba(25, 62, 89, 0.42), rgba(25, 62, 89, 0.42)), url("/assets/img/hero.jpg") center 48% / cover no-repeat;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.prose {
  max-width: 980px;
  padding-top: 90px;
  padding-bottom: 110px;
  color: #383838;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  margin: 42px 0 16px;
  color: #161616;
  font-weight: 400;
  line-height: 1.25;
}

.prose h1 {
  font-size: 34px;
}

.prose h2 {
  padding-left: 15px;
  border-left: 3px solid var(--blue);
  font-size: 27px;
}

.prose h3 {
  font-size: 21px;
}

.prose p,
.prose li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.85;
}

.prose ul {
  padding-left: 24px;
}

.prose--center {
  min-height: 420px;
  text-align: center;
}

.prose--center p {
  margin-bottom: 30px;
  font-size: 18px;
}

.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 70px;
}

.legacy-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.internal-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-top: 70px;
  padding: 55px;
  background: #f5f5f5;
}

.internal-contact h2 {
  padding-left: 0;
  border: 0;
}

.internal-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.internal-contact .icon {
  margin-top: 5px;
  color: var(--orange);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --container: 940px;
  }

  .mainnav__inner {
    grid-template-columns: 170px 1fr 175px;
    gap: 20px;
  }

  .brand {
    width: 150px;
  }

  .desktop-nav {
    gap: 23px;
  }

  .contact-trigger {
    width: 175px;
  }

  .residence__grid,
  .bastia__grid,
  .location__grid {
    grid-template-columns: 1fr 1fr;
  }

  .architect__grid {
    grid-template-columns: 1fr 1fr;
  }

  .architect__image {
    width: 100%;
    height: auto;
  }

  .footer-main__inner {
    grid-template-columns: 190px 190px 1fr;
    gap: 35px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 164px;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 40px, 720px);
  }

  .topbar {
    height: 86px;
  }

  .topbar__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .topbar__contact {
    display: none;
  }

  .topbar__brand {
    order: 2;
    align-self: center;
    font-size: 11px;
    line-height: 1;
  }

  .topbar__socials {
    order: 1;
  }

  .mainnav {
    height: 78px;
  }

  .mainnav__inner {
    grid-template-columns: 118px 52px 1fr;
    gap: 12px;
  }

  .brand {
    width: 77px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 52px;
    height: 52px;
    padding: 14px;
    border: 0;
    place-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: #111;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .contact-trigger {
    width: auto;
    min-width: 125px;
    justify-self: end;
    padding-inline: 16px;
  }

  .contact-trigger__long {
    display: none;
  }

  .contact-trigger__short {
    display: inline;
  }

  .mobile-menu {
    position: absolute;
    z-index: 45;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
  }

  .mobile-menu a {
    padding: 13px 10px;
    border-bottom: 1px solid #e4e4e4;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
  }

  .hero {
    height: 506px;
    background-position: center center;
  }

  .hero__content {
    margin-top: -4px;
  }

  .hero__eyebrow {
    margin-bottom: 23px;
    font-size: 15px;
  }

  .hero__rule {
    width: 20px;
    margin-bottom: 29px;
  }

  .hero h1 span {
    font-size: 28px;
    line-height: 1;
  }

  .hero h1 strong {
    margin-top: -1px;
    font-size: 49px;
  }

  .hero__meta {
    margin-top: 47px;
    font-size: 13px;
  }

  .section-title {
    margin-bottom: 39px;
    padding-left: 21px;
    font-size: 25px;
    line-height: 1.2;
  }

  .residence {
    min-height: 2846px;
    padding: 50px 0 352px;
  }

  .residence__grid {
    display: block;
  }

  .residence__copy {
    padding-top: 0;
  }

  .residence__copy .section-title {
    margin-left: 25px;
  }

  .residence__copy p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .residence__copy blockquote {
    margin: 40px 0 52px 38px;
    font-size: 13px;
    line-height: 2;
  }

  .residence-gallery {
    gap: 7px;
  }

  .residence-gallery__item--1,
  .residence-gallery__item--2,
  .residence-gallery__item--3,
  .residence-gallery__item--4,
  .residence-gallery__item--5,
  .residence-gallery__item--6,
  .residence-gallery__item--7,
  .residence-gallery__item--8,
  .residence-gallery__item--9,
  .residence-gallery__item--10,
  .residence-gallery__item--11,
  .residence-gallery__item--12 {
    height: 190px;
  }

  .brochure-button {
    min-height: 43px;
    margin-top: 7px;
  }

  .specifications {
    height: auto;
    min-height: 1008px;
    padding-bottom: 70px;
    background-position: 50% center;
  }

  .specifications__inner {
    padding-top: 78px;
  }

  .specifications__columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .specifications ul {
    gap: 12px;
  }

  .specifications li {
    font-size: 14px;
  }

  .bastia {
    min-height: 1674px;
    padding: 78px 0 70px;
  }

  .bastia__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bastia__copy {
    padding-top: 0;
  }

  .bastia__copy h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .bastia__copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .bastia__images {
    gap: 12px;
  }

  .bastia__images img,
  .bastia__images img:last-child {
    height: 290px;
  }

  .location {
    min-height: 1088px;
    padding: 0 0 75px;
  }

  .location__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 55px;
  }

  .location__map,
  .location__copy {
    width: 100%;
  }

  .location__map iframe {
    height: 520px;
  }

  .location__copy {
    padding-top: 74px;
  }

  .location__copy li {
    gap: 12px;
    font-size: 14px;
  }

  .lots-block {
    min-height: 424px;
    padding: 70px 0;
  }

  .lots-block .section-title {
    margin-bottom: 43px;
    font-size: 24px;
    letter-spacing: 0.7px;
  }

  .lots-block .accordions {
    margin-inline: -10px;
  }

  .accordion__trigger {
    min-height: 48px;
    padding-inline: 15px;
    font-size: 14px;
  }

  .lot-row {
    display: block;
    margin: 10px 14px;
    padding: 16px 30px 22px;
  }

  .lot-row__facts {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .lot-row__facts div {
    display: grid;
    gap: 3px;
  }

  .lot-row dt,
  .lot-row dd {
    font-size: 14px;
  }

  .lot-row dt {
    margin-top: 0;
  }

  .lot-row__button {
    width: 100%;
    margin-top: 18px;
  }

  .virtual-tours {
    min-height: 1108px;
    padding: 80px 0;
  }

  .virtual-tours__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .tour-card {
    grid-template-rows: 190px auto;
    gap: 10px;
  }

  .architect {
    min-height: 1237px;
    padding: 80px 0;
  }

  .architect__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .architect__image {
    width: 100%;
    height: auto;
  }

  .architect__copy p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .brandizi-plus {
    min-height: 1281px;
    padding: 80px 0;
  }

  .brandizi-plus__panel {
    width: min(100% - 40px, 720px);
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 50px 32px;
    border-radius: 15px;
  }

  .brandizi-plus__list h3 {
    font-size: 18px;
  }

  .brandizi-plus__list p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-main {
    min-height: 534px;
    padding: 55px 0;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 38px;
    text-align: center;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-social .socials {
    justify-content: center;
  }

  .footer-newsletter {
    width: 100%;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    min-height: 125px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .modal__panel {
    width: calc(100% - 78px);
    max-height: 90vh;
  }

  .modal__columns {
    display: block;
    min-height: auto;
  }

  .modal__intro {
    max-height: 90vh;
    padding: 38px 21px 28px;
  }

  .modal__intro > h2 {
    font-size: 24px;
  }

  .modal__intro > p {
    font-size: 16px;
  }

  .modal__visual {
    display: none;
  }

  .modal__contacts {
    margin-top: 38px;
    padding: 28px 0 8px;
  }

  .modal__close {
    top: 6px;
    right: 7px;
    width: 38px;
    height: 38px;
  }

  .lightbox {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding: 25px 5px;
  }

  .lightbox__nav {
    font-size: 45px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 24px 20px;
  }

  .page-hero {
    min-height: 250px;
  }

  .prose {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .prose h2 {
    font-size: 23px;
  }

  .legacy-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .legacy-gallery img {
    height: 170px;
  }

  .internal-contact {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px 20px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 40px);
  }

  .contact-trigger {
    min-width: 125px;
  }

  .hero__content {
    width: calc(100% - 20px);
  }

  .residence-gallery__item--1,
  .residence-gallery__item--2,
  .residence-gallery__item--3,
  .residence-gallery__item--4,
  .residence-gallery__item--5,
  .residence-gallery__item--6,
  .residence-gallery__item--7,
  .residence-gallery__item--8,
  .residence-gallery__item--9,
  .residence-gallery__item--10,
  .residence-gallery__item--11,
  .residence-gallery__item--12 {
    height: 190px;
  }

  .location__map iframe {
    height: 490px;
  }

  .modal__panel {
    width: calc(100% - 78px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
