/* Bonjour */

:root {
  --gold:        #b8963e;
  --gold-light:  #d4aa5a;
  --gold-dark:   #8a6d24;
  --gold-grad:   linear-gradient(135deg, #8a6d24, #d4aa5a, #8a6d24);
  --cream:       #f9f5ef;
  --marble-bg:   #f2ede6;
  --text-dark:   #1e2b3a;
  --text-brown:  #6b4d1f;
  --text-mid:    #6b5740;
  --white:       #ffffff;
  --border:      rgba(184,150,62,0.30);
  --shadow:      0 10px 30px rgba(0,0,0,0.12);
  --radius:      12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(249,245,239,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(184,150,62,0.10);
}

.right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials img {
  width: 20px;
  height: 20px;
}

.footer-section {
  text-align: center;
  padding: 40px 20px 36px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .06em;
}

.footer-logo span { color: var(--gold); }

.footer-logo-img {
  margin-top: 24px;
  width: auto;
  height: 86px;
}

.footer-addr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: 10px;
  line-height: 1.7;
}

.footer-legal {
  margin-top: 24px;
  font-size: .8rem;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .7;
  transition: opacity .2s;
}
.footer-legal:hover { opacity: 1; }


.logo-m {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gold-grad);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  border: 2px solid var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-brown);
  letter-spacing: .18em;
}

.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .22em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.logo img { height: 55px; }

nav a {
  margin: 0 16px;
  text-decoration: none;
  color: var(--text-brown);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
  transition: color .2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

.cta-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(184,150,62,.35);
  transition: background-position .5s, box-shadow .3s, transform .15s;
}

.cta-btn:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(184,150,62,.55);
  transform: translateY(-1px);
}

.cta img { height: 45px; cursor: pointer; }

.hero-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px;
  min-height: 540px;
  overflow: hidden;
}

.hero-section-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 100%);
  z-index: 0;
}

.hero-section-text {
  position: relative;
  z-index: 1;
  max-width: 620px;
  animation: fadeUp .8s ease both;
}

.hero-section-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.45;
  text-shadow: 0 1px 8px rgba(255,255,255,.6);
}

.hero-section-text h1 .bold {
  font-weight: 600;
  color: var(--text-brown);
}

.hero-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 17px 38px;
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: .08em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(184,150,62,.45);
  transition: background-position .5s, box-shadow .3s, transform .15s;
}

.hero-btn:hover {
  background-position: right center;
  box-shadow: 0 10px 36px rgba(184,150,62,.6);
  transform: translateY(-2px);
}

.hero-section-button {
  margin-top: 30px;
  height: 60px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.hero-section-logo {
  position: relative;
  z-index: 1;
  animation: fadeUp .8s .2s ease both;
}

.big-logo {
  text-align: center;
  filter: drop-shadow(0 8px 30px rgba(184,150,62,.25));
}

.big-logo-icon {
  font-family: 'Cinzel', serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: .9;
  background: var(--gold-grad);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 3px solid var(--gold);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(184,150,62,.12);
}

.big-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-brown);
  letter-spacing: .25em;
}

.big-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .28em;
  color: var(--gold-dark);
  margin-top: 4px;
  text-transform: uppercase;
}

.hero-section-logo img { height: 260px; position: relative; z-index: 1; }

.cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: -60px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
  padding-left: 40px;
  padding-right: 40px;
  animation: fadeUp .7s .4s ease both;
}

.card {
  background: rgba(255,255,255,0.80);
  padding: 22px 30px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px);
  flex: 1;
  max-width: 320px;
  transition: transform .22s, box-shadow .22s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(184,150,62,.18);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: white;
}

/* Vraie image icône */
.card img { height: 45px; }

.card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-brown);
}

.card p {
  margin: 4px 0 0;
  color: #999;
  font-size: .85rem;
  font-weight: 300;
}

.services {
  padding: 20px 80px 80px;
  text-align: center;
}

/* Ornement */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 10px;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament::after { transform: scaleX(-1); }
.ornament span { font-size: 1.1rem; }

.services h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 44px;
  color: var(--text-brown);
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  letter-spacing: .06em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-box {
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(4px);
  transition: transform .22s, box-shadow .22s;
  animation: fadeUp .6s ease both;
}

.service-box:nth-child(2) { animation-delay: .08s; }
.service-box:nth-child(3) { animation-delay: .16s; }
.service-box:nth-child(4) { animation-delay: .24s; }

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(184,150,62,.18);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(184,150,62,.3);
}

.service-box img { height: 65px; margin-bottom: 15px; }

.service-box > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-brown);
}

.service-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(249,245,239,.9));
}

.service-contact-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-brown);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.service-phone,
.service-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.service-phone:hover,
.service-email:hover { color: var(--gold); }

.gold-btn-sm {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 22px;
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .1em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(184,150,62,.35);
  transition: background-position .5s, box-shadow .3s, transform .15s;
}

.gold-btn-sm:hover {
  background-position: right center;
  box-shadow: 0 6px 22px rgba(184,150,62,.5);
  transform: translateY(-1px);
}

.grid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 40px 100px;
}

.grid-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  object-fit: cover;
  transition: transform .3s, box-shadow .3s;
}

.grid-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.pricing {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px;
}

.price-card {
  background: rgba(255,255,255,0.8);
  padding: 30px 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text-brown);
  transition: transform .2s;
}

.price-card:hover { transform: translateY(-3px); }

.offers {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
}

.offer {
  background: rgba(255,255,255,0.8);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  width: 280px;
  transition: transform .22s, box-shadow .22s;
  backdrop-filter: blur(4px);
}

.offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(184,150,62,.2);
}

.offer h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-brown);
  margin-bottom: 10px;
  letter-spacing: .05em;
}

.offer button {
  margin-top: 20px;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(184,150,62,.35);
  transition: background-position .5s, transform .15s;
}

.offer button:hover {
  background-position: right center;
  transform: translateY(-1px);
}

.form-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px;
  background: rgba(255,255,255,0.80);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px);
}

.form-container h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-brown);
  letter-spacing: .06em;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(184,150,62,.3);
  border-radius: 7px;
  background: rgba(255,255,255,.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.12);
}

textarea {
  height: 120px;
  resize: none;
}

.gold {
  display: block;
  margin: 30px auto 0;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  letter-spacing: .1em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(184,150,62,.35);
  transition: background-position .5s, box-shadow .3s, transform .15s;
}

.gold:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(184,150,62,.5);
  transform: translateY(-1px);
}

.hero-small {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-small img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-small h1,
.hero-small p {
  position: relative;
  z-index: 1;
  color: var(--text-brown);
}

.hero-small h1 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  letter-spacing: .08em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .navbar { padding: 16px 24px; }

  .hero-section {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 60px 30px 80px;
    gap: 40px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding: 30px 20px;
  }

  .card { max-width: 480px; width: 100%; }

  .services { padding: 20px 20px 60px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-images {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .offers {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .row { flex-direction: column; }

  .form-container { margin: 40px 16px; padding: 30px 20px; }

  nav { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .big-logo-icon { width: 120px; height: 120px; font-size: 5.5rem; }
  .big-logo-name { font-size: 1.4rem; }
}
