:root{
  --bg:#f5f2ea;
  --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);
  --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;
}

.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:240px;
  overflow:hidden;
  background:url("atelmandala.png") center center / cover no-repeat;
}

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

.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{
  color:#fff;
  font-size:2.35rem;
  line-height:1;
  font-weight:600;
}

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

.intro-page::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;
}

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

.intro-page__visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

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

.intro-page__text{
  text-align:left;
}

.intro-page__text h2{
  font-family:"Parisienne", cursive;
  color:var(--orange);
  font-size:2.3rem;
  line-height:0.95;
  margin-bottom:18px;
}

.intro-page__text p{
  font-size:1.2rem;
  line-height:1.3;
  color:#fff;
  font-weight:600;
  max-width:560px;
}

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

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

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

.prose-wrap{
  position:relative;
}

.prose{
  position: relative;
  font-size:1.08rem;
  line-height:1.45;
}

.prose + .prose{
  margin-top:36px;
}

.prose img{
  width:min(100%, 180px);
  object-fit:contain;
  margin:0 auto 18px;
  position: absolute;
  top: -21px;
  left: 12px;
    width:72px;
    height: auto;
    margin-bottom:20px;
}

.prose p{
  margin-bottom:20px;
  white-space:pre-line;
}

.prose h3{
  color:var(--blue-dark);
  font-size:1.2rem;
  margin:0 0 0;
  font-weight:700;
  text-align:left;
  padding-left: 90px;
}

.star-deco{
  position:absolute;
  right:10px;
  top:292px;
  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;
}

.nextdates{
  margin-top:44px;
  text-align:center;
}

.nextdates p{
  font-size:1.35rem;
  color:var(--orange);
  margin-bottom:18px;
}

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

.nextdates button:hover,
.nextdates button:focus-visible{
  background:var(--blue-dark);
  color:var(--gold);
  outline:none;
}
.cadeau-section{
  position:relative;
  background:var(--cream);
  padding:0 0 80px;
  overflow:hidden;
}

.cadeau-section__top-wave{
  height:130px;
  background:var(--turquoise);
  position:relative;
}

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

.cadeau-section__inner{
  position:relative;
  z-index:2;
}

.cadeau-section__media{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-top:-70px;
}

.cadeau-section__media h2{
  font-family:"Parisienne", cursive;
  color:var(--orange);
  font-size:2.2rem;
  line-height:1;
  margin-bottom:24px;
}

.cadeau-section__video-link{
  display:inline-block;
}

.cadeau-section__video-thumb{
  width:min(100%, 420px);
  height:auto;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.cadeau-section__gift-block{
  display:grid;
  gap:28px;
  align-items:center;
  margin-top:70px;
}

.cadeau-section__gift-visual{
  display:flex;
  justify-content:center;
}

.cadeau-section__gift-circle{
  position:relative;
  width:220px;
  height:220px;
}

.cadeau-section__circle-ring{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  z-index:2;
  pointer-events:none;
}

.cadeau-section__gift-img{
  position:absolute;
  top:14px;
  left:14px;
  width:calc(100% - 28px);
  height:calc(100% - 28px);
  object-fit:cover;
  border-radius:50%;
}

.cadeau-section__gift-text{
  text-align:center;
  color:var(--blue-dark);
}

.cadeau-section__gift-icon{
  width:54px;
  height:auto;
  margin:0 auto 16px;
}

.cadeau-section__gift-small{
  font-size:1.15rem;
  line-height:1.3;
  font-style:italic;
  margin-bottom:22px;
}

.cadeau-section__gift-big{
  font-size:1.9rem;
  line-height:1.1;
}

/* 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.2rem;
  }

  .intro-page{
    padding:40px 0 128px;
  }

  .intro-page::after{
    height:92px;
  }

  .intro-page__inner{
    grid-template-columns:240px 1fr;
    gap:30px;
  }

  .intro-page__img{
    width:230px;
  }

  .intro-page__text h2{
    font-size:3.7rem;
  }

  .intro-page__text p{
    font-size:1.35rem;
  }

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

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

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

  .prose h3{
    font-size:1.6rem;
  }
  .prose p{
    padding-left: 90px;
  }
  .nextdates p{
    font-size:1.6rem;
  }
.cadeau-section{
    padding:0 0 100px;
  }

  .cadeau-section__top-wave{
    height:160px;
  }

  .cadeau-section__top-wave::after{
    height:96px;
  }

  .cadeau-section__media{
    margin-top:-88px;
  }

  .cadeau-section__media h2{
    font-size:3.2rem;
    margin-bottom:28px;
  }

  .cadeau-section__video-thumb{
    width:450px;
  }

  .cadeau-section__gift-block{
    grid-template-columns:280px 1fr;
    gap:48px;
    max-width:860px;
    margin:90px auto 0;
  }

  .cadeau-section__gift-circle{
    width:280px;
    height:280px;
  }

  .cadeau-section__gift-text{
    text-align:left;
  }

  .cadeau-section__gift-icon{
    margin:0 0 18px;
    width:62px;
  }

  .cadeau-section__gift-small{
    font-size:1.35rem;
    margin-bottom:24px;
  }

  .cadeau-section__gift-big{
    font-size:2.2rem;
  }
 
  .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:430px;
  }

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

  .intro-page{
    padding:42px 0 136px;
  }

  .intro-page::after{
    height:106px;
  }

  .intro-page__inner{
    grid-template-columns:320px 1fr;
    gap:56px;
  }

  .intro-page__visual{
    justify-content:flex-end;
  }

  .intro-page__img{
    width:250px;
  }

  .intro-page__text h2{
    font-size:4.1rem;
    margin-bottom:16px;
  }

  .intro-page__text p{
    font-size:1.16rem;
    line-height:1.35;
    max-width:430px;
  }

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

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

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

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

  .prose--center-desktop{
    max-width:860px;
    margin:0 auto;
  }

  .star-deco{
    right:60px;
    top:300px;
    width:94px;
    height:94px;
  }

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

  .star-deco::after{
    width:30px;
    height:30px;
  }
  .cadeau-section{
    padding:0 0 120px;
  }

  .cadeau-section__top-wave{
    height:185px;
  }

  .cadeau-section__top-wave::after{
    height:110px;
  }

  .cadeau-section__media{
    margin-top:-102px;
  }

  .cadeau-section__media h2{
    font-size:3.8rem;
    margin-bottom:30px;
  }

  .cadeau-section__video-thumb{
    width:520px;
  }

  .cadeau-section__gift-block{
    grid-template-columns:320px 1fr;
    gap:72px;
    max-width:980px;
    margin:110px auto 0;
  }

  .cadeau-section__gift-circle{
    width:320px;
    height:320px;
  }

  .cadeau-section__gift-small{
    font-size:1.15rem;
    max-width:520px;
  }

  .cadeau-section__gift-big{
    font-size:2.1rem;
  }
       .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);
  }
}