:root {
  --cream: #FDF8F3;
  --forest: #243D26;
  --forest-light: #3A5C3D;
  --terra: #C4622D;
  --terra-light: #E8876A;
  --gold: #9A7B3C;
  --bark: #2A2118;
  --sage: #D4E2C8;
  --moss: #6B8F5E;
  --white: #FFFFFF;
  --shadow: rgba(42,33,24,0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--bark); font-size: 16px; line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw; background: rgba(253,248,243,0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(196,98,45,0.12); transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px var(--shadow); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--forest); text-decoration: none; letter-spacing: .02em; }
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; gap: 1.2rem; list-style: none; flex-wrap: wrap; align-items: center; }
.nav-links a { text-decoration: none; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--bark); opacity: .7; transition: opacity .2s, color .2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--terra); }
.nav-cta { background: var(--terra); color: var(--white) !important; opacity: 1 !important; padding: .55rem 1.4rem; border-radius: 2rem; transition: background .2s !important; }
.nav-cta:hover { background: var(--forest) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--bark); border-radius: 2px; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(36,61,38,0.82) 0%, rgba(36,61,38,0.35) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 0 5vw; animation: fadeUp .9s ease both; }
.hero-badge { display: inline-block; background: rgba(196,98,45,0.9); color: var(--white); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; font-weight: 300; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 480px; margin-bottom: 2.2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--terra); color: var(--white); text-decoration: none; padding: .85rem 2rem; border-radius: 2rem; font-weight: 600; font-size: .9rem; letter-spacing: .04em; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); }
.btn-ghost { display: inline-block; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); text-decoration: none; padding: .83rem 2rem; border-radius: 2rem; font-weight: 600; font-size: .9rem; letter-spacing: .04em; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline { display: inline-block; border: 1.5px solid var(--terra); color: var(--terra); text-decoration: none; padding: .83rem 2rem; border-radius: 2rem; font-weight: 600; font-size: .9rem; letter-spacing: .04em; transition: all .2s; }
.btn-outline:hover { background: var(--terra); color: var(--white); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,0.6); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.4); }

/* PAGE HERO (shorter for subpages) */
.page-hero { height: 45vh; min-height: 350px; }

/* SECTIONS */
section { padding: 6rem 5vw; }
.section-label { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); margin-bottom: .8rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: rgba(42,33,24,0.6); max-width: 520px; font-weight: 300; }

/* SERVICES */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.service-card { border-radius: 1.5rem; overflow: hidden; background: var(--cream); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(36,61,38,0.12); }
.service-img { height: 260px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-number { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: var(--terra); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; }
.service-body { padding: 1.8rem; }
.service-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.service-body h3 { font-size: 1.5rem; color: var(--forest); margin-bottom: .6rem; }
.service-body p { font-size: .9rem; color: rgba(42,33,24,0.65); font-weight: 300; line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; color: var(--terra); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-decoration: none; transition: gap .2s; }
.service-link:hover { gap: .7rem; }
.service-link::after { content: '\2192'; }

/* ABOUT */
.about-section { background: var(--cream); padding: 6rem 5vw; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 2rem; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1rem; background: var(--terra); color: var(--white); border-radius: 1.2rem; padding: 1.2rem 1.5rem; text-align: center; box-shadow: 0 8px 32px rgba(196,98,45,0.35); }
.about-badge .number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; line-height: 1; }
.about-badge .label { font-size: .72rem; font-weight: 600; opacity: .85; letter-spacing: .06em; }
.about-text { padding-left: 2rem; }
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--forest); margin-bottom: 1.2rem; }
.about-text p { color: rgba(42,33,24,0.65); font-weight: 300; margin-bottom: 1rem; }
.about-values { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0; }
.value-tag { background: var(--sage); color: var(--forest); padding: .4rem 1rem; border-radius: 2rem; font-size: .8rem; font-weight: 600; }

/* QUOTE */
.quote-section { background: var(--forest); text-align: center; padding: 6rem 5vw; }
.quote-section blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3.5vw, 2.4rem); color: rgba(253,248,243,0.92); font-style: italic; font-weight: 300; max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.5; }
.quote-section cite { color: var(--terra-light); font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-style: normal; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 960px; margin: 3rem auto 0; }
.testi-card { background: var(--white); border-radius: 1.2rem; padding: 2rem; text-align: left; box-shadow: 0 4px 20px var(--shadow); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card p { font-style: italic; color: rgba(42,33,24,.7); font-weight: 300; font-size: .95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--forest); font-weight: 600; }
.testi-name { font-weight: 600; font-size: .9rem; color: var(--bark); }
.testi-sub { font-size: .78rem; color: rgba(42,33,24,.5); }

/* ZONE */
.zone { background: var(--white); }
.zone-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5vw; align-items: start; max-width: 1100px; margin: 0 auto; }
.zone-cities { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.city-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1.2rem; background: var(--cream);
  border-radius: .8rem; border-left: 3px solid var(--terra);
  transition: background .2s, transform .2s; cursor: pointer;
}
.city-item:hover, .city-item.active { background: var(--sage); transform: translateX(4px); }
.city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.city-item.main .city-dot { background: var(--forest); width: 10px; height: 10px; }
.city-name { font-weight: 600; font-size: .9rem; color: var(--forest); }
.city-note { font-size: .78rem; color: rgba(42,33,24,.5); margin-left: auto; white-space: nowrap; }
.city-item.main .city-note { color: var(--terra); font-weight: 600; }
#mapContainer { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 8px 40px var(--shadow); height: 480px; position: relative; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-inner .section-sub { margin: 0 auto 3rem; text-align: center; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(42,33,24,.6); }
.form-group input, .form-group textarea, .form-group select { padding: .85rem 1.1rem; border: 1.5px solid rgba(196,98,45,0.2); border-radius: .7rem; background: var(--white); font-family: 'Nunito', sans-serif; font-size: .9rem; color: var(--bark); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terra); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; background: var(--terra); color: var(--white); border: none; padding: 1rem; border-radius: 2rem; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; margin-top: .5rem; }
.form-submit:hover { background: var(--forest); transform: translateY(-2px); }
.contact-info { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(196,98,45,0.15); }
.info-item { text-align: center; }
.info-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.info-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(42,33,24,.5); margin-bottom: .2rem; }
.info-value { font-size: .95rem; color: var(--forest); font-weight: 600; }
.info-value a { color: var(--terra); text-decoration: none; }

/* FOOTER */
footer { background: var(--forest); color: rgba(253,248,243,.7); padding: 3rem 5vw; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); margin-bottom: .5rem; }
.footer-logo span { color: var(--terra-light); }
footer p { font-size: .8rem; margin-bottom: .3rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
.footer-links a { color: rgba(253,248,243,.5); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--terra-light); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(253,248,243,0.2); display: flex; align-items: center; justify-content: center; color: rgba(253,248,243,.6); text-decoration: none; font-size: .85rem; transition: border-color .2s, color .2s; }
.social-btn:hover { border-color: var(--terra-light); color: var(--terra-light); }

/* CONTENT SECTIONS for subpages */
.content-section { max-width: 800px; margin: 0 auto; padding: 5rem 5vw; }
.content-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--forest); margin-bottom: 1.5rem; }
.content-section h3 { font-size: 1.4rem; color: var(--forest); margin: 2rem 0 1rem; }
.content-section p { color: rgba(42,33,24,0.7); font-weight: 300; margin-bottom: 1.2rem; line-height: 1.8; }
.content-section ul, .content-section ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.content-section li { color: rgba(42,33,24,0.7); font-weight: 300; margin-bottom: .8rem; line-height: 1.7; }
.content-section li strong { color: var(--forest); font-weight: 600; }
.content-section a { color: var(--terra); font-weight: 600; text-decoration: none; }
.content-section a:hover { text-decoration: underline; }

/* PROCESS STEPS */
.process-steps { counter-reset: step; list-style: none; padding-left: 0; }
.process-steps li { counter-increment: step; position: relative; padding-left: 3.5rem; margin-bottom: 1.5rem; }
.process-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem; background: var(--terra); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; }

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem 0; border-radius: 1rem; overflow: hidden; }
.pricing-table th { background: var(--forest); color: var(--white); padding: 1rem 1.2rem; text-align: left; font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.pricing-table td { padding: 1rem 1.2rem; border-bottom: 1px solid rgba(196,98,45,0.1); font-size: .9rem; color: rgba(42,33,24,0.7); }
.pricing-table tr:nth-child(even) { background: var(--white); }
.pricing-table tr:nth-child(odd) { background: var(--cream); }
.pricing-table tr:hover { background: var(--sage); }

/* CARD GRID for prestations/formations */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.info-card { background: var(--white); border-radius: 1.2rem; padding: 2rem; box-shadow: 0 4px 20px var(--shadow); transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(36,61,38,0.12); }
.info-card .card-icon { font-size: 2rem; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: .6rem; }
.info-card p { font-size: .9rem; color: rgba(42,33,24,0.65); font-weight: 300; line-height: 1.7; }
.info-card .card-tag { display: inline-block; background: var(--sage); color: var(--forest); padding: .3rem .8rem; border-radius: 2rem; font-size: .75rem; font-weight: 600; margin-top: .8rem; }

/* LEGAL PAGES */
.legal-section { max-width: 800px; margin: 0 auto; padding: 5rem 5vw; }
.legal-section h2 { font-size: 1.8rem; color: var(--forest); margin-bottom: 1rem; }
.legal-section h3 { font-size: 1.2rem; color: var(--forest); margin: 2rem 0 .8rem; border-left: 3px solid var(--terra); padding-left: 1rem; }
.legal-section p { color: rgba(42,33,24,0.65); font-weight: 300; margin-bottom: 1rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.legal-section li { color: rgba(42,33,24,0.65); font-weight: 300; margin-bottom: .5rem; }
.legal-section .update-date { display: inline-block; background: var(--sage); color: var(--forest); padding: .4rem 1rem; border-radius: 2rem; font-size: .8rem; font-weight: 600; margin-bottom: 2rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding-left: 0; }
  .about-badge { right: 0; bottom: -1rem; }
  .zone-inner { grid-template-columns: 1fr; }
  #mapContainer { height: 320px; margin-top: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { gap: 1.5rem; }
  .page-hero { height: 35vh; min-height: 280px; }
  .pricing-table { font-size: .8rem; }
  .pricing-table th, .pricing-table td { padding: .7rem; }
}
