:root {
  --gold: #f2c230;
  --gold-2: #ffd64a;
  --gold-3: #f4dfa0;
  --gold-dark: #c88b05;
  --cream: #f5ecdc;
  --cream-2: #eadcc6;
  --brown: #241611;
  --brown-2: #3a251c;
  --brown-3: #5a4031;
  --text: #2f211a;
  --light-text: #fff3d2;
  --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: linear-gradient(180deg, #f7f0e5 0%, #ecdfca 100%);
}

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

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

button {
  font: inherit;
}

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

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

/* 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);
}

.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,.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;
  opacity: 0.95;
  transition: 0.2s ease;
  font-family: "Cormorant Garamond", serif;
}

.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-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  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: all 0.3s ease;
}

.phone-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 12px 28px rgba(255, 190, 60, 0.5),
    inset 0 2px 6px rgba(255,255,255,0.55);
}

.burger {
  width: 40px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #f4e0a8;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 218, 128, 0.08);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile-menu a {
  color: #fff3d8;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

/* HERO */

.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::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05); /* ← plus sombre */
}

.hero::after {
}

.hero-content {
  position: relative;
  z-index: 2;
  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;
  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);
}

.hero-subtitle {
  margin: 12px 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: #f2ddb0;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.52);
}

.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;
  border: 2px solid rgba(130, 82, 0, 0.14);
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.42),
    0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

/* SECTION BAS + TEXTE */

.info-section {
  position: relative;
  overflow: hidden;
  padding: 46px 0 90px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    url("assets/section-bg.jpg") center center / cover no-repeat;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(246, 239, 223, 0.88) 0%,
      rgba(239, 228, 207, 0.78) 26%,
      rgba(128, 98, 74, 0.22) 48%,
      rgba(55, 36, 28, 0.55) 66%,
      rgba(28, 18, 14, 0.82) 84%,
      rgba(18, 11, 9, 0.92) 100%
    );
  pointer-events: none;
}

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

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

.intro-text {
  margin-top: -120px;
  margin-left: -40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-text {
    margin-left: 0;
    margin-top: -80px;
  }
}

@media (max-width: 600px) {
  .intro-text {
    margin-left: 0;
    margin-top: -40px;
  }
}

.section-title {
  font-family: "Parisienne", cursive;
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 1.1;
  font-weight: 500;
  color: #2a1d16;
  letter-spacing: 0.5px;
}

.section-text {
  max-width: 600px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.8;
  font-weight: 500;
  color: #2f211a;
  margin: 0;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 8px rgba(255, 255, 255, 0.12);
}

.intro-visual {
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    url("assets/side-card.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* BAS */

.availability-inner {
  text-align: center;
  padding: 8px 0 0;
}

.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;
  font-weight: 500;
  line-height: 1.6;

  color: #f5e6c8;
  margin-top: 10px;
}

.bee-icon {
  margin: 0 auto 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f2c230;
  font-size: 1.3rem;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    min-height: 840px;
  }

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

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

  .intro-visual {
  min-height: 380px;
  width: 100%;
  max-width: 100%;
}

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

  body {
    overflow-x: hidden;
  }

  .intro-visual {
    min-height: 250px;
    width: 100%;
    background-position: 78% center;
    background-size: cover;
  }

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

  * {
    box-sizing: border-box;
  }

}































@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 18px;
  }

  .phone-btn {
    font-size: 16px;
    padding: 10px 16px;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px 60px;
  }

  .hero-content,
  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 52px;
    line-height: 1;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 1.4;
  }

  .hero-copy .cta-btn {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
    display: inline-block;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .section-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .intro-grid,
  .product-card,
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-card {
    padding: 20px;
  }

  .product-card img,
  .product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .bottom-block {
    padding: 20px;
    text-align: center;
  }
}