@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Abhaya Libre", serif;
  background: #f8f6f3;
  color: #1c1c1c;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: "Amatic SC", cursive;
  line-height: 1.15;
}

p {
  font-family: "Abhaya Libre", serif;
  font-weight: 300;
  line-height: 1.75;
  color: #6b6b6b;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: #f8f6f3;
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(28, 28, 28, 0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav__left, .nav__right {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__link {
  font-family: "Abhaya Libre", serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1c1c1c;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #1c1c1c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  background-color: #f8f6f3;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #1c1c1c;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav__overlay {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  background: #122e62;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1200;
}
.nav__overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav__overlay-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.nav__overlay-close:hover {
  opacity: 1;
}
.nav__overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav__overlay-link {
  font-family: "Amatic SC", cursive;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-style: italic;
  color: #ffffff;
  transition: opacity 0.35s ease;
}
.nav__overlay-link:hover {
  opacity: 0.55;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg {
  width: 92%;
  height: 79%;
  border-radius: 2rem;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 711px;
  margin: 0 auto 52px;
  padding: 0 40px;
  text-align: center;
  background-color: #f8f6f3;
  padding-top: 2rem;
  border-radius: 2rem 2rem 0 0;
}
.hero__title {
  font-family: "Amatic SC", cursive;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline;
  background-image: linear-gradient(transparent 60%, rgba(145, 174, 231, 0.22) 60%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.35s ease;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    font-size: 2rem;
    text-align: left;
  }
}
.hero__title:hover {
  background-size: 100% 100%;
}
.hero__desc {
  color: rgba(28, 28, 28, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .hero__desc {
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .hero__desc {
    font-size: 1.1rem;
  }
}
.hero__cta {
  display: inline-block;
  font-family: "Abhaya Libre", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 2px;
  transition: opacity 0.35s ease;
}
.hero__cta:hover {
  opacity: 0.55;
}

.services {
  padding: 100px 40px;
  background: #f8f6f3;
}
.services__grid {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 48px 40px;
  align-items: center;
}
.services__house {
  grid-column: 2;
  grid-row: 1/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__house-img {
  width: 100rem;
  max-width: 70rem;
  height: auto;
}
.services__item--tl {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  left: -6rem;
  top: 4rem;
  position: relative;
}
.services__item--tr {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  left: 9rem;
  top: 4rem;
  position: relative;
}
.services__item--br {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  left: 9rem;
  top: 2rem;
  position: relative;
}
.services__item-text {
  max-width: 59%;
}
.services__item-text h3 {
  font-family: "Abhaya Libre", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1c1c1c;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 0.83rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .services__item-text h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 1280px) {
  .services__item-text h3 {
    font-size: 1rem;
  }
}
@media (min-width: 1600px) {
  .services__item-text h3 {
    font-size: 1.5rem;
  }
}
.services__item-text h3 strong {
  background-color: rgba(145, 174, 231, 0.5);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.services__item-text h3 strong:hover {
  background-color: #91aee7;
  color: #ffffff;
}
.services__item-text p {
  line-height: 1.65;
  color: #6b6b6b;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .services__item-text p {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .services__item-text p {
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .services__item-text p {
    font-size: 1.1rem;
  }
}
.services__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: #1c1c1c;
  position: relative;
  margin-top: 7px;
}
.services__arrow::after {
  content: "";
  position: absolute;
  top: -3.5px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
}
.services__arrow--r::after {
  right: 0;
  transform: rotate(45deg);
}
.services__arrow--l::after {
  left: 0;
  transform: rotate(-135deg);
}
.services__arrow--l2::after {
  left: 0;
  transform: rotate(-135deg);
}

.gallery {
  background: #122e62;
  padding: 8rem 0 8rem 10rem;
  margin: 4rem 0;
}
.gallery__inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gallery__left {
  padding: 0 6rem;
}
.gallery__title {
  font-family: "Amatic SC", cursive;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  background-image: linear-gradient(transparent 60%, rgba(145, 174, 231, 0.22) 60%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.35s ease;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .gallery__title {
    font-size: 2.2rem;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .gallery__title {
    font-size: 2rem;
    text-align: left;
  }
}
.gallery__title:hover {
  background-size: 100% 100%;
}
.gallery__desc {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .gallery__desc {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .gallery__desc {
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .gallery__desc {
    font-size: 1.1rem;
  }
}
.gallery__cta {
  display: inline-block;
  font-family: "Abhaya Libre", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: opacity 0.35s ease;
}
.gallery__cta:hover {
  opacity: 0.6;
}
.gallery__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar {
  height: 6px;
}
.gallery__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}
.gallery__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}
.gallery__slide {
  flex: 0 0 min(340px, 78vw);
  height: 49vh;
  object-fit: cover;
  border-radius: 4px;
  scroll-snap-align: start;
  display: block;
  border-radius: 2rem;
}

.about {
  background: #f8f6f3;
}
.about__row {
  display: grid;
  align-items: stretch;
}
.about__row--img-left {
  grid-template-columns: 1fr 1fr;
  margin: 7rem 0;
}
.about__row--img-left .about__photo {
  border-radius: 0 3rem 3rem 0;
}
.about__row--img-right {
  grid-template-columns: 1fr 1fr;
  margin: 7rem 0;
}
.about__row--img-right .about__photo {
  border-radius: 3rem 0 0 3rem;
}
.about__photo {
  overflow: hidden;
  height: 540px;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__photo img:hover {
  transform: scale(1.03);
}
.about__text {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.about__text h2 {
  font-family: "Amatic SC", cursive;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 8px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .about__text h2 {
    font-size: 2.2rem;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .about__text h2 {
    font-size: 2rem;
    text-align: left;
  }
}
.about__text p {
  color: #6b6b6b;
  line-height: 1.8;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .about__text p {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .about__text p {
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .about__text p {
    font-size: 1.1rem;
  }
}

.contact {
  background: #122e62;
  padding: 80px 48px 60px;
  color: #ffffff;
}
.contact__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact__eyebrow {
  font-family: "Amatic SC", cursive;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-weight: 300;
}
.contact__title {
  font-family: "Amatic SC", cursive;
  font-weight: 600;
  color: #ffffff;
  text-align: center !important;
  margin-bottom: 18px;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 2.2rem;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .contact__title {
    font-size: 2rem;
    text-align: left;
  }
}
.contact__desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .contact__desc {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .contact__desc {
    font-size: 0.9rem;
  }
}
@media (min-width: 1600px) {
  .contact__desc {
    font-size: 1.1rem;
  }
}
.contact__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.contact__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.contact__social svg {
  width: 17px;
  height: 17px;
}
.contact__social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.contact__form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__field label {
  font-family: "Abhaya Libre", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contact__field input,
.contact__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0;
  font-family: "Abhaya Libre", serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #ffffff;
  outline: none;
  width: 100%;
  resize: none;
  transition: border-color 0.35s ease;
}
.contact__field input:focus,
.contact__field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}
.contact__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact__rgpd {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact__rgpd input[type=checkbox] {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  accent-color: #ffffff;
  cursor: pointer;
}
.contact__rgpd span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
}
.contact__btn {
  font-family: "Abhaya Libre", serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 32px;
  background: #ffffff;
  color: #122e62;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.contact__btn:hover {
  background: transparent;
  color: #ffffff;
}

.legal-page-body {
  background: #f8f6f3;
  color: #1c1c1c;
}

.legal-page {
  width: min(980px, 92%);
  margin: 48px auto 64px;
  background: #f2ede8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  line-height: 1.7;
}
.legal-page h1,
.legal-page h2,
.legal-page h3 {
  margin: 0 0 14px;
  line-height: 1.25;
}
.legal-page h1 {
  font-family: "Amatic SC", cursive;
  letter-spacing: 0.5px;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: #1c1c1c;
}
.legal-page .subtitle {
  color: #1c1c1c;
  margin: 0 0 26px;
  font-size: 1rem;
}
.legal-page section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.legal-page h2 {
  color: #1c1c1c;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  margin-bottom: 10px;
}
.legal-page p {
  margin: 0 0 12px;
  color: #1c1c1c;
  font-weight: 400;
}
.legal-page ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.legal-page li {
  margin-bottom: 6px;
}
.legal-page a {
  color: #f2ede8;
}

.legal-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.back-link {
  display: inline-block;
  color: #f2f2f2;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
}
.back-link:hover, .back-link:focus-visible {
  border-color: #f2ede8;
  color: #f2ede8;
  outline: none;
}

.identity-list {
  list-style: none;
  margin-left: 0;
}
.identity-list li {
  margin-bottom: 8px;
}
.identity-list strong {
  color: #1c1c1c;
}

.footer-signature {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  color: #c7c7c7;
  font-size: 0.95rem;
}

.footer {
  background: #122e62;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2ede8;
  padding: 48px 24px 20px;
}
.footer__inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__title {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #f2ede8;
  text-align: center;
}
.footer__subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  color: #f2ede8;
  text-align: center;
}
.footer__text {
  font-size: 0.95rem;
  color: rgba(242, 237, 232, 0.86);
  line-height: 1.7;
  max-width: 32ch;
  text-align: center;
}
.footer__list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer__list li {
  font-size: 0.92rem;
  color: rgba(242, 237, 232, 0.86);
  line-height: 1.5;
  text-align: center;
}
.footer a {
  color: #f2ede8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.footer a:hover {
  color: #f2ede8;
}
.footer a:focus-visible,
.footer button:focus-visible {
  outline: 3px solid #f2ede8;
  outline-offset: 3px;
  border-radius: 4px;
}
.footer__rgpd {
  margin-top: 12px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(242, 237, 232, 0.82);
  max-width: 44ch;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-made {
  color: #ffffff;
}

/* ── Laptop 1440 ── */
@media (max-width: 1440px) {
  .nav__inner {
    padding: 2rem 48px;
  }
  .services__house-img {
    width: 100rem;
    max-width: 52rem;
  }
  .services__item--tl {
    left: -1rem;
    top: 7rem;
  }
  .services__item--tr {
    left: 5rem;
    top: 4rem;
  }
  .services__item--br {
    left: 5rem;
    top: 4rem;
  }
  .gallery__left {
    padding: 0 4rem;
  }
  .gallery__slide {
    flex: 0 0 min(66%, 78vw);
    height: 71vh;
  }
}
/* ── Laptop 1280 ── */
@media (max-width: 1280px) {
  .hero__bg {
    width: 92%;
    height: 80%;
    border-radius: 3rem;
  }
  .services__grid {
    grid-template-columns: 1fr 260px 1fr;
    gap: 36px 28px;
  }
  .services__item--tl {
    left: -1rem;
    top: 4rem;
  }
  .services__item--tr {
    left: 5rem;
    top: 4rem;
  }
  .services__item--br {
    left: 5rem;
    top: 6rem;
  }
  .about__text {
    padding: 48px 52px;
  }
  .gallery__left {
    padding: 0 2rem;
  }
}
/* ── Tablette : ≤ 900px ── */
@media (max-width: 900px) {
  .nav__left,
  .nav__right {
    display: none;
  }
  .gallery {
    overflow-x: hidden;
  }
  .nav__burger {
    display: flex;
  }
  .nav__inner {
    padding: 14px 24px;
    justify-content: space-between;
  }
  .nav__logo {
    position: static;
    transform: none;
  }
  .hero__content {
    margin-bottom: 60px;
    padding: 3rem;
  }
  .hero__bg {
    width: 88%;
    height: 78%;
    border-radius: 3rem;
  }
  .services {
    padding: 72px 24px;
  }
  .services__arrow--r::after {
    right: 0;
    transform: rotate(45deg);
  }
  .services__arrow--l::after {
    right: 0;
    left: auto;
    transform: rotate(45deg);
  }
  .services__arrow--l2::after {
    right: 0;
    left: auto;
    transform: rotate(45deg);
  }
  .services__item--tl {
    left: 0;
    top: 0;
  }
  .services__item--tr {
    left: 0;
    top: 0;
  }
  .services__item--br {
    left: 0;
    top: 0;
  }
  .services__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 5rem;
  }
  .services__house {
    align-self: center;
    margin: 0 auto 40px;
    order: -1;
  }
  .services__house-img {
    max-width: 100%;
  }
  .services__item--tl,
  .services__item--tr,
  .services__item--br {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    width: 100%;
  }
  .services__item--tl .services__item-text,
  .services__item--tr .services__item-text,
  .services__item--br .services__item-text {
    max-width: 100%;
  }
  .services__item--tr,
  .services__item--br {
    border-top: 1px solid rgba(28, 28, 28, 0.15);
  }
  .services__item--tl {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  .services__arrow {
    width: 32px;
    margin-top: 6px;
  }
  .gallery {
    padding: 5rem 14px;
  }
  .gallery__inner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    overflow-x: hidden;
  }
  .gallery__left {
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery__title,
  .gallery__desc {
    text-align: center;
  }
  .gallery__right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .gallery__track {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 0 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .gallery__slide {
    flex: 0 0 76%;
    max-width: none;
    height: 280px;
  }
  .about {
    margin: 9rem 0;
  }
  .about .about__row {
    display: flex;
    flex-direction: column-reverse;
  }
  .about .about__row .about__text {
    padding: 40px 7rem;
    text-align: center;
  }
  .about__row--img-left,
  .about__row--img-right {
    grid-template-columns: 1fr;
  }
  .about__row--img-right {
    margin-top: 5rem;
  }
  .about__row--img-right .about__photo {
    order: -1;
    left: 7rem;
    border-radius: 3rem 0 0 3rem;
    position: relative;
  }
  .about__photo {
    height: 47vh;
    width: 89%;
    border-radius: 0 3rem 3rem 0;
  }
  .contact {
    padding: 64px 24px 48px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__list {
    display: flex;
    justify-content: center;
  }
}
/* ── Mobile : ≤ 768px ── */
@media (max-width: 768px) {
  .hero__content {
    margin: 5rem;
  }
  .gallery {
    padding: 6rem 20px;
  }
  .about__row--img-right .about__photo {
    left: 6rem;
  }
}
/* ── Mobile : ≤ 640px ── */
@media (max-width: 640px) {
  .hero__title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .hero__content {
    margin: 3rem;
  }
  .hero__desc {
    font-size: 0.78rem;
  }
  .services {
    padding: 56px 20px;
  }
  .services__grid {
    margin: 0 2rem;
  }
  .gallery {
    padding: 4.5rem 12px;
  }
  .gallery__left {
    padding: 0 6px;
  }
  .gallery__track {
    padding: 0 6px 10px;
  }
  .gallery__slide {
    flex-basis: 80%;
    max-width: none;
    height: 250px;
  }
  .about__row--img-right .about__photo {
    left: 5rem;
  }
  .about__photo {
    height: 320px;
  }
  .about__text {
    padding: 32px 20px;
  }
  .about__text h2 {
    font-size: 1.4rem;
  }
  .contact {
    padding: 56px 20px 40px;
  }
  .contact__two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact__desc {
    padding: 0 2rem;
  }
  .contact__form {
    padding: 0 3rem;
  }
  .contact__form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact__form-footer .contact__btn {
    align-self: flex-end;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__text {
    max-width: 100%;
  }
  .footer__list {
    display: flex;
    justify-content: center;
  }
}
/* ── Petit mobile : ≤ 480px ── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }
  .nav__inner {
    padding: 12px 16px;
  }
  .hero__bg {
    width: 85%;
    height: 76%;
    border-radius: 2rem;
  }
  .gallery {
    padding: 4rem 10px;
  }
  .gallery__left {
    padding: 0 4px;
  }
  .gallery__track {
    padding: 0 4px 10px;
  }
  .gallery__slide {
    flex-basis: 84%;
    max-width: none;
    height: 220px;
    border-radius: 1.2rem;
  }
  .gallery__title {
    text-align: center;
  }
  .contact__title {
    font-size: 1.9rem;
  }
  .contact__form {
    padding: 0 1rem;
  }
  .about .about__row .about__text {
    padding: 40px 3rem;
  }
  .about__row--img-right .about__photo {
    left: 3rem;
  }
}
/* ── Très petit mobile : ≤ 375px ── */
@media (max-width: 375px) {
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__bg {
    width: 87%;
    height: 76%;
  }
  .hero__content {
    margin: 0rem;
  }
  .gallery {
    padding: 3.5rem 8px;
  }
  .gallery__left {
    padding: 0 2px;
  }
  .gallery__track {
    padding: 0 2px 10px;
  }
  .gallery__slide {
    flex-basis: 88%;
    max-width: none;
    height: 200px;
  }
  .about__row--img-right .about__photo {
    left: 3rem;
  }
  .about__photo {
    height: 260px;
  }
  .about__text {
    padding: 28px 16px;
  }
  .footer__list {
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=style.css.map */
