/*
Theme Name: Nid'Ouest Conciergerie
Theme URI: https://nidouest.fr
Author: SARL LIVEL
Author URI: https://nidouest.fr
Description: Thème WordPress pour Nid'Ouest Conciergerie & Gestion locative
Version: 1.0.0
License: Proprietary
Text Domain: nidouest
*/

/* ===== CSS VARIABLES ===== */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(225, 50%, 10%);
  --primary: hsl(225, 60%, 18%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(225, 20%, 96%);
  --muted-foreground: hsl(225, 10%, 45%);
  --accent: hsl(225, 45%, 30%);
  --border: hsl(225, 15%, 90%);
  --royal: hsl(225, 60%, 18%);
  --royal-light: hsl(225, 45%, 30%);
  --royal-deep: hsl(225, 70%, 10%);
  --cream: hsl(40, 20%, 97%);
  --gold: hsl(40, 50%, 60%);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 0.25rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.02em;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

/* ===== UTILITIES ===== */
.section-padding { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .section-padding { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .section-padding { padding-left: 6rem; padding-right: 6rem; } }
@media (min-width: 1280px) { .section-padding { padding-left: 8rem; padding-right: 8rem; } }

.text-display {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 768px) { .text-display { font-size: 3rem; } }
@media (min-width: 1024px) { .text-display { font-size: 3.75rem; } }
@media (min-width: 1280px) { .text-display { font-size: 4.5rem; } }

.text-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
}
@media (min-width: 768px) { .text-subtitle { font-size: 0.875rem; } }

.text-editorial {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
}
@media (min-width: 768px) { .text-editorial { font-size: 1.125rem; } }

.divider-thin {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin-left: auto;
  margin-right: auto;
}

.bg-royal { background-color: var(--royal); }
.bg-royal-deep { background-color: var(--royal-deep); }
.bg-cream { background-color: var(--cream); }
.text-royal { color: var(--royal); }

/* ===== BUTTONS ===== */
.btn-nav {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--royal);
  border: 2px solid var(--royal);
  padding: 0.5rem 0.75rem;
  transition: all 0.3s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .btn-nav { font-size: 1rem; padding: 0.75rem 1.5rem; }
}
.btn-nav:hover { background: var(--royal); color: white; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--royal);
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 0.375rem 1rem;
}
@media (min-width: 640px) { .top-bar { gap: 2rem; } }
.top-bar a {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 300; color: white;
  letter-spacing: 0.05em; transition: opacity 0.3s;
}
@media (min-width: 640px) { .top-bar a { font-size: 0.875rem; } }
.top-bar a:hover { opacity: 0.8; }
.top-bar-divider { width: 1px; height: 0.75rem; background: rgba(255,255,255,0.3); }
.top-bar-icon { width: 0.75rem; height: 0.75rem; flex-shrink: 0; stroke: currentColor; color: #fff; }
@media (min-width: 640px) { .top-bar-icon { width: 0.875rem; height: 0.875rem; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 30px; left: 0; right: 0; z-index: 50;
  background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.7s;
}
.navbar-inner {
  width: 100%; padding: 0.75rem 1rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem;
}
@media (min-width: 640px) { .navbar-inner { padding: 0.75rem 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 1rem 2.5rem; } }
.navbar-logo { height: 3.5rem; width: auto; }
@media (min-width: 640px) { .navbar-logo { height: 4rem; } }
@media (min-width: 768px) { .navbar-logo { height: 5rem; } }
@media (min-width: 1024px) { .navbar-logo { height: 7rem; } }

.nav-links { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
@media (min-width: 1024px) { .nav-links { gap: 1.5rem; } }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { background: transparent; cursor: pointer; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  margin-top: 0.5rem; background: white; border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 200px; z-index: 50;
}
.dropdown.active .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; color: var(--royal); transition: all 0.3s;
}
.dropdown-menu a:hover { background: var(--royal); color: white; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 4px; }
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--foreground); transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu a, .mobile-menu button {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 300; color: var(--foreground); background: none; border: none;
  cursor: pointer; text-align: left; padding: 0;
}
.mobile-submenu { display: none; padding-left: 1rem; flex-direction: column; gap: 1rem; }
.mobile-submenu.open { display: flex; }
.mobile-submenu a { color: var(--muted-foreground); }

/* ===== HERO (Home) ===== */
.hero {
  position: relative; display: flex; align-items: flex-start; justify-content: center;
  background: var(--royal); overflow: hidden;
  padding-top: 10rem; padding-bottom: 2rem;
}
@media (min-width: 768px) { .hero { padding-top: 12rem; padding-bottom: 2.5rem; } }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display); color: var(--primary-foreground);
  font-size: 2.25rem; letter-spacing: 0.15em; font-weight: 300;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero .subtitle {
  font-family: var(--font-display); color: var(--primary-foreground);
  font-size: 1.5rem; letter-spacing: 0.2em; font-weight: 200; margin-top: 0.5rem;
}
@media (min-width: 768px) { .hero .subtitle { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero .subtitle { font-size: 3rem; } }
.hero .location {
  font-size: 1.125rem; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero .location { font-size: 1.5rem; } }
.hero-image-wrapper {
  position: relative; margin: 0 auto; max-width: 28rem; overflow: hidden;
  border-radius: 2px;
  mask-image: radial-gradient(ellipse 90% 85% at center, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at center, black 60%, transparent 100%);
}
.hero-image-wrapper img { width: 100%; height: 16rem; object-fit: cover; display: block; }
@media (min-width: 768px) { .hero-image-wrapper { max-width: 32rem; } .hero-image-wrapper img { height: 20rem; } }

/* Hero carousel (auto-defile) */
.hero-carousel { position: relative; overflow: hidden; width: 100%; }
.hero-carousel-track { display: flex; transition: transform 1s ease-in-out; will-change: transform; }
.hero-carousel-slide { flex: 0 0 100%; min-width: 0; }
.hero-carousel-slide img { width: 100%; height: 16rem; object-fit: cover; display: block; }
@media (min-width: 768px) { .hero-carousel-slide img { height: 20rem; } }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.85); color: var(--royal);
  border: none; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.hero-arrow:hover { background: #fff; color: var(--gold); }
.hero-arrow svg { width: 1.25rem; height: 1.25rem; }
.hero-arrow-prev { left: 0.75rem; }
.hero-arrow-next { right: 0.75rem; }
.hero-dots {
  position: absolute; bottom: 0.875rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 5;
}
.hero-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot:hover { background: rgba(255,255,255,0.8); }
.hero-dot.is-active { background: #fff; transform: scale(1.3); }

/* ===== MANIFESTE ===== */
.manifeste {
  padding: 0.5rem 0; background: var(--background);
}
@media (min-width: 768px) { .manifeste { padding: 0.75rem 0; } }
.manifeste-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.manifeste-text {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 300;
  line-height: 1.625; color: var(--foreground);
}
@media (min-width: 768px) { .manifeste-text { font-size: 1.5rem; } }
@media (min-width: 1024px) { .manifeste-text { font-size: 1.875rem; } }

/* ===== TIMELINE ===== */
.timeline { padding: 6rem 0 8rem; background: var(--royal); }
.timeline-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.timeline-heading-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
}
.timeline-title {
  font-size: 1.5rem; letter-spacing: 0.15em;
  color: var(--primary-foreground); text-align: center;
  font-weight: 300; margin-bottom: 0;
}
@media (min-width: 768px) { .timeline-title { font-size: 2.25rem; } }
.timeline-container { position: relative; max-width: 72rem; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .timeline-line { left: 36px; } }
.timeline-items { display: flex; flex-direction: column; gap: 2.5rem; }
.timeline-item { display: flex; align-items: flex-start; gap: 1.5rem; }
@media (min-width: 768px) { .timeline-item { gap: 2rem; } }
.timeline-year {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 300;
  width: 3.5rem; flex-shrink: 0; text-align: right; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .timeline-year { font-size: 1.25rem; width: 4rem; } }
.timeline-year.current { color: var(--primary-foreground); }
.timeline-dot {
  position: relative; top: 10px; width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.3);
}
.timeline-dot.current { background: rgba(255,255,255,0.6); }
.timeline-text {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.625;
  font-weight: 300; color: rgba(255,255,255,0.7); white-space: pre-line; padding-top: 2px;
}
.timeline-text.current { color: var(--primary-foreground); }

/* ===== DUAL PATH ===== */
.dual-path { background: var(--background); }
.dual-path-grid { display: grid; }
@media (min-width: 768px) { .dual-path-grid { grid-template-columns: 1fr 1fr; } }
.dual-path-left {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .dual-path-left { border-bottom: none; border-right: 1px solid var(--border); padding: 2rem 0; }
}
.dual-path-right {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 0; transition: background 0.7s; cursor: pointer;
}
@media (min-width: 768px) { .dual-path-right { padding: 2rem 0; } }
.dual-path-right:hover { background: rgba(225, 225, 230, 0.5); }
.offer-link { display: block; }
.offer-link h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 300;
  color: var(--foreground); margin-bottom: 0.25rem;
}
.offer-link p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.offer-link .discover {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--foreground); transition: gap 0.5s;
}
.offer-link:hover .discover { gap: 1rem; }
.offers-list { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 24rem; }
.offer-separator { border-top: 1px solid var(--border); }

/* ===== PAGE HERO (conciergerie / gestion locative) ===== */
.page-hero {
  display: flex; align-items: center; justify-content: center;
  background: var(--royal); padding-top: 14rem; padding-bottom: 5rem;
}
.page-hero-inner { max-width: 48rem; margin: 0 auto; }
.page-hero .page-label {
  color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 3rem;
}
.page-hero h1, .page-hero h2 {
  font-family: var(--font-display); font-weight: 300;
  color: rgba(255,255,255,0.6); text-align: center;
  font-size: 1.25rem; margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .page-hero h1, .page-hero h2 { font-size: 1.5rem; } }
@media (min-width: 1024px) { .page-hero h1, .page-hero h2 { font-size: 1.875rem; } }

/* Feature cards */
.feature-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .feature-cards { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  border: 1px solid rgba(255,255,255,0.15); border-radius: 0.5rem;
  padding: 1rem; background: rgba(255,255,255,0.05);
}
.feature-card-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  color: var(--primary-foreground); margin-bottom: 0.25rem;
}
.feature-card p { color: rgba(255,255,255,0.45); font-size: 0.75rem; line-height: 1.625; }

.feature-band { padding: 0 0 6rem; }
.feature-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .feature-band-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-band-item { text-align: center; color: var(--primary-foreground); }
.feature-band-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  margin: 0 auto 1.75rem;
  background: var(--background);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25);
}
.feature-band-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}
.feature-band-item p { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.625; max-width: 18rem; margin: 0 auto; }

/* ===== SERVICES SECTION ===== */
.services { padding: 5rem 0 7rem; background: var(--cream); }
.services-title { text-align: center; margin-bottom: 4rem; }
.services-title h2 { font-size: 2.25rem; color: var(--foreground); }
@media (min-width: 768px) { .services { padding: 7rem 0; } }

.phase-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.phase-number {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--primary); color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 500;
}
.phase-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); }
.phase-block { margin-bottom: 4rem; }

.prep-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .prep-grid { grid-template-columns: 1fr 1fr; } }
.prep-card {
  background: var(--background); border-radius: 0.5rem; padding: 1.25rem;
  border: 1px solid var(--border);
}
.prep-card h4 {
  font-family: var(--font-display); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--foreground); margin-bottom: 0.25rem;
}
.prep-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

.ops-box {
  background: var(--background); border-radius: 0.5rem;
  border: 1px solid var(--border); padding: 1.5rem;
}
.ops-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .ops-grid { grid-template-columns: 1fr 1fr; } }
.ops-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ops-item .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; font-size: 0.875rem; }
.ops-item p { font-size: 0.875rem; color: var(--muted-foreground); }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.ops-card {
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  align-items: center;
  min-height: 4.5rem;
}
.ops-card p { font-size: 0.875rem; color: rgba(17,24,39,0.8); line-height: 1.4; margin: 0; }

.revenue-box {
  background: var(--background); border-radius: 0.5rem;
  border: 1px solid var(--border); padding: 1.5rem;
}
.revenue-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.revenue-item .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.revenue-item p { font-size: 0.875rem; color: var(--muted-foreground); }
.revenue-footer {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.revenue-footer h4 {
  font-family: var(--font-display); font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.25rem;
}
.revenue-footer p { font-size: 0.75rem; color: var(--muted-foreground); font-style: italic; }
.pricing-hero {
  position: relative;
  background: var(--royal);
  color: var(--primary-foreground);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 2rem;
}
@media (min-width: 768px) { .pricing-hero { padding: 3rem; } }
.pricing-main { text-align: center; }
.pricing-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.pricing-value span { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; }
.pricing-value small { font-family: var(--font-display); font-size: 2rem; }
.pricing-value em { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-style: normal; }
.pricing-includes { margin-top: 2rem; }
.pricing-includes ul { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.pricing-includes li { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.pricing-note { font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; margin-top: 1.5rem; text-align: center; line-height: 1.625; }
.pricing-hero-split { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-hero-split { grid-template-columns: 1fr 1fr; align-items: center; } }
.pricing-sub { font-size: 0.75rem; font-style: italic; color: rgba(255,255,255,0.7); margin-top: 0.25rem; text-align: center; }
.pricing-mini-grid {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pricing-mini-grid { grid-template-columns: 1fr 1fr; } }
.pricing-mini-grid > div { padding: 1rem 0; text-align: center; }
@media (min-width: 640px) { .pricing-mini-grid > div:first-child { border-right: 1px solid rgba(255,255,255,0.1); } }
.pricing-mini { display: flex; align-items: baseline; justify-content: center; gap: 0.375rem; margin-top: 0.5rem; }
.pricing-mini span { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; }
.pricing-mini small { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }
.hybrid-box {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.hybrid-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--royal);
  margin: 0.25rem 0 1rem;
  text-align: center;
}
.hybrid-box > p { color: var(--muted-foreground); line-height: 1.625; }
.hybrid-label { color: var(--accent); text-align: center; display: block; }
.hybrid-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.25rem; }
@media (min-width: 768px) { .hybrid-grid { grid-template-columns: 1fr 1fr; } }
.hybrid-item { background: var(--cream); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; color: rgba(17,24,39,0.8); font-size: 0.875rem; }
.hybrid-note { color: var(--royal); font-style: italic; font-size: 0.875rem; margin-top: 1rem; }

/* ===== PACKS ===== */
.packs { padding: 5rem 0 7rem; background: var(--royal); }
.packs-header { text-align: center; margin-bottom: 3.5rem; }
.packs-header .label { color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.packs-header h2 { color: var(--primary-foreground); }
.packs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .packs-grid { grid-template-columns: repeat(3, 1fr); } }
.pack-card {
  border-radius: 0.75rem; background: var(--background);
  border: 1px solid var(--border); padding: 1.5rem;
  display: flex; flex-direction: column; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pack-card-header {
  text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pack-card-header h3 {
  font-family: var(--font-display); font-size: 1.125rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--foreground); margin-bottom: 0.75rem;
}
.pack-card-header .price {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 300; color: var(--foreground);
}
.pack-card-header .price span { font-size: 0.875rem; color: var(--muted-foreground); }
.pack-features { display: flex; flex-direction: column; gap: 0.75rem; }
.pack-feature { display: flex; align-items: flex-start; gap: 0.5rem; }
.pack-feature .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pack-feature span { font-size: 0.75rem; line-height: 1.625; color: var(--muted-foreground); }

/* ===== CTA CONTACT ===== */
.cta-contact { padding: 2rem 0 2.5rem; background: var(--royal); }
@media (min-width: 768px) { .cta-contact { padding: 2.5rem 0; } }
.cta-contact-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.contact-box {
  display: inline-flex; align-items: center; gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 0.75rem;
  padding: 1.25rem 2rem; background: var(--background); box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-box img { width: 4rem; height: 4rem; object-fit: contain; }
.contact-box-links { text-align: left; }
.contact-box a {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--royal); font-weight: 500; font-size: 0.875rem;
  transition: color 0.3s; margin-bottom: 0.25rem;
}
.contact-box a:hover { opacity: 0.8; }

/* ===== CTA FULL (gestion locative) ===== */
.cta-full { padding: 4rem 0 5rem; background: var(--royal); }
@media (min-width: 768px) { .cta-full { padding: 5rem 0; } }
.cta-full-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.cta-full h2 { color: var(--primary-foreground); margin-bottom: 1rem; }
.cta-full p { color: rgba(255,255,255,0.5); max-width: 32rem; margin: 0 auto 2.5rem; }

/* ===== AVANTAGES ===== */
.avantages { padding: 5rem 0 7rem; background: var(--cream); }
@media (min-width: 768px) { .avantages { padding: 7rem 0; } }
.avantages-title { text-align: center; margin-bottom: 4rem; }
.avantages-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 72rem; margin: 0 auto;
}
@media (min-width: 768px) { .avantages-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .avantages-grid { grid-template-columns: repeat(3, 1fr); } }
.avantage-card {
  background: var(--background); border-radius: 0.5rem;
  border: 1px solid var(--border); padding: 1.25rem;
}
.avantage-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.avantage-num {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--royal); color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center; font-size: 0.875rem;
}
.avantage-card h3 {
  font-family: var(--font-display); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--foreground); margin-bottom: 0.5rem;
}
.avantage-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* ===== MENTIONS LEGALES ===== */
.mentions { padding-top: 11rem; padding-bottom: 6rem; background: var(--background); }
.mentions-inner { max-width: 48rem; margin: 0 auto; }
.mentions h1 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); margin-bottom: 3rem;
}
@media (min-width: 768px) { .mentions h1 { font-size: 1.875rem; } }
.mentions-content { display: flex; flex-direction: column; gap: 2.5rem; font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.625; }
.mentions-content h2 {
  font-family: var(--font-display); font-size: 1.25rem; color: var(--foreground); margin-bottom: 0.75rem;
}
.mentions-content section { }
.mentions-content p { margin: 0; }
.mentions-content p + p { margin-top: 0.75rem; }

/* ===== RESERVATION / MAINTENANCE ===== */
.maintenance {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--background);
  padding-top: 8rem;
}
@media (min-width: 768px) { .maintenance { padding-top: 10rem; } }
.maintenance-inner { text-align: center; max-width: 42rem; margin: 0 auto; }
.maintenance .label { color: var(--muted-foreground); margin-bottom: 2rem; }
.maintenance h1 { color: var(--foreground); margin-bottom: 1.5rem; }
.maintenance > .maintenance-inner > p.text-editorial { color: var(--muted-foreground); max-width: 28rem; margin: 0 auto; }
.maintenance-links { margin-top: 2rem; }
.maintenance-links p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0.75rem auto 0; }
.maintenance-links p:first-child { margin-bottom: 0.75rem; }
.maintenance-links p:last-child { margin-top: 1rem; }
.maintenance-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--royal);
  color: #fff;
  padding: 0.875rem 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.maintenance-cta:hover { background: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { padding: 4rem 0; background: var(--royal-deep); text-align: center; }
.footer-name {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8); margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .footer-name { font-size: 1.875rem; } }
.footer-founded { font-size: 0.875rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 1rem; }
.footer-locations { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-mentions {
  font-size: 0.875rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
  font-weight: 300; margin-top: 0.75rem; transition: color 0.3s;
}
.footer-mentions:hover { color: rgba(255,255,255,0.6); }
.footer-bottom {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ===== SVG ICONS (inline) ===== */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }

/* ============================================================
   V2 — Reproduction fidèle du rendu React
   ============================================================ */

/* ===== Animations au scroll (Framer-Motion-like) ===== */
.reveal { opacity: 0; transition: opacity 1s ease, transform 1s ease; transition-delay: var(--delay, 0s); }
.reveal-up { transform: translateY(25px); }
.reveal-fade { /* fade only */ }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Page hero V2 (Conciergerie / Gestion locative / Sous-location) ===== */
.page-hero-v2 {
  display: flex; align-items: center; justify-content: center;
  padding-top: 14rem; padding-bottom: 5rem;
}
.page-hero-v2 .page-hero-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.page-hero-v2 h1 {
  font-family: var(--font-display); font-weight: 300; color: white;
  font-size: 2.25rem; letter-spacing: 0.15em; margin: 0;
}
@media (min-width: 768px) { .page-hero-v2 h1 { font-size: 3.75rem; } }
.page-hero-sub {
  font-size: 1rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); margin: 1.5rem 0 0;
}
@media (min-width: 768px) { .page-hero-sub { font-size: 1.125rem; } }
.page-hero-bird {
  width: 2.5rem; height: 2.5rem; object-fit: contain;
  opacity: 0.9; margin: 1.25rem auto 0; display: block;
}
@media (min-width: 768px) { .page-hero-bird { width: 3rem; height: 3rem; } }

/* ===== Feature band V2 (3 atouts blancs sur royal) ===== */
.feature-band-v2 { padding: 0 0 6rem; }
.feature-band-v2 .feature-band-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem 1.5rem;
  max-width: 64rem; margin: 0 auto;
}
@media (min-width: 768px) { .feature-band-v2 .feature-band-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-band-v2 .feature-band-item { text-align: center; padding: 0 1rem; }
.feature-band-icon-wrap { position: relative; display: inline-block; margin-bottom: 1.75rem; }
.feature-band-halo {
  position: absolute; inset: -0.75rem; border-radius: 9999px;
  background: rgba(255,255,255,0.1); filter: blur(24px);
  opacity: 0.6; transition: opacity 0.7s;
}
.feature-band-item:hover .feature-band-halo { opacity: 1; }
.feature-band-v2 .feature-band-icon {
  position: relative; width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.4);
}
.feature-band-v2 .feature-band-icon .icon-lg { width: 1.5rem; height: 1.5rem; }
.feature-band-v2 h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 300;
  color: white; margin-bottom: 0.75rem; letter-spacing: 0.04em;
}
.feature-band-v2 p {
  color: rgba(255,255,255,0.65); font-size: 0.875rem;
  line-height: 1.625; max-width: 18rem; margin: 0 auto;
}

/* ===== Manifeste V2 ===== */
.manifeste-v2 { padding: 0.5rem 0 0.75rem; background: var(--background); }
@media (min-width: 768px) { .manifeste-v2 { padding: 0.75rem 0 1rem; } }
.manifeste-v2 .manifeste-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.manifeste-v2 .divider-thin { margin: 1.25rem auto; }
.manifeste-v2 .manifeste-text {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 300;
  line-height: 1.625; color: var(--foreground);
}
@media (min-width: 768px) { .manifeste-v2 .manifeste-text { font-size: 1.5rem; } }
@media (min-width: 1024px) { .manifeste-v2 .manifeste-text { font-size: 1.875rem; } }

/* ===== Services V2 ===== */
.services-v2 { padding: 5rem 0 7rem; }
@media (min-width: 768px) { .services-v2 { padding: 6rem 0 7rem; } }
.services-v2 .services-inner { max-width: 64rem; margin: 0 auto; }
.services-v2 .services-title {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 300;
  color: var(--foreground); text-align: center; margin: 0 0 2.5rem;
}
@media (min-width: 768px) { .services-v2 .services-title { font-size: 3rem; } }
.services-v2 .phase-block { margin-bottom: 4rem; }
.services-v2 .phase-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.services-v2 .phase-number {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 500;
}
.services-v2 .phase-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
  color: var(--foreground); margin: 0;
}

/* ===== Icon cards (préparation / avantages) ===== */
.icon-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.icon-cards-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .icon-cards-grid--2 { grid-template-columns: 1fr 1fr; } }
.icon-card {
  background: var(--background); border: 1px solid var(--border); border-radius: 0.5rem;
  padding: 1.25rem; display: flex; gap: 1rem;
}
.icon-card h4 {
  font-family: var(--font-display); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--foreground); margin: 0 0 0.25rem;
}
.icon-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; margin: 0; }

/* ===== Icon bubble (rond bleu translucide) ===== */
.icon-bubble {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(35, 51, 102, 0.10); color: var(--royal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-bubble .icon { width: 1rem; height: 1rem; }
.icon-bubble-sm { width: 2.25rem; height: 2.25rem; }
.icon-bubble-sm .icon { width: 1rem; height: 1rem; }

/* ===== Icon chips (opérationnel) ===== */
.icon-chips-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
@media (min-width: 640px) { .icon-chips-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .icon-chips-grid { grid-template-columns: repeat(3, 1fr); } }
.icon-chip {
  background: var(--background); border: 1px solid var(--border); border-radius: 0.5rem;
  padding: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.icon-chip p { font-size: 0.875rem; color: rgba(17,24,39,0.8); line-height: 1.4; margin: 0; }

/* ===== Pricing premium card ===== */
.pricing-card-premium {
  position: relative; background: var(--royal); color: white;
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.pricing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.10) 100%);
  pointer-events: none;
}
.pricing-card-premium .pricing-grid {
  position: relative; display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding: 2rem; align-items: center;
}
@media (min-width: 768px) {
  .pricing-card-premium .pricing-grid { grid-template-columns: 1fr 1fr; padding: 3rem; }
  .pricing-card-premium .pricing-left { border-right: 1px solid rgba(255,255,255,0.15); padding-right: 2.5rem; text-align: left; }
}
.pricing-card-premium .pricing-left { text-align: center; }
.pricing-card-premium .pricing-label { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.pricing-value-xl {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) { .pricing-value-xl { justify-content: flex-start; } }
.pricing-value-xl .num { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; font-weight: 300; }
@media (min-width: 768px) { .pricing-value-xl .num { font-size: 6rem; } }
.pricing-value-xl .pct { font-family: var(--font-display); font-size: 1.875rem; font-weight: 300; }
@media (min-width: 768px) { .pricing-value-xl .pct { font-size: 2.25rem; } }
.pricing-value-xl .ttc { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-left: 0.25rem; }

.pricing-card-premium .pricing-right { display: flex; flex-direction: column; gap: 1rem; }
.pricing-card-premium .pricing-incl { display: flex; align-items: flex-start; gap: 0.75rem; }
.pricing-check { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.pricing-card-premium .pricing-incl p { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin: 0; }

/* Gestion locative — split tarif principal + 2 sous-tarifs */
.pricing-gl-main { position: relative; padding: 1.25rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .pricing-gl-main { padding: 1.5rem 2rem; } }
.pricing-value-md { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.pricing-value-md .num { font-family: var(--font-display); font-size: 3rem; line-height: 1; font-weight: 300; }
@media (min-width: 768px) { .pricing-value-md .num { font-size: 3.75rem; } }
.pricing-value-md .pct { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; }
.pricing-value-md .ttc { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-left: 0.25rem; }
.pricing-sub-italic { font-size: 0.75rem; font-style: italic; color: rgba(255,255,255,0.7); margin: 0.25rem 0 0; }

.pricing-gl-split {
  position: relative; border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pricing-gl-split { grid-template-columns: 1fr 1fr; } }
.pricing-gl-cell { padding: 1rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .pricing-gl-cell { padding: 1.25rem 2rem; } }
@media (min-width: 640px) { .pricing-gl-cell + .pricing-gl-cell { border-left: 1px solid rgba(255,255,255,0.1); } }
@media (max-width: 639px) { .pricing-gl-cell + .pricing-gl-cell { border-top: 1px solid rgba(255,255,255,0.1); } }
.pricing-value-sm { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.pricing-value-sm .num { font-family: var(--font-display); font-size: 2rem; line-height: 1; font-weight: 300; }
@media (min-width: 768px) { .pricing-value-sm .num { font-size: 2.5rem; } }
.pricing-value-sm .pct { font-family: var(--font-display); font-size: 1.125rem; font-weight: 300; }
.pricing-value-sm .ttc { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-left: 0.25rem; }

.pricing-note {
  font-size: 0.875rem; color: var(--muted-foreground); font-style: italic;
  margin: 1.5rem auto 0; max-width: 48rem; text-align: center; line-height: 1.625;
}

/* Stratégie hybride */
.phase-block--hybrid { margin-top: 4rem; }
.hybrid-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; margin-bottom: 2rem; }
.hybrid-bird { width: 2.5rem; height: 2.5rem; object-fit: contain; opacity: 0.9; }
@media (min-width: 768px) { .hybrid-bird { width: 3rem; height: 3rem; } }
.hybrid-label { color: var(--accent); letter-spacing: 0.25em; }
.hybrid-title {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 300;
  color: var(--royal); line-height: 1.1; margin: 0;
}
@media (min-width: 768px) { .hybrid-title { font-size: 3rem; } }
.hybrid-box {
  background: var(--background); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
}
@media (min-width: 768px) { .hybrid-box { padding: 2rem; } }
.hybrid-intro { font-size: 1rem; color: var(--muted-foreground); line-height: 1.625; margin: 0 0 1.25rem; }
.text-royal-strong { color: var(--royal); font-weight: 500; }
.hybrid-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .hybrid-grid { grid-template-columns: 1fr 1fr; } }
.hybrid-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 0.5rem; padding: 1rem;
}
.hybrid-item p { font-size: 0.875rem; color: rgba(17,24,39,0.8); line-height: 1.4; margin: 0; }
.hybrid-note { font-size: 0.875rem; font-style: italic; color: var(--royal); margin: 1.25rem 0 0; }

/* ===== CTA contact (refonte légère pour icônes) ===== */
.cta-contact .contact-box-links a {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--royal); font-weight: 500; font-size: 0.875rem;
  margin-bottom: 0.25rem; transition: opacity 0.3s;
}
.cta-contact .contact-box-links a:hover { opacity: 0.7; }
.icon-xs { width: 0.875rem; height: 0.875rem; }
