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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Jost", sans-serif;
  color: #2a3540;
  background: #f8f6f2;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: "Jost", sans-serif;
}

.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #1a4a6b;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #6a7d8a;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn--primary {
  background: #c9a96e;
  color: #ffffff;
}
.btn--primary:hover {
  background: #b8924f;
  transform: translateY(-1px);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-weight: 400;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--ocean {
  border: 1px solid #1a4a6b;
  color: #1a4a6b;
}
.btn--ocean:hover {
  background: #1a4a6b;
  color: #ffffff;
}
.btn--gold-filled {
  background: #c9a96e;
  color: #ffffff;
  border: none;
}
.btn--gold-filled:hover {
  background: #b8924f;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.15s;
}
.reveal--delay-2 {
  transition-delay: 0.3s;
}
.reveal--delay-3 {
  transition-delay: 0.45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  transition: all 0.4s ease;
}
.nav--scrolled {
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 0.85rem 3rem;
}
.nav--scrolled .nav__logo {
  color: #1a4a6b;
}
.nav--scrolled .nav__link {
  color: #6a7d8a;
}
.nav--scrolled .nav__cta {
  border-color: #1a4a6b;
  color: #1a4a6b !important;
}
.nav__logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: color 0.4s;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #c9a96e !important;
}
.nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff !important;
  transition: all 0.3s ease !important;
}
.nav__cta:hover {
  background: #c9a96e !important;
  border-color: #c9a96e !important;
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav--scrolled {
    padding: 0.75rem 1.5rem;
  }
  .nav__links {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -15%;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 30, 50, 0.45) 0%,
      rgba(10, 30, 50, 0.2) 50%,
      rgba(10, 30, 50, 0.55) 100%
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1800&q=80")
      center/cover no-repeat;
  will-change: transform;
}
.hero__content {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0 2rem;
}
.hero__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}
.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollLine 2s 2s infinite;
}

.parallax {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax__bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax__text {
  position: relative;
  z-index: 2;
  padding: 3rem 5rem;
  max-width: 620px;
}
.parallax__text .section-title {
  color: #ffffff;
}
.parallax__text .section-body {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .parallax__text {
    padding: 2rem;
  }
}
.parallax__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  color: #ffffff;
  width: 100%;
}
.parallax__center .section-title {
  color: #ffffff;
  margin: 0 auto 1.5rem;
  max-width: 700px;
}
.parallax__center .section-body {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.parallax__text--right {
  margin-left: auto;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  .parallax__text--right {
    margin-right: 0;
  }
}
.parallax__quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.4;
  border-left: 2px solid #c9a96e;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.parallax--mer .parallax__bg {
  background-image:
    linear-gradient(
      to right,
      rgba(10, 30, 50, 0.75) 0%,
      rgba(10, 30, 50, 0.2) 100%
    ),
    url("https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=1800&q=80");
}

.parallax--piscine .parallax__bg {
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 30, 50, 0.3) 0%,
      rgba(10, 30, 50, 0.6) 100%
    ),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1800&q=80");
}

.parallax--paysage .parallax__bg {
  background-image:
    linear-gradient(
      135deg,
      rgba(10, 30, 50, 0.7) 0%,
      rgba(10, 30, 50, 0.3) 100%
    ),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=80");
}

.stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .stats {
    gap: 2rem;
  }
}
.stats__item {
  text-align: center;
}
.stats__number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #c9a96e;
  line-height: 1;
}
.stats__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.presentation {
  padding: 8rem 3rem;
  background: #f8f6f2;
}
.presentation__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .presentation__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.presentation__images {
  position: relative;
}
.presentation__image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.presentation__image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid #f8f6f2;
}
@media (max-width: 768px) {
  .presentation__image-accent {
    display: none;
  }
}
.presentation__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.presentation__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #2a3540;
}
.presentation__feature::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #c9a96e;
  flex-shrink: 0;
}

.galerie {
  padding: 6rem 3rem;
  background: #ffffff;
}
.galerie__header {
  text-align: center;
  margin-bottom: 4rem;
}
.galerie__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .galerie__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.galerie__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.galerie__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 74, 107, 0);
  transition: background 0.6s ease;
}
.galerie__item:hover::after {
  background: rgba(26, 74, 107, 0.2);
}
.galerie__item:hover img {
  transform: scale(1.04);
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galerie__item--1 {
  grid-column: 1/6;
  grid-row: 1/3;
  height: 400px;
}
.galerie__item--2 {
  grid-column: 6/9;
  grid-row: 1/2;
  height: 195px;
}
.galerie__item--3 {
  grid-column: 9/13;
  grid-row: 1/2;
  height: 195px;
}
.galerie__item--4 {
  grid-column: 6/10;
  grid-row: 2/3;
  height: 195px;
}
.galerie__item--5 {
  grid-column: 10/13;
  grid-row: 2/3;
  height: 195px;
}
@media (max-width: 768px) {
  .galerie__item--1,
  .galerie__item--2,
  .galerie__item--3,
  .galerie__item--4,
  .galerie__item--5 {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
}

.services {
  padding: 8rem 3rem;
  background: #f8f6f2;
}
.services__header {
  text-align: center;
  margin-bottom: 5rem;
}
.services__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 2px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 2px solid transparent;
}
.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 74, 107, 0.1);
  border-bottom-color: #c9a96e;
}
.services__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d4e8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
}
.services__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a4a6b;
  margin-bottom: 0.75rem;
}
.services__desc {
  font-size: 0.85rem;
  color: #6a7d8a;
  line-height: 1.75;
  font-weight: 300;
}

.tarifs {
  padding: 8rem 3rem;
  background: #ffffff;
}
.tarifs__header {
  text-align: center;
  margin-bottom: 5rem;
}
.tarifs__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .tarifs__grid {
    grid-template-columns: 1fr;
  }
}
.tarifs__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: #6a7d8a;
  font-weight: 300;
}
.tarifs__card {
  border: 1px solid #e0d8cc;
  border-radius: 2px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.tarifs__card--featured {
  background: #1a4a6b;
  border-color: #1a4a6b;
  color: #ffffff;
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .tarifs__card--featured {
    transform: none;
  }
}
.tarifs__card--featured .tarifs__saison {
  color: #c9a96e;
}
.tarifs__card--featured .tarifs__price {
  color: #ffffff;
}
.tarifs__card--featured .tarifs__unit {
  color: rgba(255, 255, 255, 0.6);
}
.tarifs__card--featured .tarifs__list li {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.15);
}
.tarifs__card--featured .btn--ocean {
  border-color: #c9a96e;
  background: #c9a96e;
  color: #ffffff;
}
.tarifs__card--featured .btn--ocean:hover {
  background: #b8924f;
}
.tarifs__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a96e;
  color: #ffffff;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.tarifs__saison {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}
.tarifs__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #1a4a6b;
  line-height: 1;
}
.tarifs__unit {
  font-size: 0.8rem;
  color: #6a7d8a;
  margin-bottom: 1.75rem;
}
.tarifs__list {
  margin-bottom: 2rem;
  text-align: left;
}
.tarifs__list li {
  font-size: 0.83rem;
  color: #6a7d8a;
  padding: 0.45rem 0;
  border-bottom: 1px solid #e0d8cc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 300;
}
.tarifs__list li::before {
  content: "—";
  color: #c9a96e;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.contact {
  padding: 8rem 3rem;
  background: #1a4a6b;
}
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__info .section-title {
  color: #ffffff;
}
.contact__info .section-body {
  color: rgba(255, 255, 255, 0.65);
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact__detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.25rem;
}
.contact__detail-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact__input,
.contact__textarea,
.contact__select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
  outline: none;
}
.contact__input::placeholder,
.contact__textarea::placeholder,
.contact__select::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  border-color: #c9a96e;
}
.contact__select option {
  background: #1a4a6b;
}
.contact__textarea {
  resize: none;
  height: 120px;
}
.contact__submit {
  padding: 1rem 2.5rem;
  background: #c9a96e;
  color: #ffffff;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.contact__submit:hover {
  background: #b8924f;
  transform: translateY(-1px);
}
.contact__submit--sent {
  background: #2e7d52;
  cursor: default;
}

.footer {
  background: #0e2535;
  padding: 3rem;
  text-align: center;
}
.footer__logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer__tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #c9a96e;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

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