/* Enquire page — form-first, editorial trim. */

.enq-hero {
  padding: 128px 0 40px;
}
.enq-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.enq-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.enq-hero-lead {
  font-size: 20px;
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.55;
  margin: 0;
}

/* TRUST BAND */
.enq-trust {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
}
.enq-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 24px 0;
}
.enq-trust-item {
  text-align: left;
  padding: 8px 0;
}
.enq-trust-val {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.enq-trust-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FORM */
.enq-form-section {
  padding: 72px 0 96px;
}
.enq-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  box-shadow: 0 4px 32px rgba(31, 30, 27, 0.04);
}
.enq-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.enq-row .enq-group { margin-bottom: 0; }
.enq-row:has(> .enq-group:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}
.enq-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.enq-optional {
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 12px;
}
.enq-input {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--base);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
select.enq-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%236B6862' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.enq-input:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(199, 98, 44, 0.10);
}
textarea.enq-input {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.55;
}
.enq-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(180, 60, 60, 0.4);
}

/* CONSENT */
.enq-consent {
  margin: 8px 0 24px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.enq-consent label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.enq-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--terracotta);
  cursor: pointer;
  flex-shrink: 0;
}
.enq-consent a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* SUBMIT */
.enq-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 32px;
  flex-wrap: wrap;
}
.enq-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.enq-submit:hover:not(:disabled) {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(199, 98, 44, 0.30);
}
.enq-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.enq-alt {
  font-size: 13px;
  color: var(--ink-2);
}
.enq-alt a { color: var(--terracotta); text-decoration: none; font-weight: 600; }
.enq-alt a:hover { text-decoration: underline; }

.enq-status {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.enq-status.is-shown { display: block; }
.enq-status.is-success {
  background: rgba(30, 58, 50, 0.08);
  color: var(--green);
  border: 1px solid rgba(30, 58, 50, 0.20);
}
.enq-status.is-error {
  background: rgba(180, 60, 60, 0.08);
  color: #A52020;
  border: 1px solid rgba(180, 60, 60, 0.30);
}

/* NEXT STEPS */
.enq-next {
  padding: 96px 0 128px;
  background: var(--base-2);
  border-top: 1px solid var(--line);
}
.enq-next h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.enq-next h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.enq-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.enq-steps li {
  counter-increment: step;
  padding: 24px 24px 24px 72px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
}
.enq-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
}
.enq-steps li strong { color: var(--ink); font-weight: 600; }

@media (max-width: 720px) {
  .enq-hero { padding: 96px 0 32px; }
  .enq-form { padding: 32px 24px; }
  .enq-row { grid-template-columns: 1fr; }
  .enq-trust-inner { grid-template-columns: 1fr 1fr; }
  .enq-submit-row { flex-direction: column; align-items: stretch; }
  .enq-submit { justify-content: center; }
}
