/* Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  background: none;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7F7F7;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #181821;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #FF7D2A;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #C85D1E;
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181821;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
}
strong {
  color: #FF7D2A;
  font-weight: 600;
}

/* Container and content spacing */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Section spacing & patterns */
.section, .hero, .features, .services-overview, .services-detail, .cta, .about-promo, .about, .testimonial-preview, .sizing-guide, .legal, .confirmation, .contact-form {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(255, 125, 42, 0.09);
}
.section:last-child, .confirmation {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,24,33, .06);
  border: 1px solid #FFE7D1;
  color: #181821;
  min-width: 240px;
}
.testimonial-card p {
  margin-bottom: 10px;
  font-weight: 500;
  color: #222;
  font-size: 1.05rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: #FF7D2A;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature icons */
.features ul, .features ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li, .about-promo ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF5EC;
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255,125,42,0.07);
}
.features li img, .features ol img {
  width: 30px;
  height: 30px;
  background: #FF7D2A18;
  border-radius: 48px;
  padding: 5px;
}

.about-promo ul {
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF7D2A;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(255, 125, 42, 0.18);
  padding: 14px 36px;
  transition: background 0.14s, box-shadow 0.14s, transform 0.15s;
  cursor: pointer;
  margin-top: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #C85D1E;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(255,125,42,0.32);
  text-decoration: none;
  color: #FFF;
}

/* Header/Nav */
header {
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(24,24,33, 0.04);
  padding: 18px 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img {
  height: 50px;
  width: auto;
  border-radius: 12px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  color: #181821;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 16px;
  padding: 7px 16px;
  transition: background 0.14s, color 0.16s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #FF7D2A12;
  color: #FF7D2A;
}
.mobile-menu-toggle {
  display: none;
  background: #FF7D2A;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  margin-left: 15px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FF7D2A;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,33,0.8);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FF7D2A;
  color: #FFF;
  border: none;
  border-radius: 100px;
  font-size: 2rem;
  width: 44px; height: 44px;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  transition: background 0.14s;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  background: #C85D1E;
}
.mobile-nav {
  background: #FFF;
  border-radius: 18px 0 0 18px;
  min-width: 250px;
  width: 70vw; max-width: 350px;
  min-height: 100vh;
  box-shadow: -8px 0 32px rgba(24,24,33, 0.13);
  padding: 36px 34px 54px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  pointer-events: auto;
}
.mobile-nav a {
  padding: 12px 4px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181821;
  border-radius: 12px;
  font-weight: 500;
  width: 100%;
  transition: background 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #FF7D2A14;
  color: #C85D1E;
}

/* Main Hero & Cards */
.hero {
  margin-bottom: 60px;
  padding: 55px 20px 45px 20px;
  background: #FFF5EC;
  border-radius: 30px;
  box-shadow: 0 8px 40px 0 rgba(255, 125, 42, 0.10);
  text-align: left;
}
.hero h1 {
  font-size: 2.6rem;
  color: #181821;
  margin-bottom: 16px;
}
.hero p {
  color: #5B3A2C;
  font-size: 1.12rem;
}

.services-overview ul, .services-detail .service-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-bottom: 28px;
}
.services-overview li, .service-item {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(255,125,42, 0.08);
  padding: 18px 20px;
}
.service-item {
  min-width: 255px;
}
.services-detail .service-list {
  gap: 18px;
}
.services-detail .service-item h3 {
  color: #FF7D2A;
  font-size: 1.32rem;
}

/* Sizing Guide Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(255,125,42, 0.08);
  overflow: hidden;
}
thead th {
  background: #FFF5EC;
  color: #181821;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 10px;
  font-weight: 600;
  border-bottom: 2px solid #FFDCC2;
  font-size: 1rem;
}
tbody td {
  text-align: center;
  padding: 10px 8px;
  border-bottom: 1px solid #FFF2E2;
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Newsletter / Social / Footer */
.newsletter-signup {
  background: #FFF5EC;
  border-radius: 18px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0 1px 4px rgba(255,125,42,0.06);
  min-width: 220px;
  margin-bottom: 20px;
}
.newsletter-signup h3 {
  margin-bottom: 10px;
  color: #FF7D2A;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(255,125,42,0.11);
  transition: transform 0.12s, box-shadow 0.14s;
}
.social-links a:hover img {
  transform: scale(1.07) rotate(-4deg);
  box-shadow: 0 4px 14px 0 rgba(255,125,42,0.22);
}

footer {
  margin-top: 40px;
  background: #FFF5EC;
  padding: 38px 0 24px 0;
  border-top: 3px solid #FF7D2A25;
  font-size: 1rem;
}
footer .container {
  padding-left: 0;
  padding-right: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #181821;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #FF7D2A;
}
.contact-info {
  font-size: 0.98em;
  color: #181821;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}
.contact-info a {
  color: #FF7D2A;
}

/* Map Placeholder */
.map-placeholder {
  margin: 22px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #FFF5EC;
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 1rem;
  color: #723c0f;
  font-weight: 500;
}
.map-placeholder img {
  width: 34px; height: 34px;
  background: #FF7D2A24;
}

/* Confirmation / Merci */
.confirmation {
  background: #FFF5EC;
  border-radius: 25px;
  box-shadow: 0 4px 24px 0 rgba(255, 125, 42, 0.13);
  text-align: center;
  padding: 60px 22px 45px 22px;
  margin-bottom: 0;
}
.confirmation h1 {
  color: #FF7D2A;
}
.confirmation .cta-button {
  margin-top: 22px;
}

/* Cookie Banner + Modal */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 1200;
  background: #FFF9F5;
  color: #181821;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  box-shadow: 0 -4px 18px 0 rgba(255,125,42,0.16);
  border-radius: 20px 20px 0 0;
  gap: 18px;
  animation: bannerSlideIn 0.5s cubic-bezier(.42,0,.18,1);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #FF7D2A;
  color: #FFF;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, transform 0.13s;
  box-shadow: 0 2px 6px rgba(255,125,42,0.13);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #C85D1E;
  transform: scale(1.04) translateY(-1px);
}
.cookie-btn.reject {
  background: #E8DBCE;
  color: #181821;
}
.cookie-btn.reject:hover {
  background: #FFDCC2;
  color: #FF7D2A;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,24,33,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.38s;
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 24px;
  padding: 34px 28px 24px 28px;
  max-width: 400px;
  width: 96vw;
  color: #181821;
  box-shadow: 0 6px 32px 0 rgba(255,125,42,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopup 0.42s cubic-bezier(.51,0,.17,1);
}
@keyframes modalPopup {
  from { transform: scale(.8); opacity: .4;} to {transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #FF7D2A;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  font-size: 1.25rem;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0 0 16px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #222;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E8DBCE;
  position: relative;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  transition: background 0.12s;
  margin-right: 8px;
}
.cookie-modal .toggle:checked {
  background: #FF7D2A;
}
.cookie-modal .toggle::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 2px; left: 2px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.17s cubic-bezier(.7,0,.18,1);
}
.cookie-modal .toggle:checked::before {
  left: 18px;
}
.cookie-modal .category-label {
  flex: 1 1 0;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FF7D2A;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 100px;
  margin-top: -12px;
  margin-right: -8px;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover {
  color: #C85D1E;
}

/* Legal (mentions, politique) */
.legal ul {
  margin-bottom: 22px;
  padding-left: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.legal ul li {
  list-style-type: disc;
}

/* Utilities */
.hide {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .desktop-nav {
    gap: 22px;
  }
  footer .content-wrapper {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero {
    padding: 36px 8px 20px 8px;
    border-radius: 21px;
  }
  .section, .features, .services-overview, .services-detail, .cta, .about-promo, .about, .testimonial-preview, .sizing-guide, .legal, .confirmation, .contact-form {
    padding: 26px 7px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding: 12px 0 10px 0;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    font-size: 0.96em;
    min-width: unset;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  h3 {
    font-size: 1.11rem;
  }
  .hero, .section, .features, .services-overview, .services-detail, .cta, .about-promo, .about, .testimonial-preview, .sizing-guide, .legal, .confirmation, .contact-form {
    padding: 18px 4px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .services-overview ul, .features ul, .features ol, .services-detail .service-list {
    gap: 10px;
  }
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 16px;
  }
  .newsletter-signup, .about-promo ul, .about-promo ul li, .map-placeholder, .service-item {
    padding: 10px 10px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 10px;
    font-size: 0.99em;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cookie-modal {
    width: 96vw;
    min-width: unset;
    max-width: 98vw;
    padding: 18px 8px 12px 8px;
  }
}

/* Subtle Micro-interactions */
.card, .testimonial-card, .services-overview li, .service-item, .features li, .newsletter-signup {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .services-overview li:hover, .service-item:hover, .features li:hover, .newsletter-signup:hover {
  box-shadow: 0 8px 32px 0 rgba(255,125,42,0.15);
  transform: translateY(-3px) scale(1.011);
}

/* Scrollbar styling -- warm & friendly */
::-webkit-scrollbar {
  width: 12px;
  background: #FFF5EC;
}
::-webkit-scrollbar-thumb {
  background: #FFDCC2;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF7D2A66;
}
