:root {
  --beige: #ebe7de;
  --rose: #c98f7c;
  --rose-dark: #8f543f;
  --green: #12392f;
  --white: #fffaf5;
  --text: #352c26;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(235, 231, 222, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.burger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 50px;
}

.hero,
.page-hero {
  padding: 7rem 0 5rem;
}

.hero {
  background: var(--rose);
  color: var(--white);
}

.hero-grid,
.about-grid,
.two-columns,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero h1,
.page-hero h1,
.section h2,
.quote-box p,
.price {
  font-family: "Cormorant Garamond", serif;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero p,
.hero-narrow,
.section-intro p,
.about-grid p,
.two-columns p {
  font-size: 1.02rem;
}

.hero-card img {
  min-height: 520px;

}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-tag {
  color: var(--rose-dark);
}

.section-tag.light {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--green);
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--white);
}

.section {
  padding: 5rem 0;
}

.soft-bg {
  background: #efede7;
}

.dark-section {
  background: var(--green);
  color: var(--white);
}

.accent-bg {
  background: var(--rose);
}

.brown-bg {
  background: var(--rose-dark);
}

.pricing-hero {
  background: #d7b2a5;
}

.pricing-note {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 25px;
  text-align: center;
}

.section-intro h2,
.about-grid h2,
.two-columns h2,
.contact-grid h2,
.center h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.card,
.info-card,
.pricing-card,
.contact-form {
  background: rgba(255, 250, 245, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.info-card,
.pricing-card,
.contact-form {
  padding: 2rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose-dark);
  font-weight: 700;
}

.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  height: 250px;
  margin-bottom: 1rem;
}

.gallery-card h3,
.info-card h3,
.card h3,
.pricing-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.quote-section {
  background: var(--green);
  color: var(--white);
}

.quote-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.quote-box p {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.center {
  text-align: center;
}

.hero-narrow {
  max-width: 760px;
}

.center .hero-narrow {
  margin: 0 auto 2rem;
}

.cards-3,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card,
.pricing-card {
  height: 100%;
}

.pricing-card {
  background: rgba(255, 250, 245, 0.9);
}

.pricing-card .price {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.pricing-card .price span {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
}

.pricing-card ul li {
  margin-bottom: 0.6rem;
}

.contact-section {
  background: var(--rose);
}

.contact-form {
  background: rgba(255,255,255,0.86);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  font: inherit;
  background: #fff;
}

.form-message {
  margin-top: 1rem;
  font-weight: 600;
}

.footer {
  background: var(--green);
  color: var(--white);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .two-columns,
  .contact-grid,
  .cards-3,
  .pricing-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .burger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 1rem;
    width: min(280px, calc(100% - 2rem));
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    padding: 1.2rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .page-hero {
    padding-top: 5.5rem;
  }

  .hero-card img {
    min-height: auto;
  }
}

.form-message {
  margin-top: 1rem;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 70x;
  margin-bottom: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card-large {
  grid-column: span 2;
  padding: 40px;
}

.process-card-header {
  margin-bottom: 30px;
}

.process-card-header h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 24px;
}

.process-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 18px;
  color: #d85b4d; /* à adapter à ta palette */
  font-weight: bold;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.process-step p {
  margin-bottom: 14px;
}

.process-step ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.process-step li {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .pricing-card-large {
    grid-column: span 3;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-large {
    grid-column: span 1;
    padding: 28px;
  }

  .process-card-header h2 {
    font-size: 1.6rem;
  }
}

.calendly-section {
  text-align: center;
}

.calendly-text {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.calendly-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.calendly-inline-widget {
  width: 100%;
  max-width: 900px;
  height: 700px;
}

.instagram-link {
  font-size: 24px;
  color: #E1306C;
  transition: transform 0.2s ease, color 0.2s ease;
}

.instagram-link:hover {
  transform: scale(1.2);
  color: #C13584;
}