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

:root {
  --forest-900: #0b1a14;
  --forest-800: #10261d;
  --forest-700: #173527;
  --gold-600: #b2935f;
  --gold-500: #c8a97a;
  --ivory-50: #fbfaf5;
  --ivory-100: #f5f2ea;
  --ivory-200: #ede8db;
  --ivory-400: #cfc6b2;
  --ivory-600: #7c7563;
  --text-primary: var(--forest-800);
  --text-secondary: #244a38;
  --text-muted: var(--ivory-600);
  --border-hairline: rgba(16, 38, 29, 0.14);
  --border-default: rgba(16, 38, 29, 0.24);
  --font-display: 'Cinzel', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-text: 'EB Garamond', Georgia, serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 3px;
  --radius-md: 5px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory-100); color: var(--text-primary); font-family: var(--font-text); font-size: 17px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }

.header { position: sticky; top: 0; z-index: 20; height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 var(--gutter); background: rgba(245,242,234,.94); border-bottom: 1px solid var(--border-hairline); backdrop-filter: blur(10px); }
.brand { font-family: var(--font-display); font-weight: 600; letter-spacing: .3em; text-transform: uppercase; padding-left: .3em; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a, .button { font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 46px; padding: 13px 26px; border: 1px solid var(--forest-800); border-radius: var(--radius-sm); background: var(--forest-800); color: var(--ivory-100); cursor: pointer; }
.button.gold { background: var(--gold-500); border-color: var(--gold-500); color: var(--forest-800); }
.button.outline { background: transparent; color: var(--forest-800); border-color: var(--border-default); }
.button.danger { background: transparent; border-color: rgba(154,70,54,.35); color: #9a4636; }
.button.danger.filled { background: #9a4636; border-color: #9a4636; color: var(--ivory-100); }

.hero { position: relative; min-height: 94svh; display: grid; place-items: center; overflow: hidden; padding: 120px var(--gutter) 92px; background: radial-gradient(120% 92% at 50% 18%, var(--forest-700), var(--forest-900) 72%); color: var(--ivory-100); text-align: center; }
.hero:after { content: ""; position: absolute; inset: auto var(--gutter) 0; height: 1px; background: rgba(200,169,122,.34); }
.hero-inner { position: relative; z-index: 2; max-width: 780px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 0; }
.hero-mark { width: clamp(92px,14vw,140px); }
.hero-panel { position: absolute; display: grid; place-items: center; overflow: hidden; width: clamp(180px, 18vw, 280px); aspect-ratio: 3 / 4; border: 1px solid rgba(200,169,122,.26); opacity: .88; }
.hero-panel.forest { left: max(24px, 6vw); bottom: 9vh; background: linear-gradient(155deg, var(--forest-700), var(--forest-900)); }
.hero-panel.paper { right: max(24px, 6vw); top: 16vh; background: linear-gradient(155deg, var(--ivory-200), var(--ivory-400)); color: var(--forest-800); }
.hero-panel .cover { width: 100%; height: 100%; object-fit: cover; }
.hero-panel:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(11,26,20,.62)); }
.hero-panel span { position: absolute; z-index: 1; left: 18px; bottom: 16px; color: var(--ivory-100); font-family: var(--font-italic); font-size: 15px; font-style: italic; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-500); font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }
.eyebrow:before, .eyebrow:after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.hero h1 { color: var(--gold-500); font-family: var(--font-display); font-size: clamp(42px,9vw,90px); font-weight: 600; letter-spacing: .3em; line-height: 1; margin: 0; padding-left: .3em; text-transform: uppercase; }
.rule { display: flex; align-items: center; width: min(280px,62vw); gap: 12px; color: var(--gold-500); }
.rule:before, .rule:after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .55; }
.rule span { width: 6px; height: 6px; background: currentColor; transform: rotate(45deg); }
.slogan { font-family: var(--font-italic); font-style: italic; font-size: clamp(21px,3vw,30px); letter-spacing: .1em; margin: 0; }
.lead { max-width: 560px; color: rgba(245,242,234,.8); font-size: 22px; line-height: 1.6; }

.section { padding: 128px var(--gutter); }
.sunken { background: var(--ivory-200); }
.statement { padding: 84px var(--gutter); background: var(--ivory-50); border-bottom: 1px solid var(--border-hairline); }
.statement-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 48px; align-items: start; }
.statement p:last-child { max-width: 880px; font-family: var(--font-serif); font-size: clamp(30px, 4vw, 54px); font-weight: 300; line-height: 1.08; margin: 0; }
.container { max-width: 1140px; margin: 0 auto; }
.container-xl { max-width: 1320px; margin: 0 auto; }
.section-title { font-family: var(--font-serif); font-size: clamp(34px,5vw,58px); font-weight: 400; line-height: 1.08; margin: 12px 0 0; }
.center { text-align: center; }
.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { background: var(--ivory-50); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: 40px; }
.card .num { color: var(--gold-600); font-family: var(--font-display); letter-spacing: .2em; }
.card h3, .project h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; line-height: 1.12; margin: 10px 0 8px; }
.card p { color: var(--text-secondary); margin: 0; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: -18px 0 36px; }
.chip { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-default); border-radius: 999px; min-height: 34px; padding: 7px 14px; font-family: var(--font-display); font-size: 11px; line-height: 1; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.chip.active { background: var(--forest-800); color: var(--ivory-100); border-color: var(--forest-800); }
.projects { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.project { display: block; border: 1px solid transparent; border-radius: var(--radius-md); padding: 10px; margin: -10px; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.project.paper { background: rgba(251, 250, 245, .42); }
.project.forest { background: var(--forest-800); color: var(--ivory-100); border-color: rgba(200, 169, 122, .24); }
.project .photo { transition: transform .2s ease, border-color .2s ease; }
.project:hover .photo { transform: translateY(-3px); border-color: var(--gold-500); }
.photo { position: relative; min-height: 310px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--border-hairline); border-radius: var(--radius-md); }
.photo.forest { background: linear-gradient(155deg, var(--forest-700), var(--forest-900)); }
.photo.paper { background: linear-gradient(155deg, var(--ivory-200), var(--ivory-400)); }
.photo img.logo { width: min(34%,180px); opacity: .44; }
.photo img.cover { width: 100%; height: 100%; object-fit: cover; }
.photo span { position: absolute; left: 16px; bottom: 14px; color: var(--ivory-600); font-family: var(--font-italic); font-size: 13px; font-style: italic; }
.photo.forest span { color: rgba(245,242,234,.7); }
.project-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-top: 14px; }
.project-meta > div { min-width: 0; }
.project-meta .chip { flex: 0 0 auto; margin-top: 4px; }
.project-meta p { color: var(--text-muted); font-family: var(--font-italic); font-style: italic; margin: 0; }
.project.forest .project-meta p { color: rgba(245,242,234,.68); }
.project.forest .chip { color: var(--gold-500); border-color: rgba(200,169,122,.45); }
.project-excerpt { min-height: 54px; color: var(--text-secondary); margin: 12px 0 0; line-height: 1.45; }
.project.forest .project-excerpt { color: rgba(245,242,234,.72); }

.detail-main { min-height: calc(100vh - 82px); background: var(--ivory-200); }
.detail-main.forest { background: var(--forest-900); }
.detail-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); min-height: calc(100vh - 82px); }
.detail-photo { position: relative; display: grid; place-items: center; overflow: hidden; min-height: 520px; }
.detail-photo.forest { background: linear-gradient(155deg, var(--forest-700), var(--forest-900)); }
.detail-photo.paper { background: linear-gradient(155deg, var(--ivory-200), var(--ivory-400)); }
.detail-photo img.cover { width: 100%; height: 100%; object-fit: cover; }
.detail-photo img.logo { width: min(26vw, 220px); opacity: .42; }
.detail-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 72px var(--gutter); background: var(--ivory-100); }
.detail-hero.forest .detail-copy { background: var(--forest-800); color: var(--ivory-100); }
.detail-copy h1 { font-family: var(--font-serif); font-size: clamp(42px, 6vw, 78px); font-weight: 400; line-height: 1; margin: 18px 0 10px; }
.detail-location { color: var(--gold-600); font-family: var(--font-italic); font-size: 25px; font-style: italic; margin: 0 0 32px; }
.detail-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; max-width: 620px; gap: 1px; margin: 0 0 34px; background: var(--border-hairline); }
.detail-facts div { background: var(--ivory-100); padding: 18px; }
.detail-hero.forest .detail-facts { background: rgba(200,169,122,.22); }
.detail-hero.forest .detail-facts div { background: var(--forest-800); }
.detail-facts dt { color: var(--gold-600); font-family: var(--font-display); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.detail-facts dd { margin: 7px 0 0; font-family: var(--font-serif); font-size: 20px; line-height: 1.1; }
.detail-description { max-width: 560px; color: var(--text-secondary); font-size: 21px; line-height: 1.65; margin: 0 0 38px; }
.detail-hero.forest .detail-description { color: rgba(245,242,234,.76); }
.back-link { color: var(--text-muted); font-family: var(--font-display); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 36px; }
.back-link:hover { color: var(--forest-800); }
.detail-hero.forest .back-link:hover { color: var(--gold-500); }

.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.92fr); gap: 64px; align-items: center; }
.contact-list { display: grid; gap: 22px; margin-top: 40px; }
.contact-list span { display: block; color: var(--gold-600); font-family: var(--font-display); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; }

.contact-tab-input { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-tab-labels { display: flex; gap: 8px; margin-bottom: 24px; }
.contact-tab-label { flex: 1; display: flex; justify-content: center; align-items: center; min-height: 44px; padding: 11px 16px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
#tab-message:checked ~ .contact-tab-labels label[for="tab-message"],
#tab-rdv:checked ~ .contact-tab-labels label[for="tab-rdv"] { background: var(--forest-800); color: var(--ivory-100); border-color: var(--forest-800); }
.contact-tab-panel { display: none; }
#tab-message:checked ~ #panel-message,
#tab-rdv:checked ~ #panel-rdv { display: block; }
.field { width: 100%; margin-bottom: 14px; padding: 13px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); background: var(--ivory-50); color: var(--forest-800); font: inherit; }
textarea.field { min-height: 140px; resize: vertical; }
select.field { padding-right: 40px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23b2935f' d='M3.5 5.5L8 10l4.5-4.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 13px; }
input[type="date"].field, input[type="number"].field { font-family: var(--font-text); color-scheme: light; }
.altcha-field { display: block; margin: 6px 0 24px; }
input[type="date"].field::-webkit-calendar-picker-indicator { padding: 4px; margin-right: -2px; border-radius: var(--radius-sm); filter: invert(38%) sepia(22%) saturate(789%) hue-rotate(20deg) brightness(94%) contrast(89%); cursor: pointer; }
input[type="date"].field::-webkit-calendar-picker-indicator:hover { background: var(--ivory-200); }
input[type="number"].field::-webkit-outer-spin-button, input[type="number"].field::-webkit-inner-spin-button { opacity: .6; }

.datepicker-wrapper { position: relative; }
.datepicker-input { cursor: pointer; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b2935f' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.datepicker-popup { position: absolute; z-index: 50; top: calc(100% + 6px); left: 0; background: var(--ivory-50); border: 1px solid var(--border-default); border-radius: var(--radius-md); box-shadow: 0 18px 50px rgba(11,26,20,.18); padding: 16px; width: 280px; }
.datepicker-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.datepicker-label { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-800); }
.datepicker-nav { background: none; border: 1px solid var(--border-default); border-radius: var(--radius-sm); width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; color: var(--forest-800); cursor: pointer; font-size: 16px; line-height: 1; }
.datepicker-nav:hover { background: var(--ivory-200); }
.datepicker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.datepicker-day-label { display: flex; align-items: center; justify-content: center; height: 26px; color: var(--text-muted); font-family: var(--font-display); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.datepicker-cell { display: flex; align-items: center; justify-content: center; height: 32px; border: none; background: none; border-radius: var(--radius-sm); color: var(--forest-800); font: inherit; font-size: 14px; cursor: pointer; }
.datepicker-cell:hover { background: var(--ivory-200); }
.datepicker-cell.is-today { color: var(--gold-600); font-weight: 600; }
.datepicker-cell.is-selected { background: var(--forest-800); color: var(--ivory-100); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.status { color: var(--text-secondary); font-family: var(--font-italic); font-style: italic; }

.fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; gap: 14px; }
.fab { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; color: var(--ivory-100); box-shadow: 0 10px 26px rgba(11,26,20,.28); transition: transform .2s ease, box-shadow .2s ease; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(11,26,20,.34); }
.fab-whatsapp { background: #25D366; }
.fab-phone { background: var(--forest-800); }
.fab-devis { background: var(--gold-500); color: var(--forest-800); }

.snackbar { position: fixed; left: 50%; bottom: 28px; z-index: 80; display: flex; align-items: center; gap: 14px; max-width: min(440px, calc(100vw - 40px)); padding: 16px 20px; border-radius: var(--radius-md); background: var(--forest-800); color: var(--ivory-100); font-family: var(--font-text); font-size: 15px; box-shadow: 0 18px 50px rgba(11,26,20,.32); transform: translate(-50%, 16px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
.snackbar.is-visible { transform: translate(-50%, 0); opacity: 1; }
.snackbar.snackbar-error { background: #9a4636; }
.snackbar-icon { flex: 0 0 auto; width: 20px; height: 20px; }
.snackbar-text { flex: 1; line-height: 1.4; }
.snackbar-close { flex: 0 0 auto; background: none; border: none; color: inherit; opacity: .7; cursor: pointer; font-size: 18px; line-height: 1; padding: 0; }
.snackbar-close:hover { opacity: 1; }

@media (max-width: 520px) {
  .snackbar { left: 20px; right: 20px; bottom: 20px; transform: translateY(16px); max-width: none; }
  .snackbar.is-visible { transform: translateY(0); }
}

.footer { background: var(--forest-900); color: var(--ivory-100); padding: 80px var(--gutter) 40px; text-align: center; }
.footer img { width: 72px; }
.footer p { color: rgba(245,242,234,.62); }

.admin-main { padding: 20px var(--gutter) 64px; background: var(--ivory-200); min-height: 100vh; }
.admin-shell { max-width: 1280px; margin: 0 auto; }
.admin-header, .admin-row, .admin-actions { display: flex; gap: 18px; }
.admin-header { justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.admin-header:has(> :only-child) { align-items: flex-start; }
.admin-row { align-items: center; background: var(--ivory-50); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: 16px; margin-bottom: 14px; }
.admin-row-main { flex: 1; }
.admin-form { background: var(--ivory-50); border: 1px solid var(--border-hairline); padding: 32px; border-radius: var(--radius-md); margin-bottom: 32px; }
#project-form { scroll-margin-top: 110px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.full { grid-column: 1 / -1; }

.admin-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 28px; }
.admin-filters .field { width: auto; margin-bottom: 0; flex: 1 1 200px; }

.crm-dashboard { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 28px; }
.crm-stat-card { background: var(--ivory-50); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: 22px; text-align: center; }
.crm-stat-value { display: block; color: var(--forest-800); font-family: var(--font-serif); font-size: 40px; line-height: 1; }
.crm-stat-label { display: block; margin-top: 8px; color: var(--text-muted); font-family: var(--font-display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; overflow-wrap: break-word; }

.crm-pipeline-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 3px 10px; font-family: var(--font-display); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; background: var(--ivory-200); color: var(--text-secondary); vertical-align: middle; margin-left: 8px; }
.crm-status-nouveau { background: var(--ivory-200); color: var(--text-secondary); }
.crm-status-qualifie { background: rgba(200,169,122,.28); color: var(--forest-800); }
.crm-status-devis-envoye { background: var(--gold-500); color: var(--forest-800); }
.crm-status-negociation { background: var(--forest-700); color: var(--ivory-100); }
.crm-status-gagne { background: var(--forest-800); color: var(--gold-500); }
.crm-status-perdu { background: rgba(154,70,54,.16); color: #9a4636; }

.crm-activity-item, .crm-task-item { border-top: 1px solid var(--border-hairline); padding: 14px 0; }
.crm-activity-item p { margin: 6px 0 0; color: var(--text-secondary); }
.crm-task-item { display: flex; align-items: center; gap: 14px; }
.crm-task-item.crm-task-done { opacity: .5; text-decoration: line-through; }
.crm-task-item.crm-task-overdue { background: rgba(154,70,54,.06); }
.crm-task-item a { color: var(--forest-800); text-decoration: underline; text-decoration-color: var(--border-default); }
.crm-task-item a:hover { text-decoration-color: var(--gold-600); }

.crm-storage-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.crm-storage-value { color: var(--gold-600); font-family: var(--font-display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.crm-storage-bar { position: relative; width: 100%; height: 14px; border-radius: 999px; background: var(--ivory-200); border: 1px solid var(--border-hairline); overflow: hidden; }
.crm-storage-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--forest-700) 0%, var(--gold-500) 55%, var(--gold-600) 100%); box-shadow: 0 0 12px rgba(200,169,122,.55); transition: width .4s ease; }

.modal-backdrop { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: var(--gutter); background: rgba(11, 26, 20, .58); backdrop-filter: blur(6px); }
.modal-backdrop[hidden] { display: none; }
.modal { width: min(520px, 100%); background: var(--ivory-50); border: 1px solid rgba(200,169,122,.38); border-radius: var(--radius-md); padding: 36px; box-shadow: 0 28px 80px rgba(11,26,20,.28); }
.modal .eyebrow { margin: 0 0 14px; }
.modal h2 { font-family: var(--font-serif); font-size: clamp(32px, 5vw, 48px); font-weight: 400; line-height: 1.05; margin: 0 0 16px; }
.modal p { color: var(--text-secondary); margin: 0; }
.modal strong { color: var(--forest-800); font-weight: 500; }
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 30px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-admin { position: static; height: auto; flex-wrap: wrap; row-gap: 14px; padding: 16px var(--gutter); }
  .header-admin .nav { display: flex; flex-wrap: wrap; gap: 16px; width: 100%; }
  .hero-panel { display: none; }
  .statement-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid, .projects, .contact-grid, .admin-form-grid { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-photo { min-height: 420px; }
  .split, .admin-header, .admin-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .project-meta { flex-direction: column; gap: 8px; }
  .project-meta .chip { margin-top: 0; }
  .detail-facts { grid-template-columns: 1fr; }
  .modal { padding: 28px; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .button { width: 100%; }
  .crm-dashboard { grid-template-columns: 1fr; }
}
