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

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:      #F3EDE4;
  --ink:     #0B0B0B;
  --gold:    #B8976A;
  --muted:   #7A6E62;
  --border:  #DDD5C8;
  --card-bg: #FDFAF6;
  --white:   #FFFFFF;
}

/* ── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 72px;
  background: rgba(243, 237, 228, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-diamond {
  width: 46px;
  height: 46px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-diamond::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--ink);
  transform: rotate(45deg);
}
.nav-diamond::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}
.nav-diamond-m {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-cta {
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); border-bottom-color: transparent !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--white); }
.btn-white { border-color: var(--white); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--ink); }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 52px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Divider / Label ─────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 540px;
}

/* ── Hero (homepage) ─────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-photo-zone {
  width: 100%;
  background-image: url('../photo_page_garde.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 52px 100px;
  position: relative;
}
.hero-photo-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.38);
  pointer-events: none;
}

.hero-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 52px 80px;
}

/* ── Featured card (bien à la une) ──────────────────────── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card-bg);
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.featured-card:hover { box-shadow: 0 20px 60px rgba(11,11,11,0.12); }
.featured-card-photo {
  position: relative;
  overflow: hidden;
  height: 480px;
}
.featured-card-photo img { transition: transform 0.6s ease; }
.featured-card:hover .featured-card-photo img { transform: scale(1.05); }
.featured-card-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card-photo { height: 280px; }
  .featured-card-body { padding: 36px 28px; }
}

.hero-ornament {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}
.hero-ornament-m {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 9vw, 118px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 44px auto;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-rule::before,
.hero-rule::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--border);
}

.scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  animation: float 2.4s ease-in-out infinite;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Property Cards ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card-bg);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: 0 16px 48px rgba(11,11,11,0.1); }

.card-img-wrap {
  overflow: hidden;
  height: 300px;
  position: relative;
}
.card-vendu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.card-vendu-overlay span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  letter-spacing: 10px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 8px 22px;
  transform: rotate(-18deg);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img { transform: scale(1.05); }

.card-body {
  padding: 28px 32px 36px;
}
.card-tag {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.card-loc {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 20px;
}
.card-specs {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.card-spec-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}
.card-spec-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  padding: 160px 52px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 7vw, 90px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.page-header-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

/* ── Property Hero ────────────────────────────────────────── */
.prop-hero {
  height: 80vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.prop-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.6) 0%, transparent 60%);
}
.prop-hero-content {
  position: absolute;
  bottom: 52px;
  left: 52px;
  right: 52px;
  color: var(--white);
}
.prop-hero-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(184,151,106,0.9);
  margin-bottom: 12px;
}
.prop-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 10px;
}
.prop-hero-loc {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
}

/* ── Specs Bar ────────────────────────────────────────────── */
.specs-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  border-bottom: 1px solid var(--border);
}
.specs-bar-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.specs-bar-item:last-child { border-right: none; }
.specs-bar-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.specs-bar-lbl {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.featured img { aspect-ratio: auto; height: 100%; }

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 52px;
}
.features-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.features-grid li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.85;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 20px 52px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink); }
.breadcrumb-sep { color: var(--border); }

/* ── Two-col layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

/* ── Sticky sidebar ───────────────────────────────────────── */
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: sticky;
  top: 92px;
}
.sidebar-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.sidebar-price-lbl {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.sidebar-detail-lbl { color: var(--muted); font-size: 12px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 52px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-diamond {
  width: 36px; height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-diamond::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}
.footer-diamond-m {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-align: center;
}
.footer-contact {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.footer-contact a { color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1300px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1;
  padding: 10px;
  transition: color 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-brand { display: none; }
  .nav-links { gap: 22px; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .page-header { padding: 120px 24px 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .gallery-item.featured img { aspect-ratio: 4/3; height: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .breadcrumb { padding: 16px 24px; }
  .prop-hero-content { left: 24px; right: 24px; bottom: 36px; }
  .specs-bar { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 120px 24px 80px; }
}
