.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
.filter {
  padding: 10px 19px;
  background: white;
  border: 1px solid var(--line);
  cursor: pointer;
}
.filter.active {
  background: var(--navy);
  color: white;
}
.room-grid {
  grid-template-columns: repeat(4, 1fr);
}
.room-grid .room-image {
  height: 210px;
}
.empty {
  text-align: center;
  padding: 60px;
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery img:nth-child(1),
.gallery img:nth-child(6) {
  grid-column: span 7;
}
.gallery img:nth-child(2),
.gallery img:nth-child(5) {
  grid-column: span 5;
}
.gallery img:nth-child(3),
.gallery img:nth-child(4) {
  grid-column: span 6;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.staff-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: saturate(0.8);
}
.staff-grid h3 {
  margin: 18px 0 0;
}
.staff-grid span {
  color: #9a7840;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.form-card {
  padding: 45px;
  background: var(--cream);
}
.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  margin-bottom: 24px;
  border-left: 4px solid;
  background: #fff;
  box-shadow: 0 8px 22px #1324310d;
  font-size: 0.8rem;
  line-height: 1.55;
}
.contact-alert i {
  margin-top: 3px;
  font-size: 1.05rem;
}
.contact-alert strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-alert p {
  margin: 0;
  color: inherit;
}
.contact-alert-success {
  color: #25633b;
  border-color: #3f8b57;
  background: #eef8f1;
}
.contact-alert-warning {
  color: #77581f;
  border-color: var(--gold);
  background: #fff8e8;
}
.contact-alert-error {
  color: #8b3030;
  border-color: #b74c4c;
  background: #fff0f0;
}
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #dcd6ca;
  background: white;
  padding: 13px;
  font: 400 0.85rem Manrope;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-message {
  font-size: 0.78rem;
  margin-top: 15px;
  color: #35743e;
}
.login-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}
.login-visual {
  background:
    linear-gradient(#0b1b29a8, #0b1b29a8),
    url("../image/backgrounds/08_connexion.jpg")
      center/cover;
  color: white;
  display: flex;
  align-items: center;
  padding: 10vw;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border: 1px solid var(--gold);
  font: 700 2.5rem "Cormorant Garamond";
  color: var(--gold);
  margin-bottom: 30px;
}
.login-visual h1 {
  font-size: 5rem;
}
.login-visual p {
  color: #e5e7e7;
}
.login-panel {
  display: grid;
  place-items: center;
  background: var(--cream);
  padding: 100px 30px 40px;
}
.login-card {
  width: min(430px, 100%);
  background: white;
  padding: 50px;
  box-shadow: 0 25px 70px #13243118;
}
.login-card h2 {
  font-size: 3rem;
}
.login-options {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  margin: -3px 0 20px;
}
.check {
  font-weight: 400;
}
.check input {
  width: auto;
  margin: 0 5px 0 0;
}
.back-link {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 22px;
}
