:root {
  --rose: #c7a8a6;
  --cream: #f7f0e4;
  --cream-light: #fcf8ef;
  --green: #6e9e58;
  --brown: #7a523a;
  --dark-green: #163e2d;
  --ink: #241f1c;
  --line: rgba(122, 82, 58, 0.35);
}

@font-face {
    font-family: "Constantine";
    src: url("assets/Constantine.ttf") format("truetype");
}

@font-face {
    font-family: "More Sugar";
    src: url("assets/MoreSugar.ttf") format("truetype");
}
@font-face {
    font-family: "Playfair";
    src: url("assets/PlayfairDisplayRegular.ttf") format("truetype");
}
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.topbar {
  min-height: 84px;
  padding: 18px 7%;
  background: rgba(247, 240, 228, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brown);
  text-decoration: none;
  font-family: "Constantine", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--brown);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

nav a {
  font-family: "Playfair", serif;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

nav a:hover {
  color: var(--brown);
}

.hero {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 8%;

  background:
    linear-gradient(
      rgba(247,240,228,0.25),
      rgba(247,240,228,0.25)
    ),
    url("images/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1100px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 700;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--brown);
  font-weight: 700;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-family: "Constantine", serif;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  font-style: normal;
}

h2 {
  font-family: "Constantine", serif;
  font-size: clamp(3rem, 6vw, 5rem);
}


h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  font-size: 1.65rem;
  margin: 0 0 12px;
}

.hero-text {
  font-family: "More Sugar", cursive;
  max-width: 900px;
  margin: 28px auto 0;
  font-size: 2rem;
}

.button,
.small-button,
button {
  display: inline-block;
  margin-top: 28px;
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
  padding: 14px 30px;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover,
.small-button:hover,
button:hover {
  background: var(--brown);
  color: var(--cream-light);
}

.section {
  padding: 100px 8%;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  background: var(--cream-light);
}

.section-text p {
  max-width: 620px;
}

.soft-card {
  border-radius: 20px;
  font-family: "More Sugar", cursive;
  font-size: 25px;
  border: 1px solid var(--line);
  padding: 70px 52px;
  min-height: 360px;
  background: rgba(199,168,166,.18);
}

.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  font-size: 20px;
  line-height: 1;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.products {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product-card p {
    text-align: left;
}

.product-visual {
  text-align: center;
  aspect-ratio: 420px;
  border-radius: 20px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: "Patrick Hand", "Comic Sans MS", cursive;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 22px;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
}

.product-card ul {
  text-align: left;
  max-width: 260px;
  margin: 18px auto;
}

.small-button {
  width: 100%;
  max-width: 290px;
  font-size: .78rem;
  padding: 12px 18px;
  margin-top: auto;
  align-self: center;
  text-align: center;
}

.dark-section {
  background: var(--green);
  color: var(--cream-light);
  text-align: center;
}

.dark-section h2 {
  color: var(--cream-light);
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 70px;
}

.engagmt {
  text-align: left;
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 28px;
}

.newsletter-section {
  background: linear-gradient(
      rgba(247,240,228,0.25),
      rgba(247,240,228,0.25)
    ),
    url("images/news.png");;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
}

.newsletter {
  display: flex;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 16px;
}

input,
textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.contact-band {
  background: var(--brown);
  color: var(--cream-light);
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-band h2 {
  color: var(--cream-light);
  max-width: 560px;
}

.social-links {
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.social-links a {
  color: var(--cream-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  border: 1px solid var(--cream-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form button {
  color: var(--cream-light);
  border-color: var(--cream-light);
}

.contact-form button:hover {
  background: var(--cream-light);
  color: var(--brown);
}

footer {
  background: var(--cream-light);
  text-align: center;
  padding: 28px;
  color: var(--brown);
}

@media (max-width: 900px) {
  .topbar {
    display: block;
    padding: 18px 6%;
  }

  .brand {
    justify-content: center;
    margin-bottom: 16px;
  }

  nav {
    justify-content: center;
    gap: 12px 18px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: .72rem;
  }

  .hero {
    min-height: 62vh;
    padding: 70px 6%;
  }

  .hero-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.1;
  }
  section {
    scroll-margin-top: 150px;
  }

  .section,
  .contact-band {
    padding: 70px 6%;
  }

  .about,
  .product-grid,
  .three-columns,
  .contact-band,
  .form-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .soft-card {
    border-radius: 34px;
    min-height: auto;
    padding: 36px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .newsletter {
    flex-direction: column;
  }

  .contact-band {
    text-align: left;
  }

  .product-visual {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    
  }
}


/* Ajustements contenus demandés */
.price {
  color: var(--brown);
  font-weight: 700;
  list-style: none;
  margin-top: 12px;
}

.coming-soon {
  font-family: "More Sugar", cursive;
  color: var(--brown);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 24px 0;
}

.contact-right {
  display: grid;
  gap: 18px;
}

.mail-button {
  display: inline-block;
  width: fit-content;
  color: var(--cream-light);
  border: 1px solid var(--cream-light);
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
}

.mail-button:hover {
  background: var(--cream-light);
  color: var(--brown);
}

.contact-right .contact-form {
  margin-top: 16px;
}
