@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700&family=Montserrat:wght@500;600&display=swap');

:root {
  --color-bg: #f8f3ec;
  --color-bg-soft: #fbf8f3;
  --color-text: #1f1a17;
  --color-text-soft: rgba(31, 26, 23, 0.78);
  --color-light: rgba(255, 255, 255, 0.88);
  --color-white: #ffffff;
  --color-accent: #A39887;
  --color-accent-hover: #6a6358;
  --color-border: rgba(31, 26, 23, 0.1);
  --color-shadow: rgba(23, 16, 11, 0.14);
  --hero-overlay: rgba(18, 15, 12, 0.28);
  --radius-lg: 0px;
  --radius-md: 0px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--color-text);
  background: var(--color-bg-soft);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover {
  color: inherit;
}

h1,
h2,
blockquote,
.why-title,
.faq-question span {
  font-family: 'EB Garamond', serif;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

p {
  margin-bottom: 0;
}

.label,
.form-pretitle,
.hero-kicker,
.btn-main,
.footer-link,
.footer-legal-links,
.check span {
  font-family: 'Montserrat', sans-serif;
}

.label,
.form-pretitle,
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.4rem;
}

.label,
.form-pretitle {
  color: rgba(31, 26, 23, 0.58);
}

.hero {
  position: relative;
  color: var(--color-white);
  background-color: #5d4839;
  background-image: url('../images/hero.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

@supports (background-image: image-set(url('../images/hero.avif') type('image/avif') 1x)) {
  .hero {
    background-image: image-set(
      url('../images/hero.avif') type('image/avif') 1x,
      url('../images/hero.webp') type('image/webp') 1x,
      url('../images/hero.jpg') type('image/jpeg') 1x
    );
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.48) 0%, rgba(12, 10, 8, 0.18) 44%, rgba(12, 10, 8, 0.54) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding:0.5rem 0 2rem;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo img,
.thankyou-logo img {
  width: auto;
  max-width: 280px;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-mobile-cta {
  margin-top: 2rem;
}

.form-card {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 25px;
}

.form-card-hero {
  position: relative;
}

.contact-form {
  margin-top: 1.3rem;
}

.form-control-custom {
    min-height: 58px;
    border: 3px solid #fff;
    border-radius: 0;
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
    color: #fff;
    background-color: transparent;
    box-shadow: none !important;
}

.form-control-custom:focus {
  border-color: rgba(185, 135, 67, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(185, 135, 67, 0.14) !important;
}

.form-select.form-control-custom {
  background-position: right 1rem center;
}

.form-check-group {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1.35rem;
}

.check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #fff;
  font-size: 0.74rem;
  line-height: 1.45;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--color-accent);
  flex: 0 0 auto;
}

.btn-main {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
    padding: 0.95rem 1.65rem;
    border: 0;
    border-radius: 0;
    background: var(--color-accent);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(185, 135, 67, 0.25);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-control.form-control-custom,
.form-select.form-control-custom {
  color: #fff !important;
}
.form-control-custom:focus {
   background-color: transparent!important;
}
.form-select.form-control-custom option {
    color: #000;
}
.form-control-custom::placeholder {
  color: rgb(255 255 255);
}
.form-control-custom2 {
  min-height: 58px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.98rem;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: none !important;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.form-control-custom2:focus {
  border-color: rgba(185, 135, 67, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(185, 135, 67, 0.14) !important;
}

.form-select.form-control-custom2 {
  background-position: right 1rem center;
}
.check2 {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.74rem;
    line-height: 1.45;
}
.btn-main:hover,
.btn-main:focus {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(185, 135, 67, 0.28);
}

.btn-main-mobile {
  min-width: 100%;
}

.btn-main-wide {
  min-width: min(100%, 360px);
}

.micro {
  font-size: 0.82rem;
  color: rgba(31, 26, 23, 0.62);
  margin-top: 0.95rem;
}

.micro-light {
  color: rgba(255, 255, 255, 0.78);
}

.center {
  text-align: center;
}

.section {
 padding: clamp(1.5rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 4rem);
}

.section-heading {
  margin-bottom: 1rem;
}

.why {
  background: #f7f6f2;
}

.card-why {
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 23, 0.08);
  padding: 2rem 1.5rem;
  box-shadow: 0 18px 50px rgba(31, 26, 23, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-why:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(31, 26, 23, 0.08);
  border-color: rgba(185, 135, 67, 0.24);
}

.why-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.card-why p {
  color: var(--color-text-soft);
}

.band {
    padding: 2rem 0;
    background: #6a6358;
    color: #fff9f1;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.founder {
  background: #fff;
}

blockquote {
  font-size: clamp(2rem, 4vw, 2.4rem);
  line-height: 1.08;
  font-style: italic;
  margin: 1rem 0 1.4rem;
}


.founder-text {
  max-width: 38rem;
  color: var(--color-text-soft);
}

.signature {
  margin-top: 1.3rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
}

.founder-visual {
  position: relative;
  padding: 1.2rem;
  background: #f7f6f2;
  box-shadow: 0 28px 65px rgba(31, 26, 23, 0.1);
}

.founder-img {
  display: block;
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.form-bottom {
  background: #f7f6f2;
}

.form-bottom-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(31, 26, 23, 0.06);
}

.intro-note {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--color-text-soft);
}

.form-bottom-box {
  margin: 2rem auto 0;
}

.faq {
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(31, 26, 23, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--color-text);
}

.faq-question span:first-child {
  font-size: 1.7rem;
  line-height: 1.15;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-soft);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.footer {
  position: relative;
  padding: 2.4rem 0 4rem;
  background: #6a6358;
  color: rgba(255, 249, 241, 0.86);
}

.footer-link {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.footer-link-main {
  margin-bottom: 1rem;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: rgba(255, 249, 241, 0.72);
}

.footer a:hover {
  opacity: 0.8;
}

#toTopBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(185, 135, 67, 0.94);
  color: #ffffff;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(23, 16, 11, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  transition: transform var(--transition), background-color var(--transition), opacity var(--transition);
}

#toTopBtn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thankyou-page {
  min-height: 100vh;
  background: linear-gradient(185deg, #6a6358 0%, #fffdf9 100%);
}

.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-wrap h1 {
  max-width: none;
  margin: 2rem auto 1rem;
}

.thankyou-wrap p {
  font-size: 1.1rem;
  color: var(--color-text-soft);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-copy {
    padding: 0.5rem 0 2rem;
  }


  blockquote {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  header#top {
    text-align: center;
}


  h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }

  .subtitle {
    font-size: 1.04rem;
  }

  .form-card,
  .form-bottom-wrap,
  .founder-visual,
  .card-why,
  .faq-item {
    border-radius: 22px;
  }

  .card-why,
  .form-card,
  .form-bottom-wrap {
    padding: 1.5rem;
  }

  .faq-question span:first-child {
    font-size: 1.45rem;
  }

  .footer {
    padding-bottom: 5rem;
  }

  #toTopBtn {
    width: 42px;
    height: 42px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 460px) {
.hero-logo img, .thankyou-logo img {
    width: auto;
    max-width: 75%;
}
}
button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
@media (max-width: 1200px) {
blockquote br{
 display:none;
}
}
@media (max-width: 991px) {
  h1 {
  text-align: left;
}
}
@media (max-width: 768px) {
.hero-logo {
    margin-bottom: 1rem;
}
  h1 {
    margin-bottom: 1rem;
}
.hero-row {
  min-height: 92vh!important; 
}
  header#top {
    text-align: left;
  }
   .hero {
    background-position: center center;
  }
    .hero::before {
    background: rgba(12, 10, 8, 0.19);
  }
   .hero-mobile-cta {
    margin-top: 4rem;
  }
   .btn-main-mobile {
    min-height: 48px;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  .band {
    font-size: 1.2rem;
}
  .founder .label {

    font-size: 1.2rem;
}
  p.micro.micro-light {
    text-align: center;
}
  p.founder-text {
    text-align: left;
    padding: 0 1rem;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
  
  .founder-visual {
    max-width: 400px; /* ajuste si besoin */
    margin: 0 auto;
    display: block;
  }

}
/* Bandeau */
#tarteaucitronRoot #tarteaucitronAlertBig {
    background: #ffffff !important;
    color: #222222 !important;
    padding: 18px 25px !important;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.10);
}

/* Texte */
#tarteaucitronDisclaimerAlert {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #222222 !important;
}

/* Boutons communs */
#tarteaucitronPersonalize2,
#tarteaucitronAllAccepted2,
#tarteaucitronAllDenied2 {
    border-radius: 8px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    transition: all .2s ease;
}

/* Bouton accepter */
#tarteaucitronAllAccepted2 {
    background: #1e73be !important;
    color: #ffffff !important;
    border: none !important;
}

/* Refuser */
#tarteaucitronAllDenied2 {
    background: transparent !important;
    color: #222222 !important;
    border: 1px solid #dcdcdc !important;
}

/* Personnaliser */
#tarteaucitronPersonalize2 {
    background: transparent !important;
    color: #222222 !important;
    border: 1px solid #dcdcdc !important;
}
/* Bouton accepter */
#tarteaucitronRoot .tarteaucitronAllow {
    background: #1e73be !important;
    color: #ffffff !important;
    border: none !important;
}

/* Bouton refuser */
#tarteaucitronRoot .tarteaucitronDeny {
    background: #f9f9f9 !important;
    color: #222222 !important;
    border: 1px solid #e5e5e5 !important;
}

/* Bouton personnaliser */
#tarteaucitronRoot #tarteaucitronCloseAlert {
    background: #f9f9f9 !important;
    color: #222222 !important;
    border: 1px solid #e5e5e5 !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    margin-left: 10px !important;
}
/* Container */
#tarteaucitronAlertBig {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;

    width: 420px !important;
    max-width: calc(100vw - 40px) !important;

    background: #ffffff !important;
    border-radius: 14px !important;

    padding: 20px !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12) !important;

    z-index: 999999 !important;
}

/* Texte */
#tarteaucitronDisclaimerAlert {
    display: block !important;
    margin-bottom: 18px !important;

    font-size: 14px !important;
    line-height: 1.5 !important;

    color: #222 !important;
}

/* Boutons */
#tarteaucitronAlertBig button {
    border-radius: 8px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    cursor: pointer;
}

/* Accepter */
#tarteaucitronRoot .tarteaucitronAllow {
    background: #1e73be !important;
    color: #fff !important;
    border: none !important;
}

/* Refuser */
#tarteaucitronRoot .tarteaucitronDeny {
    background: #f9f9f9 !important;
    color: #222 !important;
    border: 1px solid #e5e5e5 !important;
}

/* Personnaliser */
#tarteaucitronCloseAlert {
    background: #f9f9f9 !important;
    color: #222 !important;
    border: 1px solid #e5e5e5 !important;
}

/* Mobile */
@media(max-width:768px){

    #tarteaucitronAlertBig{
        right: 10px !important;
        left: 10px !important;
        bottom: 10px !important;

        width: auto !important;
        max-width: none !important;
    }

    /* Espace entre boutons */
    #tarteaucitronAlertBig button{
        margin: 5px !important;
    }

}
#tarteaucitronPrivacyUrl{
    display:none !important;
}