/* ============================================================
   ÜRGOL EVENTS — Global Stylesheet
   Design : Éditorial raffiné · Vert profond + Ivoire + Ocre
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FAFAF6;
  color: #1C2B1A;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --green:      #1A4731;
  --green-mid:  #2D6A4F;
  --green-light:#52B788;
  --green-pale: #D8EDDF;
  --ivory:      #FAFAF6;
  --ivory-dark: #F0EDE4;
  --ocre:       #C8873B;
  --ocre-light: #F5E6D3;
  --dark:       #1C2B1A;
  --gray:       #6B7280;
  --gray-light: #E8E8E2;
  --white:      #FFFFFF;
  --radius:     4px;
  --radius-lg:  12px;
  --shadow:     0 2px 20px rgba(28,43,26,.08);
  --shadow-lg:  0 8px 48px rgba(28,43,26,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: #374151; }
.lead { font-size: 1.15rem; color: #4B5563; line-height: 1.75; }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ocre); margin-bottom: .75rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-intro { max-width: 620px; color: #4B5563; font-size: 1.05rem; line-height: 1.75; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.compact { padding: 64px 0; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }

/* ── NAVIGATION ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,71,49,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(26,71,49,1); box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px;
  max-width: 1280px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--ivory);
}
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--ocre);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--ocre) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 4px !important;
}
.nav-cta:hover { background: #b8762f !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: white; }
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--green); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: block; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .9rem; padding: 13px 28px;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--ocre); color: white; }
.btn-primary:hover { background: #b8762f; transform: translateY(-1px); }
.btn-green { background: var(--green-mid); color: white; }
.btn-green:hover { background: var(--green); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: white; }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-arrow::after { content: '→'; margin-left: 4px; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--green-pale); }
.card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--green-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.4rem;
}
.card-icon.ocre { background: var(--ocre-light); }

/* ── BADGE / TAG ── */
.badge {
  display: inline-flex; align-items: center;
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .04em;
}
.badge-green { background: var(--green-pale); color: var(--green); }
.badge-ocre { background: var(--ocre-light); color: #8B5A1E; }
.badge-dark { background: var(--dark); color: white; }

/* ── HERO SHARED ── */
.page-hero {
  background: var(--green); color: white;
  padding: 140px 0 96px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: white; margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto 2.5rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark); color: white;
  padding: 40px 0;
}
.stats-bar .grid-4 { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--ocre);
  display: block; line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  border: 2px dashed var(--green-light);
}
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-prompt {
  background: rgba(26,71,49,.9); color: white;
  padding: 12px 16px; border-radius: 6px;
  font-size: .75rem; line-height: 1.5;
  font-style: italic; max-width: 320px;
  position: relative; z-index: 1;
}
.photo-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: 8px; position: relative; z-index: 1;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border-left: 4px solid var(--ocre);
  box-shadow: var(--shadow);
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--dark); margin-bottom: 20px; line-height: 1.65;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: var(--green); font-size: .9rem;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testimonial-role { font-size: .8rem; color: var(--gray); }

/* ── ICON ROW ── */
.icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.icon-box {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--green-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.icon-box.ocre { background: var(--ocre-light); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--gray-light); margin: 0; }
.section-divider { display: flex; align-items: center; gap: 16px; margin: 48px 0; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }
.section-divider span { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: white;
  margin-bottom: 12px; display: block;
}
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--ocre); color: white; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--ocre); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: 12px;
}
.footer-flags { display: flex; gap: 8px; font-size: 1.2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-up { animation: fadeUp .7s ease both; }
.animate-up-d1 { animation: fadeUp .7s .1s ease both; }
.animate-up-d2 { animation: fadeUp .7s .2s ease both; }
.animate-up-d3 { animation: fadeUp .7s .3s ease both; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--dark); background: white;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

/* ── PRICE CARD ── */
.price-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1.5px solid var(--gray-light);
  position: relative; transition: var(--transition);
}
.price-card.featured {
  border-color: var(--green-mid); border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.price-card:hover { transform: translateY(-3px); }
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--dark);
  line-height: 1;
}
.price-period { font-size: .9rem; color: var(--gray); margin-left: 4px; }
.price-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.price-feature::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.price-feature.x::before { content: '·'; color: var(--gray); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ocre); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--dark); transition: color var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-icon { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-answer { display: none; padding: 0 0 20px; color: #4B5563; font-size: .95rem; line-height: 1.75; }
.faq-answer.open { display: block; }
.faq-icon.open { transform: rotate(45deg); }

/* ── PROCESS STEPS ── */
.step { display: flex; gap: 24px; margin-bottom: 48px; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h4 { margin-bottom: 8px; }
.step-content p { color: #4B5563; font-size: .95rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-white { color: white !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.bg-ivory { background: var(--ivory-dark); }
.bg-green { background: var(--green); }
.bg-dark { background: var(--dark); }
.rounded { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
