.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-info,
.contact-form {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.contact-info h3 {
  margin: 0 0 18px;
  font-size: 1.7rem;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-line i {
  margin-top: 3px;
  color: var(--accent);
}

.contact-line strong {
  display: block;
}

.contact-line span {
  color: var(--muted);
}

.contact-form .mb-3 {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form .form-label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.contact-form .form-control {
  width: 100%;
  border: 1px solid rgba(83, 59, 40, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.contact-form .form-control::placeholder {
  color: rgba(111, 98, 90, 0.65);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: rgba(210, 138, 69, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(210, 138, 69, 0.14);
  background: #fff;
}

.contact-form .btn-primary {
  width: 100%;
  border: 0;
}

footer {
  padding: 28px 0 44px;
  color: rgba(34, 24, 21, 0.78);
}

footer .container {
  padding-top: 28px;
  border-top: 1px solid rgba(83, 59, 40, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: #d28a45;
  box-shadow: 0 14px 28px rgba(210, 138, 69, 0.2);
}

.footer-brand strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--button-radius);
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(210, 138, 69, 0.24);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(83, 59, 40, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.location-section {
  padding-top: 30px;
}

.location-section h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 12px;
}

.location-section .lead {
  max-width: 72ch;
  margin-bottom: 24px;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-card,
.location-side .panel {
  border: 1px solid var(--border);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.location-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(210, 138, 69, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-header h3 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.location-btn {
  white-space: nowrap;
  border-radius: var(--button-radius);
}

.location-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(83, 59, 40, 0.08);
}

.location-strip i {
  color: var(--accent);
  font-size: 1rem;
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-facts > div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(83, 59, 40, 0.08);
}

.location-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.location-facts span {
  color: var(--muted);
}

.location-meta > div,
.location-side .panel {
  padding: 18px 20px;
  border-radius: 22px;
}

.location-meta strong,
.location-side strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}

.location-meta span,
.location-side p {
  color: var(--muted);
  margin: 0;
}

.map-frame {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(83, 59, 40, 0.08);
  background: #f7f2ea;
  aspect-ratio: 16 / 9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-side {
  display: grid;
  gap: 14px;
  align-content: stretch;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.location-side .panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
