:root {
  --cream: #fffaf3;
  --beige: #f6eadb;
  --gold: #b77a28;
  --gold-light: #d9aa62;
  --brown: #2f1f17;
  --text: #2a211d;
  --muted: #766358;
  --white: rgba(255, 255, 255, 0.86);
  --border: rgba(183, 122, 40, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family:Montserrat, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.header {
  height: 118px;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255);
  border-bottom: 1px solid rgba(183, 122, 40, 0.08);
}

.logo img {
  width: 245px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  margin-left: auto;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a {
  color: #1f1713;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c98d36);
  color: white;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(183, 122, 40, 0.22);
}

.btn-top { min-width: 245px; }

.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,250,243,0.98) 0%, rgba(255,250,243,0.96) 34%, rgba(255,250,243,0.18) 54%, rgba(255,250,243,0.04) 100%), url("assets/fond-ordinateur.png");
  background-size: cover;
  background-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  background: radial-gradient(ellipse at 18% 52%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 38%, transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 590px;
  padding: 82px 0 50px 58px;
  z-index: 1;
}

h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--brown);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h1 span {
  display: block;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 700;
}

h1 em {
  display: block;
  margin-top: 12px;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: clamp(54px, 5.5vw, 82px);
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0;
}

.small-line {
  width: 154px;
  height: 2px;
  margin: 22px 0 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero p {
  margin: 0 0 20px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
}

.hero strong {
  color: var(--gold);
  font-weight: 800;
}

.btn-main {
  margin-top: 16px;
  min-width: 430px;
  min-height: 58px;
  font-size: 15px;
}

.reassurance {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 640px;
  color: #39281f;
  font-size: 15px;
  line-height: 1.35;
}

.reassurance div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}

.reassurance div:last-child { border-right: 0; }

.reassurance span,
.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 208, 177, 0.45);
  color: var(--gold);
  font-size: 22px;
}

.service-strip {
  margin: 0 auto;
  width: min(89%, 1380px);
  transform: translateY(-16px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(92, 61, 35, 0.08);
  backdrop-filter: blur(6px);
}

.service-strip article {
  min-height: 112px;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--border);
}

.service-strip article:last-child { border-right: 0; }

.service-strip p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.signature {
  padding: 24px 20px 44px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,250,243,0.2), rgba(250,237,219,0.62));
}

.heart {
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
  font-size: 30px;
}

.heart::before,
.heart::after {
  content: "";
  width: 112px;
  height: 1px;
  background: var(--gold-light);
}

.signature p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  line-height: 1.2;
  color: var(--brown);
}

.signature span {
  display: block;
  font-family: "Caveat", cursive;
  font-size: 34px;
  color: var(--gold);
}

@media (max-width: 1100px) {
  .header { height: auto; flex-wrap: wrap; padding: 18px 26px; }
  .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .btn-top { margin-left: auto; }
  .hero-content { padding-left: 34px; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .service-strip article:nth-child(2) { border-right: 0; }
}

@media (max-width: 760px) {
  .logo img { width: 190px; }
  .btn-top { display: none; }
  .hero {
    min-height: auto;
    background-position: 58% center;
  }
  .hero-content {
    max-width: none;
    padding: 54px 24px 46px;
    background: rgba(255, 250, 243, 0.76);
  }
  .hero p { font-size: 16px; }
  .btn-main { min-width: 0; width: 100%; padding: 0 18px; }
  .reassurance { grid-template-columns: 1fr; }
  .reassurance div { border-right: 0; }
  .service-strip { width: calc(100% - 28px); grid-template-columns: 1fr; transform: translateY(0); }
  .service-strip article { border-right: 0; border-bottom: 1px solid var(--border); }
  .service-strip article:last-child { border-bottom: 0; }
  .signature p { font-size: 28px; }
  .signature span { font-size: 28px; }
  .signature a { font-size: 28px;  }
}
