/* Zen Loc — feuille de style principale */

:root {
  --lz-gold: #c8a250;
  --lz-gold-dark: #a9863c;
  --lz-black: #111010;
  --lz-body: #4b4740;
  --lz-bg: #ffffff;
  --lz-soft: #f7f4ee;
  --lz-border: #e6e0d5;
  --lz-radius: 24px;
  --lz-shadow: 0 18px 40px -24px rgba(17, 16, 16, 0.45);
  --lz-container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body.loczen-theme {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--lz-body);
  background: var(--lz-bg);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--lz-black);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.45rem, 5vw, 3.9rem); }
h2 { font-size: clamp(2.05rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--lz-black);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lz-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 148px;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img,
.brand .custom-logo {
  display: block;
  width: clamp(230px, 22vw, 340px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--lz-black);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--lz-gold); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lz-border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lz-black);
  margin: 4px auto;
  transition: transform 0.2s ease;
}

/* ---------- Boutons ---------- */

.button {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 1.08rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button-primary {
  background: var(--lz-gold);
  color: var(--lz-black);
}
.button-primary:hover { background: var(--lz-gold-dark); transform: translateY(-1px); }
.button-secondary {
  background: transparent;
  color: var(--lz-black);
  border-color: var(--lz-border);
}
.button-square { border-radius: 10px; }

/* ---------- Hero ---------- */

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 16, 0.48);
}
.hero-inner { position: relative; z-index: 1; }
.hero-section h1 { color: #fff; }
.hero-lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 18px auto 32px;
}

/* ---------- Sections ---------- */

.section { padding: 88px 0; }
.section-soft { background: var(--lz-soft); }
.section-light { background: var(--lz-bg); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lz-gold);
  margin-bottom: 12px;
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head p.lead { max-width: 720px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* À propos */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--lz-black);
  border-radius: var(--lz-radius);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.stat-card strong {
  font-size: 2.55rem;
  color: var(--lz-gold);
  line-height: 1;
}
.stat-card span {
  margin-top: 10px;
  color: #f4f1ea;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.about-grid img {
  border-radius: var(--lz-radius);
  height: 260px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--lz-soft);
}

/* Avantages */

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  text-align: center;
}
.advantage svg { width: 44px; height: 44px; flex: none; color: var(--lz-gold); }
.contact-meta svg { width: 22px; height: 22px; flex: none; color: var(--lz-gold); }
.button svg { width: 20px; height: 20px; flex: none; }
.to-top svg { width: 24px; height: 24px; flex: none; }
.advantage h3 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 18px;
  font-weight: 600;
}
.advantage p { font-size: 1.08rem; margin: 0 auto; max-width: 320px; }

/* Méthode */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  counter-reset: loczen-step;
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.step:nth-child(even) .step-media { order: 2; }
.step-media {
  border-radius: var(--lz-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--lz-soft);
}
.step img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--lz-gold);
  color: var(--lz-black);
  font-size: 1.5rem;
  font-weight: 700;
}
.step-title {
  display: block;
  margin: 20px 0 14px;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--lz-black);
  letter-spacing: -0.01em;
}
.step-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--lz-gold);
  margin-bottom: 18px;
}
.step p { font-size: 1.08rem; margin: 0; }

@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 22px; }
  .step:nth-child(even) .step-media { order: 0; }
}

/* Locataires */

.tenants img {
  border-radius: var(--lz-radius);
  height: auto;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--lz-soft);
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.faq-item {
  background: var(--lz-black);
  border-radius: var(--lz-radius);
  padding: 6px 26px;
  color: #f4f1ea;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--lz-gold);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 1.08rem;
  padding-bottom: 18px;
  margin: 0;
}

/* Contact */

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 24px 0 8px;
  font-weight: 600;
  color: var(--lz-black);
}
.contact-meta a { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.contact-meta a:hover { color: var(--lz-gold); }

.contact-form {
  margin-top: 48px;
  max-width: 860px;
  margin-inline: auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--lz-black);
  margin-bottom: 8px;
}
.field .req { color: #b3261e; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--lz-black);
  background: #fff;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--lz-gold);
  outline-offset: 1px;
}
.form-actions { text-align: center; }
.form-note { margin-top: 14px; font-size: 1.05rem; padding: 12px 16px; border-radius: 12px; }
.form-note-ok { background: rgba(46, 125, 50, 0.12); color: #1b5e20; border: 1px solid rgba(46, 125, 50, 0.3); }
.form-note-error { background: rgba(183, 28, 28, 0.1); color: #8e1b1b; border: 1px solid rgba(183, 28, 28, 0.28); }

.contact-form .wpcf7-form p { margin: 0 0 24px; }
.contact-form .wpcf7-form label {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--lz-black);
  margin-bottom: 8px;
}
.contact-form .wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.contact-form .wpcf7-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.contact-form .wpcf7-form textarea,
.contact-form .wpcf7-form select {
  width: 100%;
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--lz-black);
  background: #fff;
}
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form .wpcf7-form select:focus {
  outline: 2px solid var(--lz-gold);
  outline-offset: 1px;
}
.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  background: var(--lz-black);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.contact-form .wpcf7-submit:hover { transform: translateY(-1px); }
.contact-form .wpcf7-spinner { display: inline-block; margin-left: 10px; }
.contact-form .wpcf7-response-output { margin: 16px 0 0 !important; border-radius: 12px; padding: 12px 16px !important; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--lz-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid .brand img { width: min(290px, 100%); height: auto; }
.footer-col h3 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lz-gold);
  font-weight: 800;
}
.footer-col a, .footer-col li {
  display: block;
  text-decoration: none;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--lz-gold); }
.footer-col ul { list-style: none; margin: 16px 0 0; padding: 0; }
.footer-meta {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
}

/* Back to top */

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--lz-gold);
  color: var(--lz-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--lz-shadow);
}
.to-top:hover { transform: translateY(-2px); }

/* Contenu éditorial */

.section-shell {
  background: #fff;
  border: 1px solid var(--lz-border);
  border-radius: var(--lz-radius);
  padding: 40px;
}
.entry-content a { color: var(--lz-gold-dark); }
.legal-contact-link {
  color: var(--lz-gold-dark);
  font-weight: 700;
  text-decoration: none;
}
.legal-contact-link:hover {
  color: var(--lz-gold);
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Conciergerie */

.concierge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.concierge-visual {
  border-radius: var(--lz-radius);
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--lz-soft);
}
.concierge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.concierge-card {
  background: #fff;
  border: 1px solid var(--lz-border);
  border-radius: 18px;
  padding: 22px;
}
.concierge-card svg { width: 28px; height: 28px; flex: none; color: var(--lz-gold); }
.concierge-card h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.concierge-card p { font-size: 1.05rem; margin: 0; }
.concierge-cta { text-align: center; margin-top: 44px; }

/* ---------- Responsive ---------- */


@media (max-width: 1024px) {
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .concierge-layout { grid-template-columns: 1fr; }
  .concierge-visual { min-height: 0; max-height: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { min-height: 130px; }
  .brand img, .brand .custom-logo { width: clamp(220px, 32vw, 290px); }
}

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--lz-border);
    padding: 8px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; width: 100%; font-size: 1.12rem; }
}

@media (max-width: 860px) {
  .split, .steps, .faq-grid, .form-row, .about-grid { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr; }
  .concierge-grid { grid-template-columns: 1fr; }
  .contact-meta { gap: 16px; }
  .button { padding: 14px 24px; font-size: 1.02rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid .brand { display: inline-block; }
  .section { padding: 64px 0; }
  .header-inner { min-height: 116px; gap: 16px; }
  .brand img, .brand .custom-logo { width: min(230px, 62vw); }
  .menu-toggle { flex: 0 0 46px; }
  .stat-card { min-height: 116px; }
  .about-grid img { height: auto; aspect-ratio: 4 / 3; }
}

/* ---------- Bandeau de titre des pages internes ---------- */
.page-hero {
  background: var(--lz-black);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
}
.page-hero .eyebrow { color: var(--lz-gold); }
.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 18px auto 0;
}
@media (max-width: 860px) {
  .page-hero { padding: 48px 0 44px; }
}
