:root{
  --bg:#f5f2ea;
  --bg-soft:#f7f3eb;
  --blue:#1f31d3;
  --blue-dark:#142995;
  --turquoise:#43cbc4;
  --gold:#ddb041;
  --orange:#d87b24;
  --text:#20348f;
  --white:#ffffff;
  --shadow:0 12px 34px rgba(12, 25, 92, 0.12);
  --radius:28px;
  --light-section:#efefef;
  --cream:#f6f2e8;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Cormorant Garamond", serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

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

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

button,
input,
textarea{
  font:inherit;
}

main,
section,
header,
footer{
  width:100%;
}

.container{
  width:min(100% - 24px, 1200px);
  margin:0 auto;
}

.narrow{
  width:min(100% - 32px, 980px);
}

/* HEADER */
header{
  position:relative;
  z-index:1000;
  background:rgba(245,242,234,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(31,49,211,0.08);
  height:180px;
}

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:start;
  width:100%;
  padding:10px 8px 0 12px;
  height:100%;
  position:relative;
}

.brand{
  display:block;
}

.brand-link{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
}

.logo{
  width:120px;
  height:auto;
  object-fit:contain;
}

.brand-name{
  font-family:"Parisienne", cursive;
  font-size:1.8rem;
  color:var(--gold);
  line-height:1;
  margin-top:2px;
}

.header-cta{
  display:none;
}

.burger{
  width:42px;
  height:42px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
  justify-self:end;
  margin-right:2px;
  z-index:2000;
}

.burger::before,
.burger::after,
.burger span{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  height:2px;
  background:var(--blue-dark);
  transition:0.3s ease;
}

.burger span{
  top:20px;
}

.burger::before{
  top:12px;
}

.burger::after{
  top:28px;
}

.burger.active span{
  opacity:0;
}

.burger.active::before{
  transform:rotate(45deg);
  top:20px;
}

.burger.active::after{
  transform:rotate(-45deg);
  top:20px;
}

nav{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  width:100%;
  display:none;
  flex-direction:column;
  background:var(--bg);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
  max-height:calc(100vh - 180px);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  z-index:1500;
}

nav a,
.submenu-toggle{
  display:block;
  width:100%;
  padding:16px 18px;
  text-align:left;
  color:var(--blue-dark);
  border-top:1px solid rgba(31,49,211,0.08);
  background:none;
  border-left:none;
  border-right:none;
  border-bottom:none;
  cursor:pointer;
  font-size:1.15rem;
  font-weight:600;
}

.submenu-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a:hover,
.submenu-toggle:hover,
nav a:focus-visible,
.submenu-toggle:focus-visible{
  color:#43cbc4;
  transition: 0.2s;
  outline:none;
}

.nav-current{
  color:var(--turquoise) !important;
}

.submenu{
  display:none;
  flex-direction:column;
  background:#ece7d9;
  max-height:260px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.submenu a{
  padding-left:30px;
  font-size:1rem;
}

.has-submenu.open .submenu{
  display:flex;
}

/* HERO */
.page-hero{
  position:relative;
  height:230px;
  overflow:hidden;
}

.page-hero__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.12);
}

.page-hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.page-hero__content h1{
  font-size:3rem;
  color:#fff;
  font-weight:600;
  line-height:1;
}

.page-hero--oracles{
  background:url("oracles-sandrine-huet\ \(2\).jpg") center center / cover no-repeat;
}

/* INTRO TURQUOISE */
.oracles-intro{
  position:relative;
  background:var(--turquoise);
  color:#fff;
  padding:36px 0 120px;
  overflow:hidden;
}

.oracles-intro::after{
  content:"";
  position:absolute;
  left:-8%;
  width:116%;
  bottom:-1px;
  height:72px;
  background:var(--light-section);
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
}

.oracles-intro__inner{
  display:grid;
  gap:18px;
  align-items:center;
  position:relative;
  z-index:2;
}

.oracles-intro__visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.oracles-intro__img{
  width:min(100%, 170px);
  height:auto;
  object-fit:contain;
}

.oracles-intro__text{
  text-align:left;
}

.oracles-intro__text h2{
  font-family:"Parisienne", cursive;
  color:var(--orange);
  font-size:2.6rem;
  line-height:0.95;
  margin-bottom:22px;
}

.oracles-intro__text p{
  font-size:1.3rem;
  line-height:1.3;
  color:#fff;
  font-weight:600;
  max-width:540px;
}

/* CONTENT */
.content-section{
  position:relative;
  padding:56px 0;
}

.content-section--light{
  background:var(--light-section);
}

.content-section--cream{
  background:var(--cream);
}

.section-title{
  font-family:"Parisienne", cursive;
  font-size:2.8rem;
  line-height:1;
  text-align:center;
  color:var(--blue);
  margin-bottom:34px;
}

.section-title--spaced{
  margin-top:46px;
}

.prose-wrap{
  position:relative;
}

.prose{
  font-size:1.1rem;
  line-height:1.45;
}

.prose p{
  margin-bottom:22px;
}

.prose h3{
  font-size:1.2rem;
  color:var(--turquoise);
  margin:28px 0 10px;
  font-weight:700;
}

.prose a{
  color:var(--orange);
  text-decoration:underline;
}

.star-deco{
  position:absolute;
  right:8px;
  top:420px;
  width:78px;
  height:78px;
  pointer-events:none;
}

.star-deco::before,
.star-deco::after{
  content:"";
  position:absolute;
  background:linear-gradient(135deg, #efd781, #c99e2c);
  clip-path:polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.star-deco::before{
  width:62px;
  height:62px;
  left:0;
  bottom:0;
}

.star-deco::after{
  width:28px;
  height:28px;
  right:0;
  top:0;
}

/* IMAGE WAVE */
.image-wave{
  position:relative;
  height:240px;
  overflow:hidden;
}

.image-wave__img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-wave--bottom::after{
  content:"";
  position:absolute;
  left:-8%;
  width:116%;
  bottom:-1px;
  height:72px;
  background:var(--cream);
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
}

/* TARIFS */
.tarifs-block{
  text-align:left;
}

.tarifs-block strong{
  font-weight:700;
}

.reservation-quote{
  text-align:center;
  color:var(--orange);
  font-size:1.35rem;
  line-height:1.3;
  max-width:760px;
  margin:36px auto 0;
}

.sun-block{
  display:flex;
  justify-content:center;
  margin-top:26px;
}

.sun-block__img{
  width:min(100%, 290px);
  height:auto;
  object-fit:contain;
}

.cta-center{
  text-align:center;
  margin-top:18px;
}

.pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  background:var(--gold);
  color:var(--blue-dark);
  font-size:1.2rem;
  font-weight:700;
  box-shadow:var(--shadow);
  transition:0.2s ease;
}

.pill-btn:hover,
.pill-btn:focus-visible{
  background:var(--blue-dark);
  color:var(--gold);
  outline:none;
}

/* FOOTER */
.footer-qui{
  padding-top: 25px;
  background-color: #1f31d3;
  color: white;
  padding-bottom: 42px;
}

.footer-qui__inner{
  display: grid;
  gap: 26px;
  align-items: end;
  text-align: center;
}

.footer-qui__links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}

.footer-qui__copy{
  font-size: 1rem;
  line-height: 1.5;
}

.footer-qui__brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-qui__brand img{
  width: 90px;
  height: auto;
}

.footer-qui__brand span{
  font-family: "Parisienne", cursive;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

/* TABLET */
@media (min-width:768px){
  .header-inner{
    min-height:96px;
    padding:14px 22px 0;
  }

  .page-hero{
    height:360px;
  }

  .page-hero__content h1{
    font-size:4.4rem;
  }

  .oracles-intro{
    padding:46px 0 130px;
  }

  .oracles-intro::after{
    height:94px;
  }

  .oracles-intro__inner{
    grid-template-columns:220px 1fr;
    gap:34px;
    align-items:center;
  }

  .oracles-intro__img{
    width:210px;
  }

  .oracles-intro__text h2{
    font-size:3.7rem;
    margin-bottom:18px;
  }

  .oracles-intro__text p{
    font-size:1.45rem;
    max-width:540px;
  }

  .content-section{
    padding:72px 0;
  }

  .section-title{
    font-size:4rem;
    margin-bottom:42px;
  }

  .prose{
    font-size:1.38rem;
    line-height:1.45;
  }

  .prose h3{
    font-size:1.6rem;
  }

  .image-wave{
    height:360px;
  }

  .image-wave--bottom::after{
    height:94px;
  }

  .reservation-quote{
    font-size:1.65rem;
    max-width:850px;
  }

  .sun-block__img{
    width:360px;
  }

  .pill-btn{
    font-size:1.3rem;
  }

 .footer-qui__inner{
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }

  .footer-qui__brand{
    align-items: flex-end;
  }
}

/* DESKTOP */
@media (min-width:1100px){
  header{
    height:auto;
  }

  .header-inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:end;
    column-gap:30px;
    padding:12px 28px 14px 28px;
  }

  .burger{
    display:none;
  }

  .header-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:52px;
    padding:0 24px;
    border-radius:999px;
    background:var(--gold);
    color:var(--blue-dark);
    font-size:1.25rem;
    font-weight:700;
    box-shadow:var(--shadow);
    transition:0.2s ease;
  }

  .header-cta:hover,
  .header-cta:focus-visible{
    background:var(--blue-dark);
    color:var(--gold);
    outline:none;
  }

  nav{
    position:static;
    display:flex !important;
    flex-direction:row;
    justify-self:center;
    align-self:end;
    gap:20px;
    background:transparent;
    box-shadow:none;
    width:max-content;
    max-width:100%;
    max-height:none;
    overflow:visible;
    margin-left:0;
  }

  nav a,
  .submenu-toggle{
    width:auto;
    border:none;
    padding:8px 6px;
    font-size:1.35rem;
  }

  .has-submenu{
    position:relative;
  }

  .submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    box-shadow:var(--shadow);
    border-radius:16px;
    overflow:hidden;
    max-height:none;
  }

  .submenu a{
    padding:12px 16px;
  }

  .has-submenu:hover .submenu{
    display:flex;
  }

  .page-hero{
    height:470px;
  }

  .page-hero__content h1{
    font-size:5.4rem;
  }

  .oracles-intro{
    padding:50px 0 140px;
  }

  .oracles-intro::after{
    height:112px;
  }

  .oracles-intro__inner{
    grid-template-columns:280px 1fr;
    gap:62px;
  }

  .oracles-intro__visual{
    justify-content:flex-end;
  }

  .oracles-intro__img{
    width:240px;
  }

  .oracles-intro__text{
    padding-top:6px;
  }

  .oracles-intro__text h2{
    font-size:4.4rem;
    margin-bottom:18px;
  }

  .oracles-intro__text p{
    font-size:1.2rem;
    line-height:1.35;
    max-width:510px;
  }

  .content-section{
    padding:86px 0;
  }

  .section-title{
    font-size:4.6rem;
  }

  .prose{
    font-size:1.2rem;
    line-height:1.45;
  }

  .prose h3{
    font-size:1.38rem;
    margin:30px 0 8px;
  }

  .star-deco{
    right:70px;
    top:340px;
    width:94px;
    height:94px;
  }

  .star-deco::before{
    width:72px;
    height:72px;
  }

  .star-deco::after{
    width:30px;
    height:30px;
  }

  .image-wave{
    height:390px;
  }

  .image-wave--bottom::after{
    height:112px;
  }

  .reservation-quote{
    font-size:1.2rem;
    max-width:700px;
  }

  .sun-block__img{
    width:420px;
  }

  .cta-center{
    margin-top:12px;
  }

  .pill-btn{
    min-width:190px;
  }
      .footer-qui{
    padding-left: 30px;
    padding-right: 30px;
  }


  .footer-qui__inner{
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: end;
  }

  .footer-qui__links{
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .footer-qui__copy{
    text-align: center;
    transform: translate(-48px);
  }
}