: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;
}

*{
  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;
}

/* 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{
  background:var(--blue-dark);
  color:#fff;
  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;
}

/* MAIN */
.temoignages-page{
  background:var(--light-section);
}

.temoignages-hero{
  position:relative;
  background:var(--turquoise);
  padding:34px 0 118px;
  overflow:hidden;
}

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

.temoignages-hero__inner{
  position:relative;
  z-index:2;
  display:grid;
  gap:20px;
  align-items:center;
}

.temoignages-hero__visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.temoignages-hero__img{
  width:min(100%, 180px);
  height:auto;
  object-fit:contain;
}

.temoignages-hero__content{
  text-align:left;
}

.temoignages-hero__content h1{
  font-family:"Parisienne", cursive;
  color:var(--orange);
  font-size:2.4rem;
  line-height:0.95;
  margin-bottom:18px;
}

.temoignages-hero__content p{
  color:#fff;
  font-size:1.18rem;
  line-height:1.35;
  font-weight:600;
  max-width:560px;
}

.temoignages-list-section{
  background:var(--light-section);
  padding:48px 0 70px;
}

.temoignages-list-section__container{
  width:min(100% - 32px, 980px);
  margin:0 auto;
}

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

.temoignages-list{
  font-size:1.04rem;
  line-height:1.35;
}

.temoignages-list p{
  margin-bottom:18px;
}

.temoignages-list span{
  color:#4fd0c6;
  font-weight:600;
}

/* FOOTER */
footer{
  background:#0f226f;
  color:#fff;
  padding:24px 0 34px;
}

.footer-inner{
  width:min(100% - 24px, 1200px);
  margin:0 auto;
  display:grid;
  gap:24px;
  position:relative;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
  font-size:1.15rem;
}

.footer-copy{
  font-size:1.1rem;
  line-height:1.35;
}

.footer-copy a{
  text-decoration:underline;
}

.footer-logo-wrap{
  display:flex;
  justify-content:center;
}

.footer-logo{
  width:150px;
  height:auto;
}

.back-top{
  position:absolute;
  right:0;
  top:0;
  font-size:2rem;
  line-height:1;
  color:#fff;
}

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

  .temoignages-hero{
    padding:40px 0 128px;
  }

  .temoignages-hero::after{
    height:92px;
  }

  .temoignages-hero__inner{
    grid-template-columns:240px 1fr;
    gap:34px;
  }

  .temoignages-hero__img{
    width:220px;
  }

  .temoignages-hero__content h1{
    font-size:3.8rem;
  }

  .temoignages-hero__content p{
    font-size:1.32rem;
  }

  .temoignages-list-section{
    padding:64px 0 90px;
  }

  .temoignages-list-section h2{
    font-size:4rem;
    margin-bottom:40px;
  }

  .temoignages-list{
    font-size:1.2rem;
    line-height:1.42;
  }

  .temoignages-list p{
    margin-bottom:20px;
  }

  .footer-inner{
    grid-template-columns:1fr 1.4fr 1fr;
    align-items:end;
  }

  .footer-links{
    font-size:1rem;
  }

  .footer-copy{
    font-size:0.98rem;
  }

  .footer-logo-wrap{
    justify-content:flex-end;
  }

  .footer-logo{
    width:170px;
  }
}

/* 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:0 12px 34px rgba(12, 25, 92, 0.12);
    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:0 12px 34px rgba(12, 25, 92, 0.12);
    border-radius:16px;
    overflow:hidden;
    max-height:none;
  }

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

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

  .temoignages-hero{
    padding:46px 0 142px;
  }

  .temoignages-hero::after{
    height:108px;
  }

  .temoignages-hero__inner{
    grid-template-columns:310px 1fr;
    gap:64px;
  }

  .temoignages-hero__visual{
    justify-content:flex-end;
  }

  .temoignages-hero__img{
    width:250px;
  }

  .temoignages-hero__content h1{
    font-size:4.2rem;
    margin-bottom:16px;
  }

  .temoignages-hero__content p{
    font-size:1.15rem;
    line-height:1.35;
    max-width:430px;
  }

  .temoignages-list-section{
    padding:62px 0 90px;
  }

  .temoignages-list-section__container{
    width:min(100% - 32px, 1040px);
  }

  .temoignages-list-section h2{
    font-size:4.4rem;
    margin-bottom:46px;
  }

  .temoignages-list{
    width:min(100%, 1020px);
    margin:0 auto;
    font-size:1.01rem;
    line-height:1.34;
  }

  .temoignages-list p{
    margin-bottom:16px;
  }
}