.form-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 227, 201, 0.88);
  font-size: 1rem;
}

.form-field input::placeholder {
  color: rgba(234, 206, 169, 0.42);
}

.form-field input,
.form-field select {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 4px;
  background: #170d09;
  color: var(--text);
  padding: 0 14px;
  font-size: 1rem;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0.01em;
  color-scheme: dark;
  position: relative;
}

.form-field input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.9;
  cursor: pointer;
  filter: invert(83%) sepia(18%) saturate(632%) hue-rotate(343deg) brightness(96%) contrast(89%);
}

.form-field input[type="date"] {
  width: 100%;
  height: 56px;
  display: block;
  border: 0;
  border-radius: 4px;
  background: #170d09;
  color: var(--text);
  padding: 0 10px 0 14px;
  font-size: 1rem;
  line-height: 56px;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

.form-field input[type="date"]::-webkit-date-and-time-value {
  display: block;
  min-height: 56px;
  line-height: 56px;
  text-align: left;
}

.form-field input[type="date"]::-webkit-datetime-edit {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  width: 18px;
  min-width: 18px;
  margin: 0;
  opacity: 0.9;
  cursor: pointer;
  filter: invert(83%) sepia(18%) saturate(632%) hue-rotate(343deg) brightness(96%) contrast(89%);
}

.reserve-submit {
  margin-top: 22px;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #1c140f;
  font-size: 1.08rem;
  font-weight: 500;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.action-btn {
  min-height: 58px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-size: 1.05rem;
}

.action-btn.wide {
  flex: 1;
  justify-content: flex-start;
  gap: 8px;
}

.action-btn.outline {
  min-width: 110px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}