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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050607;
  color: #f5f5f5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* Couleurs or / noir inspirées du logo */
:root {
  --gold: #d9a441;
  --gold-soft: #f4c96b;
  --gold-dark: #8b6520;
  --bg-dark: #050607;
  --bg-darker: #020304;
  --card-bg: #101218;
  --card-bg-alt: #111018;
  --border-soft: rgba(255, 255, 255, 0.07);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 42px;
  height: auto;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--gold);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.main-nav a {
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.btn-nav {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(17, 24, 39, 0.9), #020304);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
  color: #fdf7eb;
}

.hero-text p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: #e4dfd3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Boutons */
.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid var(--gold-dark);
  color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border: 1px solid rgba(217, 164, 65, 0.6);
  color: var(--gold-soft);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(217, 164, 65, 0.07);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #e7e1d2;
}

.hero-badges span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 245, 0.12);
  background: rgba(3, 7, 18, 0.5);
}

/* Carte formulaire rapide */
.hero-card {
  background: radial-gradient(circle at top, rgba(217, 164, 65, 0.2), #05060a);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid rgba(217, 164, 65, 0.4);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: #e3dccb;
}

.quick-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.quick-form input,
.quick-form select,
.quick-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  background: #050509;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  color: #f7f3e9;
  font-size: 0.85rem;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(217, 164, 65, 0.3);
}

.form-note {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Sections générales */
.section {
  padding: 3.5rem 0;
  background: var(--bg-dark);
}

.section-alt {
  background: linear-gradient(180deg, #050609, #020304);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  color: #f8f3e8;
}

.section-subtitle {
  margin: 0 0 2rem;
  color: #c7c1b3;
  font-size: 0.95rem;
}

/* Cartes services */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.3rem 1.2rem 1.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #d5cfc0;
}

/* Mise en page deux colonnes */
.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Listes icônes */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.icon-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #d5cfc0;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
}

/* Boîtes mises en avant */
.highlight-box,
.about-box,
.tenant-box {
  background: radial-gradient(circle at top, rgba(217, 164, 65, 0.18), var(--card-bg-alt));
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(217, 164, 65, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.highlight-box h3,
.about-box h3,
.tenant-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.highlight-box ul,
.about-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li,
.about-box li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #e2dbcd;
}

/* Tenant box */
.tenant-box ol {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #e4dece;
}

/* Processus */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.step {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.3rem 1.1rem 1.1rem;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #f5eee2;
}

.step p {
  margin: 0;
  font-size: 0.85rem;
  color: #d2ccbd;
}

/* Contact */
.contact-section {
  align-items: stretch;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020203;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  margin-right: 0.6rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: #9c9585;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #c5beae;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .two-cols,
  .process-steps,
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-inner,
  .two-cols,
  .process-steps,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    order: -1;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .main-nav {
    font-size: 0.85rem;
  }
}


/* Tableaux propriétaire */
.owner-table-wrapper {
  margin-top: 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: rgba(5, 6, 10, 0.9);
}

.owner-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.owner-table thead {
  background: radial-gradient(circle at top, rgba(217,164,65,0.18), rgba(15,16,22,1));
}

.owner-table th,
.owner-table td {
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.owner-table th {
  font-weight: 600;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.owner-table tbody tr:nth-child(every) {}

.owner-table tbody tr:nth-child(odd) {
  background: rgba(12, 13, 19, 0.9);
}

.owner-table tbody tr:nth-child(even) {
  background: rgba(6, 7, 11, 0.9);
}

.owner-table tbody tr:hover {
  background: rgba(217,164,65,0.09);
}
