/* ============================================
   LUCIENNE — Contact & Footer
   ============================================ */

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.c-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left .25s;
}
.c-item:first-child { border-top: 1px solid var(--border); }
.c-item:hover { padding-left: 12px; }

.c-label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}

.c-val {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

/* ── Contact Form ── */
.form { display: flex; flex-direction: column; }

.field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.field:first-child { border-top: 1px solid var(--border); }

.field label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  font-weight: 400;
}

.field input,
.field textarea,
.field select {
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
}

.field input::placeholder,
.field textarea::placeholder { color: #c8b8be; }

.field textarea { resize: none; height: 80px; }

.send-wrap {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.send-btn {
  background: var(--ink);
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 38px;
  cursor: pointer;
  transition: background .2s;
  font-weight: 400;
}

.send-btn:disabled {
  cursor: progress;
  opacity: .75;
}

.form-status {
  color: var(--mid);
  font-size: .9rem;
  line-height: 1.4;
}

.send-btn:hover { background: var(--rose); }

/* ── Footer ── */
footer {
  background: var(--ink);
  padding: 40px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.f-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
}

.f-copy {
  font-size: .6rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .35);
  font-weight: 300;
}

.f-copy a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.f-copy a:hover { color: var(--rose-light); }

.f-links { display: flex; gap: 28px; }

.f-links a {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}
.f-links a:hover { color: var(--rose-light); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}
