:root {
  --sw-white: #ffffff;
  --sw-gold: #d8b46b;
  --sw-soft-gold: #f8f1e3;
  --sw-gray: #f5f5f5;
  --sw-text: #2b2b2b;
  --sw-font: "Poppins", sans-serif;
}

body {
  margin: 0;
  font-family: var(--sw-font);
  background-color: #fff8ef;
  color: var(--sw-text);
  line-height: 1.6;
}

.sw-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.sw-hero {
  position: relative;
  background: url('../img/parallax-bg.jpg') center/cover no-repeat, linear-gradient(135deg, #fff0e6 0%, #f4d9b4 100%);
  color: #2b1a1a;
  text-align: center;
  padding: 120px 20px 160px;
  overflow: hidden;
}

.sw-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.sw-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ffffff98;
}

.sw-btn {
  background: #c7a557;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.sw-btn:hover {
  background: #b89346;
  transform: translateY(-2px);
}

.sw-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.sw-hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* OFFERS */
.sw-offer-hero {
  background: linear-gradient(135deg, #fff0e6 0%, #f4d9b4 100%);
  border-radius: 2rem;
  padding: 6rem 2rem;
  margin: 4rem 2rem;
  overflow: hidden;
  color: #3b2121;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sw-offer-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.sw-offer-hero-text {
  max-width: 600px;
}

.sw-offer-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sw-offer-hero-desc {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #5a3a2a;
}

.sw-offer-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}

.sw-feature {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 0.6rem;
}

.sw-feature-icon {
  font-size: 1.4rem;
}

.sw-offer-hero-img img {
  width: 450px;
  max-width: 100%;
  border-radius: 2rem;
  
  transition: transform 0.3s ease;
}

.sw-offer-hero-img img:hover {
  transform: scale(1.05);
}

.sw-btn-hero {
  font-size: 1.2rem;
  padding: 16px 40px;
  border-radius: 40px;
  background: #c7a557;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.sw-btn-hero:hover {
  background: #b89346;
  transform: translateY(-2px);
}
/* RESPONSIBLE */
.sw-responsible {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff5eb, #fde8d0);
  border-radius: 16px;
  margin: 3rem 0;
}

.sw-section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #b45c2e;
  margin-bottom: 3rem;
  position: relative;
}

.sw-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #cfa24e;
  margin: 12px auto 0;
  border-radius: 2px;
}

.sw-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sw-responsible-card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sw-responsible-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.sw-responsible-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.sw-responsible-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #a6542d;
}

.sw-responsible-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3b2a1e;
}

.final-card {
  background: #f9e7d2;
  border: 2px solid #cfa24e;
}
/* FOOTER */
.sw-footer {
  background-color: #080606;
  color: #fff;
  font-family: var(--sw-font);
  text-align: center;
  padding: 5rem 1rem 3rem;
  border-top: 1px solid #e5e5e5;
  position: relative;
  z-index: 1;
}

/* Logos de confiance */
.sw-footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.sw-footer .footer-logos a,
.sw-footer .footer-logos span {
  display: inline-block;
  border-radius: 12px;
  background: var(--sw-soft-gold);
  padding: 0.3rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.sw-footer .footer-logos a:hover,
.sw-footer .footer-logos span:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sw-footer .footer-logos img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Informations légales */
.sw-footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.8rem;
}

.sw-footer strong {
  color: var(--sw-gold);
}

/* Liens utiles */
.sw-footer .footer-a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sw-footer .footer-a a {
  color: #5a3a2a;
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #fff8ef 0%, #f4e3d1 100%);
  transition: all 0.3s ease;
}

.sw-footer .footer-a a:hover {
  color: var(--sw-white);
  background: var(--sw-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Copyright */
.sw-footer p:last-child {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
.cf-guide {
  background: linear-gradient(135deg, #fff8ef 0%, #f4e3d1 100%);
  padding: 4rem 1rem;
  font-family: var(--sw-font);
  color: #3b2121;
}

.cf-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.cf-guide-intro {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.8;
  color: #5a3a2a;
}

.cf-guide-block {
  background: var(--sw-white);
  padding: 2rem;
  margin-bottom: 1.8rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-guide-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cf-guide-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sw-gold);
}

.cf-guide-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cf-guide-list {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

.cf-guide-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  list-style: none;
}

.cf-guide-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sw-gold);
  font-weight: bold;
}

.cf-guide-block.final {
  border: 2px solid var(--sw-gold);
}

.cf-contact {
  background: linear-gradient(135deg, #fff8f0, #f2e0c6);
  padding: 5rem 1rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem 0;
}

.cf-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3b2121;
}

.cf-contact-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #5a3a2a;
}

.cf-contact-form {
  max-width: 700px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 1.5rem;
}

.cf-form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cf-form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #3b2121;
}

.cf-form-group input,
.cf-form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #d8b46b;
  font-size: 1rem;
  font-family: var(--sw-font);
  outline: none;
  transition: all 0.3s ease;
}

.cf-form-group input:focus,
.cf-form-group textarea:focus {
  border-color: #c7a557;
  box-shadow: 0 4px 12px rgba(199, 165, 87, 0.3);
}

.cf-btn {
  background: #c7a557;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-btn:hover {
  background: #b89346;
  transform: translateY(-2px);
}

.cf-contact-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #3b2121;
}

.cf-contact-info p {
  margin: 0.5rem 0;
}

/* ----------- ADAPTIVE ----------- */
@media (max-width: 1024px) {
  .sw-footer .trust-inner {
    gap: 1rem;
  }

  .sw-footer .trust-inner .age-big {
    font-size: 1.3rem;
  }
  .sw-hero-title {
    font-size: 2.2rem;
  }

  .sw-offer-grid {
    gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  .sw-hero {
    padding: 7rem 1rem;
  }

  .sw-hero-title {
    font-size: 1.9rem;
  }

  .sw-hero-subtitle {
    font-size: 1rem;
  }

  .sw-offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sw-offer-card {
    padding: 1.2rem;
  }
}

@media (ma
