/* ============================
   LAV' AND CAUX — Design System
   ============================ */

:root {
  --primary: #134f2d;
  --primary-dark: #0c3a20;
  --primary-light: #1d6b3e;
  --secondary: #f1f7f2;   /* vert très clair presque blanc */
  --secondary-2: #e7f0e9;
  --ink: #0f1d14;
  --muted: #5c6b61;
  --line: #dbe5dd;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(15, 29, 20, .06);
  --shadow-md: 0 12px 36px rgba(15, 29, 20, .10);
  --shadow-lg: 0 24px 60px rgba(15, 29, 20, .18);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   HEADER flottant
   ============================ */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 32px));
  z-index: 100;
  background: rgba(15, 29, 20, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.06);
}

.site-header.solid {
  background: rgba(19, 79, 45, .95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-logo {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.brand-logo svg { width: 22px; height: 22px; }
.brand-name { font-family: 'Fraunces', serif; font-size: 1.05rem; letter-spacing: .12em; line-height: 1; }
.brand-sub  { font-size: .68rem; letter-spacing: .22em; opacity: .72; text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: rgba(255,255,255,.78);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 500;
  transition: all .2s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav a.active { color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--secondary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--secondary); }

.header-cta { padding: 12px 22px; font-size: .85rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 140px 0 60px;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,14,.55) 0%, rgba(10,20,14,.35) 40%, rgba(10,20,14,.85) 100%),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: -1;
}
.hero-inner { max-width: 1100px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.hero h1 { color: #fff; max-width: 18ch; }
.hero-lead {
  max-width: 56ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}

/* Search bar */
.search-bar {
  position: relative;
  z-index: 40;
  margin-top: 40px;
  background: rgba(10, 20, 14, .65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 980px;
  box-shadow: var(--shadow-lg);
}
.search-field {
  flex: 1;
  padding: 12px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  min-width: 0;
}
.search-field:last-of-type { border-right: 0; }
.search-field label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.search-field input,
.search-field select {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  padding: 0;
}
.search-field select option { color: var(--ink); background: #fff; }
.search-field input::placeholder { color: rgba(255,255,255,.45); }
.search-bar .btn { padding: 16px 26px; }

/* ============================
   CUSTOM SELECT (thème site)
   ============================ */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select .native-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.cs-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}
.cs-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-value.is-placeholder { color: rgba(255,255,255,.55); }
.cs-chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: rgba(255,255,255,.7);
}
.custom-select[data-open="true"] .cs-chevron { transform: rotate(180deg); color: #fff; }

.cs-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -8px;
  right: -8px;
  background: rgba(19, 55, 35, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.9,.3,1.2);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
}
.custom-select[data-open="true"] .cs-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cs-panel::-webkit-scrollbar { width: 6px; }
.cs-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 10px; }

.cs-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.cs-option:hover { background: rgba(255,255,255,.08); color: #fff; }
.cs-option.is-selected {
  background: var(--primary-light);
  color: #fff;
}
.cs-option .cs-check {
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity .15s ease;
  flex-shrink: 0;
}
.cs-option.is-selected .cs-check { opacity: 1; }

/* Variante sur fond clair (filtres page Biens) */
.filters .cs-trigger { color: var(--ink); }
.filters .cs-value.is-placeholder { color: var(--muted); }
.filters .cs-chevron { color: var(--muted); }
.filters .custom-select[data-open="true"] .cs-chevron { color: var(--primary); }
.filters .cs-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(15,29,20,.14);
}
.filters .cs-option { color: var(--ink); }
.filters .cs-option:hover { background: var(--secondary); color: var(--primary-dark); }
.filters .cs-option.is-selected { background: var(--primary); color: #fff; }

/* ============================
   SECTIONS communes
   ============================ */
section { padding: 100px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--primary);
}

.bg-light { background: var(--secondary); }
.bg-green { background: #cfe0d3; }

/* ============================
   PROMESSE — citation
   ============================ */
.promise {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.promise-eyebrow {
  color: rgba(255,255,255,.55);
  display: inline-block;
  margin-bottom: 40px;
}
.promise-eyebrow::before { background: rgba(255,255,255,.55); }
.promise-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.3;
  margin: 0 auto 50px;
  max-width: 1000px;
  color: #fff;
}
.promise-dots {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
}
.promise-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.promise-dots .is-active { background: #d9a35a; }

/* ============================
   EXCELLENCE — 4 étapes
   ============================ */
.excellence { background: var(--secondary); }
.excellence-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 0 0 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.step {
  position: relative;
  padding: 48px 34px 44px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: background .3s ease, color .3s ease;
}
.step:last-child { border-right: 0; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-style: italic;
  color: rgba(15,29,20,.14);
  letter-spacing: .02em;
  margin-bottom: 64px;
  transition: color .3s ease;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin: 0 0 18px;
  color: var(--ink);
  transition: color .3s ease;
}
.step-text {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
  transition: color .3s ease;
}
.step:hover {
  background: var(--primary);
  border-right-color: transparent;
  cursor: pointer;
}
.step:hover + .step { border-left-color: transparent; }
.step:hover .step-num { color: rgba(255,255,255,.28); }
.step:hover .step-title { color: #fff; }
.step:hover .step-text { color: rgba(255,255,255,.85); }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { min-height: 260px; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; padding: 36px 28px; }
  .step:last-child { border-bottom: 0; }
  .step-num { margin-bottom: 32px; }
}
.bg-primary { background: var(--primary); color: #fff; }
.bg-primary h2 { color: #fff; }
.bg-primary .section-eyebrow { color: rgba(255,255,255,.75); }
.bg-primary .section-eyebrow::before { background: rgba(255,255,255,.75); }

/* ============================
   CARTES BIENS
   ============================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.property-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(15, 29, 20, .04);
  display: block;
  cursor: pointer;
}
.property-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.property-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary-2);
  border-radius: 16px;
}
.property-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.property-card:hover .property-media img { transform: scale(1.04); }

/* Bulle "Vue mer" en bas à droite avec encoche dans l'image */
.property-tag-wrap {
  position: absolute;
  right: 0; bottom: 0;
  padding: 10px 0 0 10px;
  background: #fff;
  border-top-left-radius: 22px;
}
.property-tag-wrap::before,
.property-tag-wrap::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  background: transparent;
  pointer-events: none;
}
.property-tag-wrap::before {
  top: -22px; right: 0;
  border-bottom-right-radius: 22px;
  box-shadow: 11px 11px 0 0 #fff;
}
.property-tag-wrap::after {
  bottom: 0; left: -22px;
  border-bottom-right-radius: 22px;
  box-shadow: 11px 11px 0 0 #fff;
}

.property-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.property-tag.sea      { background: #b8dcc4; color: #0c3a20; }
.property-tag.beach    { background: #ffd98a; color: #5a3a08; }
.property-tag.nature   { background: #a9d3b4; color: #0c3a20; }
.property-tag.heritage { background: #e5c59a; color: #4d2a10; }

.property-body { padding: 20px 14px 14px; }

.property-location {
  font-size: .74rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

.property-title {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.15;
  font-weight: 400;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.amenity-ic {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--primary);
}
.amenity-ic svg { width: 22px; height: 22px; }
.amenity-lbl {
  font-size: .78rem;
  color: var(--ink);
  font-weight: 400;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.property-meta {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.3;
}
.property-price {
  text-align: right;
  color: var(--primary);
  font-family: 'Fraunces', serif;
  line-height: 1;
}
.price-value {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--primary);
}
.price-unit-sm {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  margin-left: 2px;
}

/* ============================
   MODALE — détails bien
   ============================ */
body.no-scroll { overflow: hidden; }

.property-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.property-modal.is-open { opacity: 1; pointer-events: auto; }
.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pm-shell {
  position: relative;
  width: min(1100px, 100%);
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
  transform: translateY(30px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}
.property-modal.is-open .pm-shell { transform: translateY(0) scale(1); }

.pm-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  z-index: 3;
  transition: transform .2s ease, background .2s ease;
}
.pm-close:hover { transform: rotate(90deg); background: #fff; }

.pm-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.pm-scroll::-webkit-scrollbar { width: 8px; }
.pm-scroll::-webkit-scrollbar-thumb { background: rgba(15,29,20,.2); border-radius: 10px; }

.pm-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--secondary-2);
}
.pm-hero img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.pm-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 32px 0;
  flex-wrap: wrap;
}
.pm-thumb {
  width: 86px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--secondary-2);
  padding: 0;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb:hover { transform: translateY(-2px); }
.pm-thumb.is-active { border-color: var(--primary); }

.pm-body { padding: 40px 54px 30px; }

.pm-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pm-head-main { flex: 1; min-width: 260px; }
.pm-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pm-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}
.pm-rating { text-align: right; }
.pm-stars { color: #d9a35a; font-size: 1.15rem; letter-spacing: 3px; }
.pm-rating-text { font-size: .88rem; color: var(--muted); margin-top: 6px; }

.pm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.pm-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 500;
  background: #fff;
}

.pm-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 36px;
}

.pm-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.pm-col-title {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.pm-amenities-flow {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 14px;
}
.pm-amenity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .95rem;
}
.pm-amenity-ic { color: var(--primary); display: inline-flex; }
.pm-amenity-ic svg { width: 18px; height: 18px; }

.pm-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: .95rem;
}
.pm-detail-ic {
  display: inline-flex;
  color: var(--primary);
  flex-shrink: 0;
}
.pm-detail-ic svg { width: 20px; height: 20px; }

.pm-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 22px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pm-price-label {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-bottom: 2px;
}
.pm-price { font-family: 'Fraunces', serif; color: var(--primary); line-height: 1; }
.pm-price-value { font-size: 2.2rem; }
.pm-price-unit { font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--muted); margin-left: 4px; }
.pm-cta-btn {
  letter-spacing: .08em;
  padding: 16px 28px;
  font-size: .85rem;
}

@media (max-width: 780px) {
  .pm-columns { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .pm-shell { margin: 0; border-radius: 0; max-height: 100vh; }
  .pm-body { padding: 28px 22px 24px; }
  .pm-footer { padding: 16px 22px; }
  .pm-cta-btn { width: 100%; justify-content: center; }
}

/* ============================
   FEATURES / SERVICES
   ============================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
}
.feature:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--secondary);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============================
   Split / about
   ============================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--secondary-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat-num { font-family: 'Fraunces', serif; font-size: 2.5rem; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* ============================
   CTA
   ============================ */
.cta-band {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin: 0 0 16px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; max-width: 46ch; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-grid a { display: block; padding: 6px 0; color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-about { font-size: .92rem; max-width: 38ch; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .2s;
}
.socials a:hover { background: var(--primary); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }

/* ============================
   PAGE — Biens (liste)
   ============================ */
.page-hero {
  padding: 170px 0 60px;
  background: var(--primary);
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 58ch; font-size: 1.05rem; }

.filters {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: -40px auto 50px;
  position: relative;
  z-index: 2;
  max-width: var(--container);
}
.filters .field {
  flex: 1; min-width: 180px;
  padding: 10px 16px;
  border-right: 1px solid var(--line);
}
.filters .field:last-of-type { border-right: 0; }
.filters label {
  display: block; font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.filters input, .filters select {
  width: 100%;
  border: 0; outline: 0;
  font-family: inherit; font-size: .95rem;
  color: var(--ink);
  background: transparent;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state svg { margin-bottom: 20px; }

/* ============================
   PAGE — Laverie
   ============================ */
.new-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.new-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(19,79,45,.5); }
  70% { box-shadow: 0 0 0 10px rgba(19,79,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(19,79,45,0); }
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
  transition: all .2s;
}
.price-card.featured {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.03);
}
.price-card.featured h3 { color: #fff; }
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-feat { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--primary);
  margin: 12px 0 4px;
}
.price-unit { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.price-card.featured .price-unit { color: rgba(255,255,255,.7); }
.price-feats { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.price-feat {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  display: flex; align-items: center; gap: 10px;
}
.price-feat::before {
  content: '✓'; color: var(--primary); font-weight: 700;
}
.price-card.featured .price-feat::before { color: #fff; }

/* ============================
   PAGE — Contact
   ============================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-info {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info h2 { color: #fff; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-item:first-of-type { border-top: 0; }
.contact-item .ic {
  width: 42px; height: 42px; flex: 0 0 42px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin: 0 0 4px;
  font-weight: 500;
}
.contact-item p, .contact-item a { margin: 0; color: #fff; font-size: 1rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--secondary);
  color: var(--ink);
  transition: border .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }

.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: all .3s ease;
  font-size: .9rem;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--primary); }
.toast.error { background: #8a2020; }

/* ============================
   PAGE — Admin
   ============================ */
.admin-layout { padding: 160px 0 80px; min-height: 100vh; background: var(--secondary); }
.admin-login {
  max-width: 440px;
  margin: 60px auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.admin-login h2 { margin-bottom: 8px; }
.admin-login p { color: var(--muted); margin-bottom: 28px; font-size: .95rem; }

.admin-panel { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-head {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.admin-head h2 { margin: 0; }
.admin-tabs { display: flex; gap: 8px; padding: 16px 32px; background: var(--secondary); border-bottom: 1px solid var(--line); }
.admin-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
}
.admin-tab.active { background: var(--primary); color: #fff; }

.admin-body { padding: 32px; }
.admin-list { display: flex; flex-direction: column; gap: 14px; }
.admin-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.admin-item img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: 10px;
  background: var(--secondary-2);
}
.admin-item .meta h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin: 0 0 4px; font-size: 1rem; }
.admin-item .meta p { margin: 0; font-size: .84rem; color: var(--muted); }
.admin-actions { display: flex; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--secondary); color: var(--primary);
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  transition: all .15s;
}
.icon-btn:hover { background: var(--primary); color: #fff; }
.icon-btn.danger:hover { background: #8a2020; }

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,20,14,.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 200;
  padding: 80px 20px 20px;
  overflow-y: auto;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.modal h3 { margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }

/* ============================
   ADMIN v2
   ============================ */
.admin-body-bg { background: var(--secondary-2); min-height: 100vh; }
.admin-layout--login { display: flex; align-items: center; justify-content: center; padding: 40px 20px; }

.admin-v2 { padding-bottom: 120px; }
.admin-v2-hero {
  background: #fff;
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--line);
}
.admin-v2-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.admin-v2-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 8px; }
.admin-v2-hero p { margin: 0; color: var(--muted); font-size: .95rem; }
.admin-v2-catalog { gap: 8px; }

.admin-v2-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px;
}
.admin-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}
.admin-v2-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.admin-v2-card > h2 {
  font-size: 1.5rem;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.admin-v2-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.admin-v2-card-head h2 { margin: 0; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.count-badge {
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  min-width: 28px;
  text-align: center;
}
.btn-small { padding: 8px 16px; font-size: .82rem; }

.admin-v2-form .form-group { margin-bottom: 18px; }
.admin-v2-form label:not(.check-row) {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.admin-v2-form input[type=text],
.admin-v2-form input[type=url],
.admin-v2-form input[type=number],
.admin-v2-form input[type=password],
.admin-v2-form textarea,
.admin-v2-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--secondary);
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  transition: all .15s;
}
.admin-v2-form input:focus,
.admin-v2-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(19,79,45,.08);
}
.admin-v2-form textarea { resize: vertical; min-height: 90px; }
.admin-v2-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { display: block; font-size: .78rem; color: var(--muted); margin-top: 6px; }

.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: .84rem;
  cursor: pointer;
  transition: all .15s;
}
.pill:hover { border-color: var(--primary); }
.pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  font-size: .92rem;
}
.check-row input[type=checkbox] {
  appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.check-row input[type=checkbox]:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.check-row input[type=checkbox]:checked::after {
  content: '';
  width: 6px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.admin-v2-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.admin-v2-submit { width: 100%; justify-content: center; padding: 14px; gap: 10px; }

.admin-v2-list { display: flex; flex-direction: column; gap: 12px; }
.admin-v2-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .15s;
}
.admin-v2-item:hover { border-color: var(--primary-light); }
.admin-v2-item img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--secondary-2);
}
.admin-v2-item .meta h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 0 0 4px;
  font-size: .98rem;
}
.admin-v2-item .meta p { margin: 0; font-size: .82rem; color: var(--muted); }
.featured-star { color: #d9a500; margin-left: 6px; font-weight: 500; }
.admin-v2-item-actions { display: flex; gap: 8px; align-items: center; }

/* Barre admin flottante */
.admin-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 32px));
  z-index: 90;
}
.admin-bar-inner {
  background: rgba(15, 29, 20, .92);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  color: #fff;
}
.admin-bar-brand { display: flex; align-items: center; gap: 10px; }
.admin-bar-logo {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}
.admin-bar-logo svg { width: 18px; height: 18px; }
.admin-bar-brand strong { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.admin-bar-brand span { font-size: .68rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.admin-bar-links { display: flex; gap: 18px; margin-left: auto; }
.admin-bar-links a { color: rgba(255,255,255,.82); font-size: .86rem; transition: color .15s; }
.admin-bar-links a:hover { color: #fff; }

/* ============================
   HOME — Services split
   ============================ */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  padding: 0;
}
.service-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px;
  color: #fff;
  isolation: isolate;
  min-height: 420px;
  transition: flex-grow .4s;
}
.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform .8s ease;
}
.service-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,29,20,.25) 0%, rgba(19,79,45,.82) 100%);
  z-index: -1;
  transition: opacity .4s;
}
.service-tile:hover::before { transform: scale(1.04); }
.service-tile:hover::after { opacity: .92; }
.service-tile .service-content { max-width: 420px; }
.service-tile .service-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d9c58a;
  margin-bottom: 18px;
}
.service-tile h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 14px;
}
.service-tile p {
  color: rgba(255,255,255,.85);
  font-size: .98rem;
  margin: 0 0 22px;
  max-width: 38ch;
}
.service-tile .service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: gap .2s, border-color .2s;
}
.service-tile .service-link:hover { gap: 16px; border-color: #fff; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .search-bar { flex-direction: column; border-radius: 24px; padding: 14px; }
  .search-field { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 12px 16px; width: 100%; }
  .search-field:last-of-type { border-bottom: 0; }
  .search-bar .btn { width: 100%; justify-content: center; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .site-header.menu-open .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: rgba(15, 29, 20, .95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 14px;
    border-radius: 20px;
    gap: 2px;
  }
  .site-header.menu-open .nav a { width: 100%; text-align: left; }
  .hero { padding: 120px 0 50px; }
  .cta-band { padding: 40px 24px; }
  .contact-info, .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .filters { flex-direction: column; align-items: stretch; padding: 18px; }
  .filters .field { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 0; }
  .filters .field:last-of-type { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-item { grid-template-columns: 60px 1fr; }
  .admin-item img { width: 60px; height: 60px; }
  .admin-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .admin-v2-grid { grid-template-columns: 1fr; }
  .admin-v2-container { padding: 24px; }
  .admin-v2-hero-inner { padding: 0 24px; }
  .admin-v2-card { padding: 24px; }
  .admin-v2-item { grid-template-columns: 60px 1fr; }
  .admin-v2-item img { width: 60px; height: 60px; }
  .admin-v2-item-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .admin-bar-links { display: none; }
  .services-split { grid-template-columns: 1fr; }
  .service-tile { padding: 36px 28px; min-height: 360px; }
}
