/* ── Page Hero (shared across inner pages) ── */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero .container { position: relative; }

/* ── Contact layout ── */
#contact-body { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

/* ── Form ── */
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

form { margin-top: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.4rem;
}
label span { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--stone);
  background: var(--cream);
  border: 1px solid var(--light);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 130px; }

.cf-turnstile { margin-bottom: 1.25rem; }

.btn-submit {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-submit:hover { background: #a08858; color: var(--white); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: #2d6a4f; }
.form-status.error   { color: #c0392b; }

/* ── Sidebar ── */
.contact-info-block {
  background: var(--cream);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-block h3 { margin-bottom: 1rem; }
address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-details a {
  color: var(--stone);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-details a:hover { color: var(--gold); }

.opening-hours table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.opening-hours tr { border-bottom: 1px solid var(--light); }
.opening-hours tr:last-child { border-bottom: none; }
.opening-hours td {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  vertical-align: middle;
}
.opening-hours td:first-child { font-weight: 500; color: var(--stone); width: 55%; }
.opening-hours td:last-child { text-align: right; }
.opening-hours em { font-style: normal; font-size: 0.78rem; color: var(--muted); }

.map-wrap { overflow: hidden; }
.map-wrap iframe { display: block; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }
}
