:root {
  --gold: #f2c230;
  --gold-2: #ffd64a;
  --gold-3: #f4dfa0;
  --cream: #fff8ea;
  --brown: #241611;
  --text: #2f211a;
  --radius: 999px;
  --container: 1200px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    radial-gradient(circle at top, rgba(255, 210, 90, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(30, 18, 13, 0.97), rgba(48, 29, 22, 0.96));
  border-bottom: 1px solid rgba(255, 218, 128, 0.12);
  backdrop-filter: blur(8px);
}

.site-header .container {
  width: 100%;
  padding: 0 30px;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: "Parisienne", cursive !important;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #f4e0a0;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #fff3d8;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  opacity: 0.95;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--gold-2);
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe07a, #f2b632);
  color: #2f210b;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow:
    0 8px 22px rgba(255, 190, 60, 0.35),
    inset 0 2px 5px rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  transition: 0.25s ease;
}

.phone-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.burger,
.mobile-menu {
  display: none;
}

/* HERO DESKTOP */
.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 25%),
    url("assets/hero-top.jpg") left top / cover no-repeat;
}

.hero-mobile-video {
  display: none !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 980px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 120px 0 90px;
}

.hero-copy {
  max-width: 960px;
}

.hero-title {
  margin: 0 0 28px;
  font-family: "Parisienne", cursive;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--gold-3);
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.55);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 16px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffd84e 0%, #efbc1d 100%);
  color: #2d1f0b;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 700;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.42),
    0 12px 24px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* SECTION DESKTOP */
.info-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    linear-gradient(
      180deg,
      #fff8ea 0%,
      rgba(255, 248, 234, 0.98) 28%,
      rgba(239, 228, 207, 0.86) 46%,
      rgba(128, 98, 74, 0.38) 66%,
      rgba(55, 36, 28, 0.72) 84%,
      rgba(18, 11, 9, 0.95) 100%
    ),
    url("assets/section-bg.jpg") center center / cover no-repeat;
}

.info-section::before,
.info-section::after {
  display: none;
}

.info-grid,
.availability-inner {
  position: relative;
  z-index: 3;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
  margin-bottom: 36px;
}

.intro-text {
  max-width: 680px;
  padding: 38px 38px 34px;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.14),
    inset 0 4px 12px rgba(255, 255, 255, 0.45);
}

.section-title {
  margin: 0 0 20px;
  font-family: "Parisienne", cursive;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 1.08;
  font-weight: 500;
  color: #241611;
  text-align: center;
}

.section-title::before {
  display: none;
}

.section-title::after {
  content: "🐝";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76%;
  height: 30px;
  margin: 18px auto 0;
  font-size: 1.45rem;
  color: var(--gold);
  background:
    linear-gradient(to right, var(--gold), var(--gold)) left center / calc(50% - 26px) 1px no-repeat,
    linear-gradient(to right, var(--gold), var(--gold)) right center / calc(50% - 26px) 1px no-repeat;
}

.section-text {
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.75;
  font-weight: 600;
  color: #241611;
  margin: 0;
  text-align: center;
}

.intro-visual {
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: url("assets/side-card.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

/* BAS SECTION */
.availability-inner {
  text-align: center;
  padding: 8px 0 0;
}

.bee-icon {
  margin: 0 auto 14px;
  font-size: 1.8rem;
}

.availability-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #f2deac;
}

.availability-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #f5e6c8;
}

/* FOOTER DESKTOP */
.footer-simple {
  text-align: center;
  padding: 40px 20px 22px;
  font-size: 0.85rem;
  color: rgba(255, 243, 210, 0.75);
  background: linear-gradient(to bottom, transparent, rgba(20, 10, 5, 0.45));
}

.footer-simple a {
  color: rgba(255, 210, 90, 0.95);
  font-weight: 600;
}

.footer-simple a:hover {
  text-decoration: underline;
}

/* TABLETTE */
@media (max-width: 1024px) {
  .hero {
    min-height: 840px;
  }

  .hero-content {
    min-height: 840px;
    padding-bottom: 78px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-visual {
    min-height: 380px;
  }
}

/* MOBILE */
@media screen and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  body {
    margin: 0 !important;
    background: #fff8ea !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
  }

  .site-header .container {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-inner {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 12px 0 14px !important;
  }

  .brand {
    font-size: 2.15rem !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .header-right {
    width: 100% !important;
    margin-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .nav {
    width: 100% !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  .nav a {
    font-size: 1.05rem !important;
  }

  .phone-btn {
    font-size: 1rem !important;
    padding: 11px 24px !important;
    margin: 0 auto !important;
  }

  .burger,
  .burger span,
  .mobile-menu {
    display: none !important;
  }

  /* HERO MOBILE */
  .hero {
    position: relative !important;
    width: 100% !important;
    height: 860px !important;
    min-height: 860px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background-image: url("assets/hero-mobile.jpg") !important;
    background-size: cover !important;
    background-position: center -120px !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }

  .hero-mobile-video {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center -120px !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 54%,
        rgba(0, 0, 0, 0.08) 76%,
        rgba(0, 0, 0, 0.16) 100%
      ) !important;
  }

  /* FONDU HERO → INFO SECTION */
  .hero::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -140px !important;
    height: 390px !important;
    z-index: 2 !important;
    pointer-events: none !important;

    background:
      radial-gradient(
        ellipse at center bottom,
        rgba(255, 248, 234, 1) 0%,
        rgba(255, 246, 228, 0.90) 24%,
        rgba(255, 232, 180, 0.42) 50%,
        rgba(255, 248, 234, 0) 76%
      ),
      linear-gradient(
        180deg,
        rgba(255, 248, 234, 0) 0%,
        rgba(255, 238, 204, 0.22) 34%,
        rgba(255, 248, 234, 0.78) 68%,
        #fff8ea 100%
      ) !important;

    filter: blur(2px);
  }

  .hero-content {
    position: relative !important;
    width: 100% !important;
    height: 860px !important;
    min-height: 860px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    z-index: 3 !important;
  }

  .hero-copy {
    position: absolute !important;
    left: 50% !important;
    bottom: 360px !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 390px !important;
    padding: 0 14px !important;
    margin: 0 !important;
    text-align: center !important;
    z-index: 4 !important;
  }

  .hero-title {
    font-size: 3.15rem !important;
    line-height: 0.9 !important;
    margin: 0 0 22px !important;
    color: #fff0b8 !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.78) !important;
  }

  .cta-btn {
    width: 92% !important;
    max-width: 335px !important;
    min-width: 0 !important;
    min-height: 62px !important;
    font-size: 1.32rem !important;
    border-radius: 999px !important;
  }

  /* SECTION MOBILE */
  .info-section {
    margin-top: 0 !important;
    padding: 45px 0 78px !important;
    position: relative !important;
    z-index: 5 !important;
    overflow: visible !important;
    background:
      linear-gradient(
        180deg,
        #fff8ea 0%,
        #fff8ea 30%,
        rgba(239, 228, 207, 0.88) 52%,
        rgba(128, 98, 74, 0.38) 68%,
        rgba(55, 36, 28, 0.72) 84%,
        rgba(18, 11, 9, 0.95) 100%
      ),
      url("assets/section-bg.jpg") center center / cover no-repeat !important;
  }

  .info-section::before,
  .info-section::after {
    display: none !important;
  }

  .info-grid,
  .availability-inner {
    position: relative !important;
    z-index: 3 !important;
  }

  .info-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 34px !important;
    min-height: auto !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
  }

  .intro-text {
    width: 100% !important;
    max-width: 660px !important;
    margin: -135px auto 0 !important;
    padding: 34px 20px 30px !important;
    border-radius: 28px !important;
    background: rgba(255, 253, 248, 0.985) !important;
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.14),
      inset 0 4px 12px rgba(255, 255, 255, 0.45) !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .section-title {
    font-size: 2.82rem !important;
    line-height: 1.08 !important;
    text-align: center !important;
    margin: 0 auto 22px !important;
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .section-title::before {
    display: none !important;
  }

  .section-title::after {
    content: "🐝" !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 78% !important;
    height: 30px !important;
    margin: 18px auto 0 !important;
    font-size: 1.35rem !important;
    color: var(--gold) !important;
    background:
      linear-gradient(to right, var(--gold), var(--gold)) left center / calc(50% - 24px) 1px no-repeat,
      linear-gradient(to right, var(--gold), var(--gold)) right center / calc(50% - 24px) 1px no-repeat !important;
  }

  .section-text {
    font-size: 1.12rem !important;
    line-height: 1.68 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .intro-visual {
    width: 100% !important;
    max-width: 660px !important;
    min-height: 260px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .availability-inner {
    text-align: center !important;
    margin-top: 32px !important;
  }

  .availability-title {
    font-size: 2.7rem !important;
    line-height: 1.05 !important;
    color: #f2deac !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35) !important;
  }

  .availability-text {
    font-size: 1.15rem !important;
    line-height: 1.55 !important;
    color: #f5e6c8 !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35) !important;
  }

  /* FOOTER MOBILE — SÉPARATION PREMIUM */
  .footer-simple {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    padding: 58px 20px 26px !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    color: rgba(255, 243, 210, 0.75) !important;

    background:
      radial-gradient(
        ellipse at top,
        rgba(242, 194, 48, 0.16) 0%,
        rgba(242, 194, 48, 0.06) 28%,
        rgba(18, 11, 9, 0) 58%
      ),
      linear-gradient(
        180deg,
        #1a100c 0%,
        #120b09 34%,
        #0e0806 100%
      ) !important;

    border-top: 1px solid rgba(242, 194, 48, 0.28) !important;
    box-shadow:
      inset 0 18px 30px rgba(255, 210, 90, 0.045),
      0 -10px 24px rgba(0, 0, 0, 0.18) !important;
  }

  .footer-simple::before {
    content: "" !important;
    position: absolute !important;
    top: -1px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 72% !important;
    height: 1px !important;
    background: linear-gradient(
      90deg,
      rgba(242, 194, 48, 0),
      rgba(242, 194, 48, 0.65),
      rgba(242, 194, 48, 0)
    ) !important;
  }
}

/* PETIT MOBILE */
@media screen and (max-width: 480px) {
  .container {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .brand {
    font-size: 2.05rem !important;
  }

  .nav {
    gap: 18px !important;
  }

  .nav a {
    font-size: 1.02rem !important;
  }

  .phone-btn {
    font-size: 1rem !important;
    padding: 10px 22px !important;
  }

  .hero {
    height: 850px !important;
    min-height: 850px !important;
    background-position: center -135px !important;
  }

  .hero-mobile-video {
    object-position: center -135px !important;
  }

  .hero::after {
    bottom: -135px !important;
    height: 380px !important;
  }

  .hero-content {
    height: 850px !important;
    min-height: 850px !important;
  }

  .hero-copy {
    bottom: 335px !important;
    max-width: 365px !important;
    padding: 0 10px !important;
  }

  .hero-title {
    font-size: 2.9rem !important;
  }

  .cta-btn {
    max-width: 330px !important;
    min-height: 60px !important;
    font-size: 1.28rem !important;
  }

  .info-section {
    padding-top: 48px !important;
    padding-bottom: 76px !important;
  }

  .info-section::after {
    display: none !important;
  }

  .intro-text {
    width: 100% !important;
    margin-top: -135px !important;
    padding: 32px 18px 28px !important;
  }

  .intro-visual {
    width: 100% !important;
  }

  .section-title {
    font-size: 2.55rem !important;
    line-height: 1.08 !important;
  }

  .section-title::after {
    width: 82% !important;
    font-size: 1.3rem !important;
    background:
      linear-gradient(to right, var(--gold), var(--gold)) left center / calc(50% - 23px) 1px no-repeat,
      linear-gradient(to right, var(--gold), var(--gold)) right center / calc(50% - 23px) 1px no-repeat !important;
  }

  .section-text {
    font-size: 1.08rem !important;
  }
}

/* TRÈS PETIT MOBILE */
@media screen and (max-width: 390px) {
  .hero {
    height: 820px !important;
    min-height: 820px !important;
    background-position: center -145px !important;
  }

  .hero-mobile-video {
    object-position: center -145px !important;
  }

  .hero::after {
    bottom: -125px !important;
    height: 360px !important;
  }

  .hero-content {
    height: 820px !important;
    min-height: 820px !important;
  }

  .hero-copy {
    bottom: 310px !important;
    max-width: 340px !important;
  }

  .hero-title {
    font-size: 2.65rem !important;
  }

  .cta-btn {
    min-height: 58px !important;
    font-size: 1.22rem !important;
  }

  .info-section {
    padding-top: 45px !important;
    padding-bottom: 70px !important;
  }

  .info-section::after {
    display: none !important;
  }

  .intro-text {
    margin-top: -125px !important;
  }

  .section-title {
    font-size: 2.38rem !important;
  }
}