/* ============================================================
   MAYFAIR PLACE — Enquire / Reserve Privately  (matched to v0)
   ============================================================ */

:root {
 }

/* ---------- Header ---------- */
.enq-head { background: var(--cream); padding: 130px 0 80px; text-align: center; }
.enq-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 auto 34px;
  max-width: 760px;
}
.enq-head__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  max-width: 880px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.enq-head__note {
  font-size: clamp(14px,1.38vw,18px);
  font-weight: 300;
  color: #6B6B6B;
  opacity: 0.85;
}

/* ---------- Body: sidebar + form ---------- */
.enq-body { background: var(--cream); padding: 0 0 120px; }
.enq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 70px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* ---- Sidebar ---- */
.enq-side { padding-top: 56px; }
.enq-side__title,
.enq-side__policy-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 40px;
}
.contact-method { display: flex; align-items: center; gap: 22px; margin-bottom: 36px; }
.contact-method__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(183,154,110,0.14);
  display: flex; align-items: center; justify-content: center;
}
.contact-method__icon svg { width: 24px; height: 24px; stroke: var(--terracotta); stroke-width: 1.6; fill: none; }
.contact-method__label {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-method__value { font-size: 16px; font-weight: 300; color: #6B6B6B; }
.contact-method__value a { color: inherit; }

.enq-side__rule { border: none; border-top: 1px solid rgba(26,26,26,0.14); margin: 44px 0; }

.enq-side__policy-title { font-size: clamp(14px,1.3vw,18px); margin-bottom: 30px; }
.policy-item {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: #6B6B6B;
  margin-bottom: 24px;
}
.policy-item strong { color: var(--ink); font-weight: 500; }

/* ---- Form panel ---- */
.enq-form-panel {
  background: #F1EBE0;
  padding: 56px 56px 64px;
}
.enq-form-panel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  margin-bottom: 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 14px;
}
.form-field label .req { color: var(--terracotta); }
.form-field input,
.form-field textarea {
  background: #FBF8F2;
  border: 1px solid rgba(26,26,26,0.18);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  transition: border-color .25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(140,134,124,0.8); }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--terracotta); }
.form-field textarea { resize: vertical; min-height: 150px; }

.enq-submit {
  width: 100%;
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 44px;
  cursor: pointer;
  transition: background .3s ease;
}
.enq-submit:hover { background: var(--terracotta-dk); }
.enq-submit-note {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #6B6B6B;
  margin-top: 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 950px) {
  .enq-grid { grid-template-columns: 1fr; gap: 32px; }
  .enq-form-panel { padding: 40px 28px 48px; }
  .enq-head { padding: 120px 24px 40px; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; gap: 26px; }
}
